From varie-workstation
Lists all tracked projects with status, paths, current work, active sessions, and aliases from ~/.varie/manager/projects.yaml. Useful for managers to review cross-project visibility and priorities before routing work.
How this skill is triggered — by the user, by Claude, or both
Slash command
/varie-workstation:projectsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
List all projects in the Manager's project index.
List all projects in the Manager's project index.
Use this skill when you need to:
cat ~/.varie/manager/projects.yaml 2>/dev/null
If file doesn't exist or is empty, show helpful message.
Extract projects from YAML and format as table:
| Project | Status | Current Feature | Last Updated |
|---|---|---|---|
| webapp | active | user_auth | 2 hours ago |
| backend | idle | - | 2 days ago |
Cross-reference with /work-sessions to indicate which projects have active sessions.
## Projects
| Project | Path | Status | Current Work |
|---------|------|--------|--------------|
| webapp | ~/projects/webapp | active | user_auth |
| varie | ~/projects/varie | idle | - |
Active sessions: 1 (webapp)
## Aliases
- character → webapp
- infra → backend
If no projects are configured:
## Projects
No projects configured yet.
To add a project, edit ~/.varie/manager/projects.yaml:
```yaml
projects:
my_project:
path: /path/to/repo
status: active
current_feature: feature_name
Or use /route to auto-create sessions - projects will be tracked automatically.
## Example
**User:** `/projects`
**Output:**
| Project | Path | Status | Current Work |
|---|---|---|---|
| webapp | ~/workplace/projects/webapp | active | user_auth |
| varie | ~/workplace/projects/varie | idle | - |
| data-pipeline | ~/workplace/projects/data-pipeline | paused | regime_v2 |
Active sessions: 1
npx claudepluginhub varie-ai/workstation --plugin varie-workstationSwitches between projects in a monorepo configured via .groundwork.yml, setting active project context and showing spec status.
Displays project status, roadmap progress, blockers, and next-action suggestions based on workflow state. Use for progress checks and orientation.
Sets up isolated workspaces using native worktree tools or git worktree fallback. Use before starting feature work to protect the current branch.