From knowzcode
Detect continuation intent and resume active WorkGroup workflow. Triggers when user says continue, keep going, resume, or similar continuation intent
How this skill is triggered — by the user, by Claude, or both
Slash command
/knowzcode:continueThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Purpose**: Detect when user wants to continue work and resume the active WorkGroup with proper context restoration.
Purpose: Detect when user wants to continue work and resume the active WorkGroup with proper context restoration.
Activate when user message matches ANY of these patterns:
Context Requirements:
When triggered:
Search knowzcode/knowzcode_tracker.md for [WIP] entries.
/knowzcode:workRead knowzcode/workgroups/{WorkGroupID}.md to determine:
**Autonomous Mode**: Active, restore AUTONOMOUS_MODE = true and announce: > **Autonomous Mode: RESTORED** — continuing with auto-approved gates.knowzcode/knowzcode_orchestration.md exists, parse and restore MAX_BUILDERS, MCP_AGENTS_ENABLED, DEFAULT_SPECIALISTS (same logic as work.md Step 2.4). Defaults apply if file is absent.Read knowzcode/knowzcode_loop.md and resume the workflow at the detected phase.
If the WorkGroup file contains a ## Current Stage section (instead of Current Phase):
**Resuming Parallel Teams** — Stage {N}: {description}If resuming mid-Stage-2 (e.g., builder was implementing, reviewer had started auditing):
If the WorkGroup file contains Current Phase: (standard format):
| Detected Phase | Remaining Work |
|---|---|
| 1A | All phases (1A → 1B → 2A → 2B → 3) |
| 1B | Specs + implementation + audit + finalization |
| 2A | Implementation + audit + finalization |
| 2B | Audit + finalization |
| 3 | Finalization only |
Set up execution mode — check ~/.claude/settings.json and .claude/settings.json for "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1" in the env block. If found, Agent Teams is available — create a team named kc-{wgid} and activate delegate mode (you coordinate only, never write code directly). Read knowzcode/claude_code_execution.md for team conventions. For each remaining phase, spawn one teammate with the spawn prompt from the corresponding phase section of /knowzcode:work, create a task, wait for completion, present quality gate, shut down teammate. Shut down all teammates when done or on cancel.
If Agent Teams is not available, announce **Execution Mode: Subagent Delegation** — Agent Teams not available (add "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1" to the env block in settings.json, then restart Claude Code) and use Task() calls to delegate each remaining phase to the named agent.
Follow the same phase delegation patterns (spawn prompts, quality gates, gap loop) as /knowzcode:work.
## Resuming WorkGroup: {wgid}
**Goal**: {primary goal}
**Phase**: {current phase}
**NodeIDs**: {list}
**Outstanding Todos**:
{list from WorkGroup file}
Continuing from where we left off...
Then proceed with the appropriate phase using the same agents as /knowzcode:work.
/knowzcode:work — Start a new WorkGroup (if nothing to continue)/knowzcode:status — Check current project state---
**Type:** SkillActivation
**Timestamp:** [timestamp]
**Skill:** continue
**Trigger:** User said "{user_message}"
**WorkGroup:** {wgid}
**Phase:** {current phase}
**Logged By:** AI-Agent
---
npx claudepluginhub knowz-io/knowz-skills --plugin knowzcodeResumes an active deep-work session by restoring context from artifacts and continuing from the current phase. Supports explicit session ID, phase override, and worktree path.
Resumes coding sessions by detecting blockers, reconciling STATE.md with filesystem, and suggesting next actions from checkpoints or plans.