LLM Skills
~/catalog/software architecture//prime

Chargement contexte projet

/prime

Load the required Archon context before starting a development task.

coleam00coleam00
13.8k
March 16, 2026
MIT License
// skill content

--- description: Prime agent with full Archon codebase understanding --- # Prime: Load Archon Project Context ## Objective Build comprehensive understanding of the Archon monorepo before beginning any work. This orients you on structure, active state, and key architectural conventions. ## Process ### 1. Analyze Project Structure List the monorepo packages: !ls packages/ Show workspace scripts: !cat package.json | head -35 ### 2. Read Core Documentation Read CLAUDE.md in full : it contains the authoritative architecture reference, engineering principles, import patterns, and development guidelines for this project. ### 3. Identify Key Entry Points Read these files to understand the primary message and execution flow: - packages/core/src/orchestrator/orchestrator-agent.ts : single entry point for all platforms - packages/core/src/handlers/command-handler.ts : slash command routing (no AI) - packages/server/src/index.ts : server startup, adapter wiring, port allocation - packages/workflows/src/executor.ts : sequential/parallel/loop/DAG workflow execution ### 4. Understand Package Dependency Layers Read the dependency chain (no @archon/* deps → most isolated): - packages/paths/src/index.ts : path resolution + Pino logger (zero deps) - packages/git/src/index.ts : git ops (depends only on @archon/paths) - packages/isolation/src/index.ts : worktree isolation (depends on @archon/git + @archon/paths) - packages/workflows/src/index.ts : workflow engine (depends on @archon/git + @archon/paths) ### 5. Understand Current State Check recent commits: !git log -10 --oneline Check current branch and working tree status: !git status List any active worktrees: !git worktree list ## Output Report Provide a concise summary (under 300 words) covering: ### Project Overview - Archon: Remote agentic coding platform (Slack, Telegram, GitHub, Discord, Web) - Bun + TypeScript monorepo with 8 packages: paths, git, isolation, workflows, core, adapters, server, web - SQLite (default, zero-setup) or PostgreSQL (optional via DATABASE_URL) ### Architecture - Package dependency order and each package's responsibility - Key interfaces: IPlatformAdapter, IAssistantClient, IDatabase, IWorkflowStore - Message flow: platform adapter → orchestrator-agent → command handler OR AI client - Workflow execution: discoverWorkflows → router → executeWorkflow (steps / loop / DAG) ### Current State - Active branch, recent changes, any uncommitted work - Any observations relevant to next task Keep it scannable : bullets over prose.

// original public source
coleam00/context-engineering-intro
/use-cases/ai-coding-wisc-framework/.claude/commands/prime.md
License: MIT License
Independent project, not affiliated with Anthropic. This skill remains the property of its original author.
// install this skill
Paste this command in your terminal at the root of your project:
mkdir -p .claude/commands && curl -o ".claude/commands/prime.md" "https://raw.githubusercontent.com/coleam00/context-engineering-intro/main/use-cases/ai-coding-wisc-framework/.claude/commands/prime.md"
Then in Claude Code, type /prime to activate it.
open_in_newOpen original source
// save
Save available after sign in.
loginSign in to save
// information
Creatorcoleam00
Stars 13.8k
LicenseMIT License
UpdatedMarch 16, 2026
Format.md
AccessFree
// similar

Skills Software architecture

View allarrow_forward