Master Archon MCP for strategic project management, task tracking, and knowledge base operations. The strategic layer (WHAT/WHEN) that coordinates with Skills (HOW). Use when managing projects, tracking tasks, querying knowledge bases, or implementing the Archon+Skills two-layer architecture.
Master Archon MCP for strategic project management and knowledge operations.
The Archon Manager skill teaches you how to use Archon MCP effectively as the strategic layer in your development workflow. Archon manages WHAT to build and WHEN, while Skills guide HOW to build it well.
# Clone repository
git clone https://github.com/coleam00/Archon.git
cd Archon
# Configure
cp .env.example .env
# Edit .env with Supabase credentials
# Start services
docker compose up --build -d
# Access UI: http://localhost:3737
Add to .claude/mcp-settings.json:
{
"mcpServers": {
"archon": {
"command": "node",
"args": ["/path/to/archon/mcp-server/dist/index.js"],
"env": {
"ARCHON_API_URL": "http://localhost:8181"
}
}
}
}
archon: create_project({
name: 'My Application',
description: 'Full-stack web app',
status: 'active'
})
// Crawl documentation
archon: crawl_website({
url: 'https://nextjs.org/docs',
follow_sitemap: true,
tags: ['nextjs', 'documentation']
})
// Strategic (Archon): Get task
const task = archon:get_next_task({project_id: "uuid"})
// Strategic (Archon): Research
const research = archon:perform_rag_query({
query: task.title,
match_count: 5
})
// Tactical (Skills): Implement
// AI invokes relevant skills for implementation
// Strategic (Archon): Complete
archon:update_task({task_id: task.id, status: "done"})
ARCHON (Strategic) SKILLS (Tactical)
↓ ↓
WHAT to build, WHEN HOW to build well
Task management Domain expertise
Priority queue Best practices
Knowledge queries Implementation patterns
Context preservation Quality standards
Together: Strategic coherence + Tactical excellence = Optimal outcomes
// Morning: Get priority task
const task = archon:get_next_task({project_id: "uuid"})
// Research before starting
const research = archon:perform_rag_query({
query: task.title + " implementation",
match_count: 5
})
// Work on task (Skills guide implementation)
// Evening: Mark complete
archon:update_task({task_id: task.id, status: "done"})
// Lead creates structure
archon: create_project({ name: 'Team Project' })
archon: create_feature({ name: 'Backend', assigned_to: 'dev-1' })
archon: create_feature({ name: 'Frontend', assigned_to: 'dev-2' })
// Everyone queries same knowledge base
// Real-time sync across team
// Build comprehensive knowledge base
archon: crawl_website({ url: 'https://docs.framework.com' })
archon: add_document({ file_path: 'architecture-spec.pdf' })
archon: extract_code_examples({ source_url: 'https://github.com/...' })
// Query for any implementation question
archon: perform_rag_query({ query: 'How to implement X' })
create_project, list_projects, get_project, update_projectcreate_feature, list_features, update_featurecreate_task, get_next_task, update_task, list_tasksgenerate_tasks (AI-assisted)perform_rag_query - Semantic searchsearch_code_examples - Find code snippetscrawl_website - Ingest web documentationadd_document - Upload PDFsextract_code_examples - Pull from reposget_project_metrics - Overview statsget_velocity - Tasks per weekget_burndown - Sprint progressProject
├── Feature (P0): Core functionality
│ ├── Task (P0): Must-have
│ └── Task (P1): Important
├── Feature (P1): Enhancement
│ └── Task (P1): High value
└── Feature (P2): Nice-to-have
└── Task (P2): Polish
todo → doing → review → done
Update immediately when changing state.
// Before task: research
archon: perform_rag_query({ query: 'How to implement ' + task.title })
// During task: specific questions
archon: perform_rag_query({ query: 'Edge case handling for X' })
// Architecture: decision support
archon: perform_rag_query({ query: 'Pattern A vs Pattern B for...' })
Works with Archon MCP (official, external):
Archon uses microservices:
All communicate via HTTP with Socket.IO for real-time updates.
You're using Archon effectively when:
Version: 1.0.0 Category: Project Management Estimated Time: 1-2 hours setup, ongoing use
Category:other
Tags:project-management, knowledge-management, task-tracking, rag, strategic-planning