Project status
Skill quantum-box/agent-packages/plugins/quantum-box/skills/project-status
Distribution repository for agent skills and plugins
npx -y skills add quantum-box/agent-packages --skill project-statusAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Gather project status at session start or when context is needed. Use proactively when: (1) New conversation begins. (2) User asks 'what was I working on?' (3) Before starting a new task. (4) User seems confused about current state.
SKILL.md
1.7 KB, as published. Nobody here has run it
Project Status
Gather git status, taskdoc lifecycle health, Serena memories, and Docker state.
Do not read every in-progress taskdoc when the directory is large; summarize
counts and route lifecycle cleanup to taskdoc-audit.
Workflow
-
Git status
git status git branch --show-current git log --oneline -5 -
Taskdoc lifecycle
for bucket in in-progress todo backlog; do if [ -d "docs/src/tasks/$bucket" ]; then find "docs/src/tasks/$bucket" -mindepth 1 -maxdepth 1 -type d | wc -l else echo 0 fi doneIf
in-progresshas 10 or fewer taskdocs, read theirtask.mdfiles and identify current phase. If it has more than 10, list only names and recommendtaskdoc-audit. -
Serena memories Use
mcp__serena__list_memories, read relevant ones (project_overview,development_guidelines). -
Docker status
docker ps --format "table {{.Names}}\t{{.Status}}"
Output Format
## Project Status
**Branch**: `feature/xyz` (3 ahead of main)
**Uncommitted**: 2 modified, 1 untracked
**In-Progress Task**: implement-user-auth
- ✅ Phase 1: Database schema
- 🔄 Phase 2: API endpoints
- 📝 Phase 3: Frontend
**Infrastructure**: ✅ Docker running
**Taskdoc Health**: 8 in-progress, 14 todo, 120 backlog
**Next Steps**: Continue Phase 2 or run `taskdoc-audit`