Create, track, and archive projects linked to goals. The bridge between goals and daily tasks. Use for project creation, status dashboards, and archiving completed work.
Create, track, and archive projects that bridge the gap between goals and daily tasks.
/project # Interactive: create new project or view status
/project new # Create a new project
/project status # Dashboard of all active projects
/project archive <name> # Archive a completed project
/project or /project newCreates a new project folder with a CLAUDE.md context file, interactively linked to a goal.
Steps:
Goals/1. Yearly Goals.md to list available goalsProjects/<ProjectName>/CLAUDE.md with structure below[[Projects/<ProjectName>]] reference in the yearly goals fileProject CLAUDE.md Template:
# Project: <Name>
## Overview
[Brief description of what this project achieves]
## Goal Link
Supports: [[1. Yearly Goals#<Goal Name>]]
## Status
- **Phase:** Planning | Active | Review | Complete
- **Progress:** 0%
- **Started:** <date>
- **Target:** <date>
## Key Decisions
- [Decision 1] - [Date] - [Rationale]
## Next Actions
- [ ] [First concrete step]
- [ ] [Second step]
## Notes
[Running log of updates, blockers, learnings]
/project statusScans all Projects/*/CLAUDE.md files and displays a dashboard.
Steps:
Projects/*/CLAUDE.mdOutput Format:
## Project Dashboard
| Project | Phase | Progress | Goal | Next Action |
|---------|-------|----------|------|-------------|
| ProjectA | Active | 60% | [[Goal 1]] | Review PR |
| ProjectB | Planning | 10% | [[Goal 3]] | Draft spec |
### Summary
- Active projects: N
- Total progress (weighted): X%
- Projects without goal link: [list]
- Stalled projects (no update in 14+ days): [list]
/project archive <name>Moves a completed project to the archives.
Steps:
Projects/<name>/ existsmv Projects/<name> Archives/Projects/<name>Archives/Projects/ directory if it doesn't existProjects/LearnSpanish/Projects are the critical middle layer:
Goals/1. Yearly Goals.md <- "What I want to achieve"
|
v
Projects/*/CLAUDE.md <- "How I'll achieve it" (THIS SKILL)
|
v
Daily Notes/*.md <- "What I'm doing today"
When creating tasks in daily notes, reference the project:
- [ ] Draft API spec — [[Projects/MyApp/CLAUDE.md|MyApp]]
TaskCreate:
subject: "Read yearly goals"
description: "Load goals for project linking"
activeForm: "Reading yearly goals..."
TaskCreate:
subject: "Create project structure"
description: "Create folder and CLAUDE.md for new project"
activeForm: "Creating project structure..."
TaskCreate:
subject: "Link project to goal"
description: "Add project reference to yearly goals file"
activeForm: "Linking project to goal..."
TaskCreate:
subject: "Scan project files"
description: "Glob and read all Projects/*/CLAUDE.md files"
activeForm: "Scanning project files..."
TaskCreate:
subject: "Generate dashboard"
description: "Compile status dashboard from project data"
activeForm: "Generating project dashboard..."
Mark each task in_progress when starting, completed when done.
Works with:
/daily - Surface project next-actions in morning routine/weekly - Project status in weekly review/goal-tracking - Project progress feeds goal calculations/onboard - Discover and load project context/push - Commit project changes