Help us improve
Share bugs, ideas, or general feedback.
From claude-tdd-pro
H-13 long-running agent harness continuity per §26 v1.11. When a CL exceeds a single agent context window, the initializer agent writes a continuation artifact at `.claude-tdd-pro/agent-continuations/<session_id>.json` and the incremental successor agent reads it at startup to resume from `next_action` without losing the §2.15 workflow state envelope.
npx claudepluginhub drumfiend21/claude-tdd-proHow this skill is triggered — by the user, by Claude, or both
Slash command
/claude-tdd-pro:agent-continuityThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Architecture §11 H-13: "Long-running agent harness continuity (§2.27).
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Explores codebases via GitNexus: discover repos, query execution flows, trace processes, inspect symbol callers/callees, and review architecture.
Share bugs, ideas, or general feedback.
Architecture §11 H-13: "Long-running agent harness continuity (§2.27).
When a single CL exceeds an agent's context window, the harness writes
a continuation artifact at
.claude-tdd-pro/agent-continuations/<session_id>.json."
{
"parent_session_id": "<id>",
"parent_cl_id": "<id>",
"current_phase": "<phase-id>",
"completed_steps": [
{ "step_id": "<id>", "completed_at": "<iso>", "summary": "<text>" }
],
"pending_steps": [
{ "step_id": "<id>", "queued_at": "<iso>", "prerequisite_ids": ["<id>"] }
],
"context_summary": "<= 500 char",
"last_tool_calls": [
"<= 10 entries"
],
"next_action": { "action": "<text>", "rationale": "<text>" }
}
commands/agent-continuity.sh provides three subcommands:
--write — initializer writes the artifact at session boundary--read — successor reads + validates the parent_session_id--purge-stale — TTL purge (24h since last write; per §2.27)--read validates that
parent_session_id references an envelope in
.claude-tdd-pro/workflow-state.json (§2.15). Stale parent → refuse.--purge-stale --now <iso>._resumable block)models_used block)