Continuity context
Armor for coding agents: a playbook of Claude Code skills that make an agent prove its work, not describe it.
npx -y skills add yiyaw-lab/agent-armor --skill continuity-contextAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Maintains CONTEXT.md and session handoff rules so agents and humans resume work without tool sprawl. Invoke explicitly when the user mentions lost context, context switching, where were we, handoff, or working across IDE/PM/notes tabs — not on generic "continuation" phrasing alone.
SKILL.md
2.9 KB, as published. Nobody here has run it
Continuity Context
Goal
One file + one habit so the next session (human or agent) starts in <30 seconds — without syncing Jira, Notion, and the IDE separately.
Artifacts
CONTEXT.md (repo root)
Keep ≤40 lines. Session-end update takes <30 seconds.
# Context
**Active goal:** One line — what "done" looks like this week.
**Active work:** WI/ticket name or branch (link if exists).
**Open decisions (max 3):**
- [ ] Decision — options A/B
**Touched today:** (paths, newest first, max 8)
- src/...
**Next action:** One imperative verb — "Ship X-3 IPC tests" / "Fix Track drag".
**Last session note:** One sentence — where you stopped.
Rotate Touched today — drop paths older than 3 days unless still hot.
If CONTEXT.md contradicts git/branch state, trust git and fix CONTEXT in the same edit.
User rule snippet (optional)
Offer this for Cursor Rules (≤10 lines):
At task start: read CONTEXT.md if present; restate Active goal + Next action in one line.
At meaningful checkpoints (task done, PR opened, context switch): batch-append changed paths to Touched today (max 8).
Before ending a session: update Last session note + Next action only.
Do not ask the user to maintain a separate PRD unless they request it.
Workflow
- If
CONTEXT.mdmissing and project has >1 day of work → create from git log + open files. - At session start → read it; don't re-scan whole repo unless user asks.
- At session end → update Last session note + Next action only (minimal diff).
- At checkpoints (task complete, PR ready, deliberate pause) → batch-update Touched today; do not append on every edit or keystroke.
- Do not duplicate full architecture in CONTEXT — link the blueprint layer:
- Continuum:
.continuum/blueprint/or BlueprintPanel (notARCHITECTURE.md) - Other repos:
ARCHITECTURE.mdif the architecture-blueprint skill exists
- Continuum:
Constraints
- Not a replacement for tickets/docs — it's the pointer layer
- No automated append on every keystroke — batch at meaningful checkpoints only
- No MCP catalog, Slack sync, or multi-tool dashboards
- If Continuum project open: checkpoint mental notes may live in graph — CONTEXT.md is for cross-IDE portability only
Adversarial self-check
- New teammate could orient from CONTEXT.md alone in 30s?
- File still ≤40 lines?
- Next action is one verb, not a paragraph?
- Session-end edit touched only Last session note + Next action (not a full rewrite)?
- Avoided duplicating blueprint/architecture content?