← ClaudeAtlas

team-planlisted

Produce the tactical implementation plan from the structure. The plan is an autonomous artifact for the implementer — no approval gate at this phase (the design was already gated by the adversarial design review). Trigger on "plan the implementation", "spell out the steps", or "/team-plan".
bostonaholic/team · ★ 11 · AI & Automation · score 75
Install: claude install-skill bostonaholic/team
# Team Plan — Tactical Implementation Plan Run the PLAN phase. There is no gate here. The plan is a tactical artifact for the implementer, mechanically derived from the structure. ## Input `$ARGUMENTS` is the artifact directory: `docs/plans/<id>/`. If empty, the discovery block below resolves it. The `planner` reads: - `$ARGUMENTS/structure.md` - `$ARGUMENTS/design.md` - `$ARGUMENTS/research.md` Resolve the artifact directory by running this self-contained block (one bash call — agent threads reset cwd between calls). The predecessor filter requires a `structure.md` (structure is not gated, so no approval check): ```sh # Three-tier artifact-directory discovery (archetype A). # ID_RE + PHASE_FILES canonical from hooks/session-start-recover.mjs. # PHASE_FILES recency mirrors findActiveTopic() in session-start-recover.mjs. # NOTE: this block is duplicated across 8 skills by design (see docs/architecture.md); future: shared discover-topic.sh. ID_RE='^([A-Za-z][A-Za-z0-9_]*-[0-9]+|[0-9]{4}-[0-9]{2}-[0-9]{2})-[a-z0-9][a-z0-9-]*$' PHASE_FILES="task questions research design structure plan" PRED="structure.md" # predecessor artifact this skill consumes # Tier 1 — explicit: $ARGUMENTS names an existing dir → use verbatim. if [ -n "$ARGUMENTS" ] && [ -d "$ARGUMENTS" ]; then echo "$ARGUMENTS"; exit 0 fi # Tier 2 — discover: newest ID_RE dir under docs/plans/ that holds PRED. best=""; best_mtime=-1 # Assumes cwd is the repo/worktree root (where docs/plans/ lives). for