Loading...
Loading...
Project planning and management with CodeSpring. Use when the user wants to work with CodeSpring projects, tasks, PRDs, mindmaps, or analyze a codebase for project planning. Handles workspace selection, project linking, task management, and syncing findings to CodeSpring.
npx skill4agent add codespringapp/codespring-skills codespringnpm i -g @codespring/clibunx @codespring/clicodespring auth statuscodespring auth login.codespring/config.jsoncodespring init# 1. Check auth
codespring auth status
# 2. Link project (interactive — picks workspace → project → writes config)
codespring init
# 3. Start working
codespring tasks --status todo| Command | Purpose |
|---|---|
| List available workspaces |
| List projects in a workspace |
| List features for linked project |
| List tasks with filters |
| Mark task as in_progress |
| Mark task as done |
| List PRDs by feature structure |
| Get full PRD content |
| Update PRD from file |
| Get mindmap structure |
| Sync tech stack |
| Sync features |
| Add feature notes |
| Data schema reference |
| Mindmap node type reference |
--pretty--help# 1. Find available work
codespring tasks --status todo
# 2. Claim a task
codespring task start <task-id>
# 3. Do the work using your coding tools
# 4. Mark done
codespring task done <task-id># Sync detected technologies
codespring mindmap tech-stack --add '[{"id":"tech-react","title":"React","description":"Frontend"}]'
# Sync discovered features
codespring mindmap features --add '[{"title":"Authentication","description":"User login/signup"}]'
# Add analysis notes to a feature
codespring mindmap note feature-auth --text "Uses OAuth2 with PKCE flow..."