Quick Start
Quick Start Guide
Section titled “Quick Start Guide”Get your first Faber agent running in 5 minutes.
Step 1: Install
Section titled “Step 1: Install”npm install -g @fractary/cliStep 2: Initialize Project
Section titled “Step 2: Initialize Project”mkdir my-agentscd my-agentsfractary faber initThis creates the project structure:
.faber/ config.yml # Configuration overlays/ # Customizationsroles/ # Agent definitionstools/ # MCP servers & utilitiesteams/ # Multi-agent compositionsworkflows/ # Cross-team orchestrationsdeployments/ # Generated artifactsStep 3: Create Your First Agent
Section titled “Step 3: Create Your First Agent”fractary faber create role issue-manager --platforms github-issues,linearThis creates:
roles/issue-manager/agent.yml- Agent definitionroles/issue-manager/contexts/- Context filesroles/issue-manager/tasks/- Task definitions
Step 4: Validate
Section titled “Step 4: Validate”fractary faber validate role issue-managerStep 5: Build for Claude Code
Section titled “Step 5: Build for Claude Code”fractary faber build claude role issue-managerThis generates:
.claude/agents/issue-manager.md- Claude Code agent file- Deployment artifacts in
deployments/claude/
Step 6: Use Your Agent
Section titled “Step 6: Use Your Agent”The generated agent is ready to use in Claude Code:
- Open your project in Claude Code
- The agent appears in
.claude/agents/issue-manager.md - Invoke with prompts like: “Triage this issue” or “Create a bug report”
Next Steps
Section titled “Next Steps”What You’ve Built
Section titled “What You’ve Built”You now have:
- ✅ A platform-agnostic agent definition
- ✅ A working Claude Code agent
- ✅ A foundation to deploy to other frameworks
To deploy to LangGraph or CrewAI:
fractary faber build langgraph role issue-managerfractary faber build crewai role issue-manager