DocumentationIntroduction
Introduction
Welcome to the official documentation for AGENRO and MAX. This guide covers how to initialize your first project and connect your existing issue trackers.
Overview
Agenro is an AI-powered project coordination engine that uses MAX, our autonomous project management agent, to bridge the gap between requirements and execution. By analyzing your documentation, MAX can generate full project roadmaps, milestones, and technical tickets directly in your preferred tools.
Core Architecture
Learn how the Agenro engine communicates with MAX.
Authentication
Set up your API keys and secure your environment.
Deployment
Choose between cloud managed or on-premise solutions.
Verification
Understand human-in-the-loop validation patterns.
Sample Integration
const { Agenro, Max } = require('@codescribo/agenro');
// Initialize MAX with your project context
const project = new Agenro({
projectId: 'AG-782',
integrations: ['jira', 'slack']
});
// Generate roadmap from raw text
const roadmap = await Max.plan('Build an AI landing page with Next.js');
console.log(roadmap.gantt);