shared/task-tracking/SKILL.md
Manage the `tasks.md` ledger with strict locking and collision avoidance protocols to allow multiple agents to work in parallel safely.
npx skillsauth add 7a336e6e/skills task-trackingInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
4 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Maintain a conflict-free, "Single Source of Truth" ledger (tasks.md). Prevent multiple agents from working on the same task or stomping on each other's updates.
tasks.md. Look for Assigned Agent.
Assigned Agent is Unassigned or null: You may take it.Assigned Agent is SOMEONE ELSE: STOP. Do not touch it.Assigned Agent is YOU: Proceed.Status: In Progress and Assigned Agent: <your-agent-name>.
Every task must strictly follow the format.
### TASK-042: Implement password reset endpoint
- **Status**: In Progress <-- The "Lock"
- **Difficulty**: Medium
- **Assigned Agent**: Backend Engineer <-- The "Owner"
- **Dependencies**: TASK-038
- **Created**: 2026-02-05
- **Updated**: 2026-02-06 <-- MUST be today
#### Description
Build the POST /api/auth/reset-password endpoint.
#### Acceptance Criteria
- [x] Endpoint accepts token + new password
- [ ] Invalid/expired tokens return 400
TASK-XXX in "Dependencies".Todo -> In Progress: The Lock.In Progress -> Blocked: If waiting on another agent/task. Explain WHY in Notes.In Progress -> In Review: Code is written, tests pass.In Review -> Done: Code is merged.tasks.md in a separate tool call from your code changes if possible, or at least be very careful not to hallucinate the file content.Updated: YYYY-MM-DD field every time you touch a task.Agent Manager.Status: Todo without first changing it to In Progress and assigning yourself.Status: Cancelled instead.Assigned Agent empty for In Progress tasks.tasks.md.templates/task-template.mddevelopment
Implement features using the Red-Green-Refactor cycle to ensure testability and correctness from the start.
development
The git-workflow skill defines branching conventions, commit message formats, and pull request standards that all agents must follow for consistent version control.
development
The environment-config skill standardizes how agents manage environment variables, secrets, and application configuration across local development and deployed environments.
development
Create clear, maintainable documentation for APIs, codebases, and end-users. Treat documentation as code.