From varie-workstation
Initializes new tasks by creating archive directories, HANDOVER.md, TODO.md, session metadata, project registration, and loading CLAUDE.md context. Use /work-start task_name for fresh feature, bug fix, or project work.
How this skill is triggered — by the user, by Claude, or both
Slash command
/varie-workstation:work-startThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Initialize a new task with proper context loading and archive setup.
Initialize a new task with proper context loading and archive setup.
Get current repo from working directory:
basename "$PWD"
Verify it's a valid project directory (has CLAUDE.md or .git):
ls CLAUDE.md .git 2>/dev/null
Find next sequential number in archive/:
ls -d archive/[0-9][0-9]_* 2>/dev/null | tail -1
If archive/ doesn't exist or is empty, start with 01.
Otherwise, increment the highest number.
ARCHIVE_PATH="archive/{nn}_{task_name}"
mkdir -p "$ARCHIVE_PATH/sessions"
Create initial HANDOVER.md:
# Task: {Task Name} - Handover
**Created:** {date}
**Status:** Just started
## Goal
{To be defined with user}
## Steps
{To be defined}
## Resume Prompt
\```
Resume: {Task Name}
HANDOVER: {full_path}/archive/{nn}_{task_name}/HANDOVER.md
NEXT TASKS:
1. Define goals and scope
2. Break down into steps
3. Begin implementation
\```
Create initial TODO.md:
# {Task Name} - TODO
## Planning
- [ ] Define goals
- [ ] Break into steps
## Implementation
{To be added}
## Verification
- [ ] Tests pass
- [ ] Manual testing
uuidgen | cut -c1-8
Or use: $(date +%s | tail -c 8)
Create ~/.varie/sessions/{session_id}/meta.yaml:
session_id: "{id}"
created_at: "{ISO timestamp}"
last_active: "{ISO timestamp}"
repo: "{repo_name}"
repo_path: "{full_path}"
task:
id: "{nn}_{task_name}"
name: "{Human Readable Task Name}"
archive_path: "archive/{nn}_{task_name}/"
started_at: "{ISO timestamp}"
current_step: "planning"
status: "in_progress"
This is lightweight session tracking. Rich data lives in <repo>/archive/.
If project not in ~/.varie/manager/projects.yaml, add it:
projects:
{repo_name}:
path: "{full_path}"
status: active
current_feature: "{nn}_{task_name}"
last_updated: "{ISO timestamp}"
This ensures Manager can see all projects that have been worked on.
Read and summarize key context:
CLAUDE.md - Project instructionsCLAUDE.md if exists${CLAUDE_PLUGIN_ROOT}/scripts/workstation-notify session-start --task "{task_name}"
Created: archive/{nn}_{task_name}/
Context loaded:
- {repo}/CLAUDE.md ({brief description})
- Related: {related repos if any}
Initialized task: {Human Readable Task Name}
Session ID: {session_id}
What are the goals for this task? I'll help break it down into steps.
User: /work-start user_auth
Output:
Created: archive/33_user_auth/
Context loaded:
- webapp/CLAUDE.md (Character & Companion Development Hub)
- Related: varie/backend (backend APIs)
Initialized task: Character API
Session ID: a1b2c3d4
What are the goals for this task? I'll help break it down into steps.
User provides goals, Claude responds:
Got it. Here's the proposed breakdown:
Steps:
1. update_api_contract - Define new endpoint schema
2. backend_implementation - Implement handler and tests
3. frontend_api_client - Update TypeScript types and fetch
4. frontend_components - Update UI components
5. integration_test - End-to-end verification
Does this look right? I'll save this to the checkpoint and begin with step 1.
npx claudepluginhub varie-ai/workstation --plugin varie-workstationGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.