بنقرة واحدة
source-command-ledger
View and manage Sprint Ledger status. Provides global sprint numbering and cycle management.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
View and manage Sprint Ledger status. Provides global sprint numbering and cycle management.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Security and quality audit of application codebase
Autonomous agent execution mode
Bridgebuilder — Autonomous PR Review
Triage a bug report through structured phases and create micro-sprint
L2 cost-budget enforcer — daily token cap with fail-closed semantics under uncertainty (billing-API primary, internal counter fallback, periodic reconciliation cron)
L5 cross-repo status reader — reads structured cross-repo state via gh API with TTL cache + stale fallback, BLOCKER extraction from NOTES.md, per-source error capture, p95 <30s for 10 repos
| name | source-command-ledger |
| description | View and manage Sprint Ledger status. Provides global sprint numbering and cycle management. |
Use this skill when the user asks to run the migrated source command ledger.
View and manage the Sprint Ledger - an append-only data structure that provides global sprint numbering across multiple /plan-and-analyze cycles.
/ledger # Show current status
/ledger init # Initialize ledger for existing project
/ledger history # Show all cycles and sprints
/ledger (no arguments)Shows current ledger status:
Sprint Ledger Status
────────────────────────────────────────
Active Cycle: "Skills Housekeeping" (cycle-002)
Current Sprint: sprint-2 (global: 4)
Next Sprint Number: 5
Archived Cycles: 1
Total Cycles: 2
/ledger initInitialize ledger for an existing project. Scans grimoires/loa/a2a/sprint-* directories to determine the next sprint number.
Use when: You have an existing Loa project without a ledger and want to enable global sprint tracking.
Example output:
Initialized ledger from existing project
Detected 3 existing sprints, next sprint number: 4
/ledger historyShows complete history of all cycles and sprints:
Cycle History
─────────────────────────────────────────────────────────────
cycle-001 │ MVP Development │ archived │ 2 sprints
│ Created: 2026-01-10 │ Archived: 2026-01-15
─────────────────────────────────────────────────────────────
cycle-002 │ Skills Housekeeping │ active │ 2 sprints
│ Created: 2026-01-17 │
The Sprint Ledger solves sprint number collisions in multi-cycle projects:
/implement sprint-1 resolve to global IDsa2a/sprint-4/, not a2a/sprint-1/)grimoires/loa/ledger.json (State Zone)
| Command | Purpose |
|---|---|
/archive-cycle | Archive current cycle and start fresh |
/plan-and-analyze | Creates ledger and cycle automatically |
/implement sprint-N | Resolves sprint-N to global ID |
# New project - ledger created automatically
/plan-and-analyze
/architect
/sprint-plan # Registers sprints in ledger
/implement sprint-1 # Resolves to global sprint-1
# After completing first cycle
/archive-cycle "MVP Complete" # Archives cycle
# Start new cycle
/plan-and-analyze # Creates new cycle
/sprint-plan # sprint-1 now maps to global sprint-3
/implement sprint-1 # Resolves to global sprint-3
| Error | Resolution |
|---|---|
| "Ledger already exists" | Ledger already initialized |
| "No active cycle" | Run /plan-and-analyze first |
| "Ledger not found" | Run /ledger init to create |