LLM Skills
~/catalogue/architecture logicielle//prime

Chargement contexte projet

/prime

Charge le contexte Archon nécessaire avant de commencer une tâche de développement.

coleam00coleam00
13.8k
16 mars 2026
MIT License
// contenu du skill

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.

// source originale publique
coleam00/context-engineering-intro
/use-cases/ai-coding-wisc-framework/.claude/commands/prime.md
Licence : MIT License
Projet indépendant, non affilié à Anthropic. Ce skill reste la propriété de son auteur original.
// installer ce skill
Collez cette commande dans votre terminal à la racine de votre projet :
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"
Ensuite dans Claude Code, tapez /prime pour l'activer.
open_in_newVoir la source originale
// sauvegarder
Sauvegarde disponible après connexion.
loginSe connecter pour sauvegarder
// informations
Créateurcoleam00
Étoiles 13.8k
LicenceMIT License
Mis à jour16 mars 2026
Format.md
AccèsGratuit
// similaires

Skills Architecture logicielle

Voir toutarrow_forward