From varie-workstation
Displays unified status of active tasks across repositories from ~/.varie sessions, including repo, task, current step, status, last active time, git branches, and touched files. Supports compact, verbose, and repo-filtered views.
How this skill is triggered — by the user, by Claude, or both
Slash command
/varie-workstation:work-statusThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Show unified status of all active tasks across repos.
Show unified status of all active tasks across repos.
ls -la ~/.varie/workspace.yaml ~/.varie/sessions/ 2>/dev/null
If ~/.varie/ doesn't exist, output:
No active workstation sessions found.
Use /work-start <repo> <task> to begin tracking work.
Read ~/.varie/workspace.yaml to get list of known repos and active sessions.
For each session in ~/.varie/sessions/*.yaml:
Default format (compact):
Active Tasks (N):
| Repo | Task | Current Step | Status | Last Active |
|-----------------|-------------------------|----------------------|---------|-------------|
| webapp | Character API Migration | frontend_api_client | working | 5 min ago |
| ml-pipeline | Data Processing Fix | stage_3b_integration | working | 30 min ago |
Verbose format (--verbose): For each task, show:
Filtered format (--repo): Show only tasks matching the specified repo.
If daemon socket exists, send status_request event:
${CLAUDE_PLUGIN_ROOT}/scripts/workstation-notify status-request
No active workstation sessions found.
Use /work-start <repo> <task> to begin tracking work.
Active Tasks (2):
| Repo | Task | Step | Status | Last Active |
|-----------------|-------------------------|---------------------|---------|-------------|
| webapp | Character API Migration | frontend_api_client | working | 5 min ago |
| my-project | Communication Protocol | design_complete | idle | 2 hours ago |
Most recent: webapp
═══ webapp: Character API Migration ═══
Session: abc123 | Branch: feature/character-api
Started: 2h ago | Last active: 5 min ago
Steps:
[✓] update_api_contract — "Added /companions endpoint"
[✓] backend_implementation — "Handler + 5 tests"
[→] frontend_api_client — "Working on response types"
[ ] frontend_components
[ ] integration_test
Files: src/api/client.ts, src/types/companion.ts
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.