Generate a continuation primer for agent handoff with todo list and context
Creates a structured handoff primer with todo list and context for agent continuation.
/plugin marketplace add laurigates/claude-plugins/plugin install agent-patterns-plugin@lgates-claude-pluginsGenerate a structured todo list and context primer so another agent can continue from the current state.
When work must be handed off between agent sessions (due to context limits, user request, or task transition), this command creates a compact summary that enables seamless continuation.
/workflow:primer
The primer includes:
What has been accomplished in this session:
Pending tasks in priority order:
Critical information for continuation:
Files currently being worked on:
Known obstacles:
# Agent Continuation Primer
## Session Summary
Implemented user authentication flow for the dashboard.
Modified 4 files, created 2 new components.
## Remaining Tasks
1. [BLOCKING] Add error handling to login form
- File: src/components/LoginForm.tsx
- Need: validation messages, network error states
2. [BLOCKING] Write unit tests for auth hook
- File: src/hooks/useAuth.test.ts
- Coverage: login, logout, token refresh
3. Add loading states to login button
- File: src/components/LoginForm.tsx
- Enhancement, not blocking
## Key Context
- Using React Query for server state
- JWT tokens stored in httpOnly cookies
- Auth state in React Context (not Redux)
## Active Files
- src/hooks/useAuth.ts - Complete, needs tests
- src/components/LoginForm.tsx - 80% done, needs error handling
- src/pages/Login.tsx - Complete
## Known Issues
- Token refresh endpoint returns 500 intermittently (backend issue)
- Need design input on error message styling
This command works with the agent-handoff-markers skill for inline code markers that persist between sessions.
agent-handoff-markers for inline code markersagent-coordination-patterns for workflow patternsmulti-agent-workflows for complex coordination