Skip to content
Development
Skill

/project-stage-detect

Analyzes existing project artifacts to detect development stage, identify documentation gaps, and recommend next steps. Use when starting a new session on an existing project, or when the user mentions project analysis, stage detection, or gap analysis.

From plugin
software-development-department
72116 skills28 agents1 MCP
Install
$ npx -y skills add tranhieutt/software_development_department --skill project-stage-detect --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/project-stage-detect

Context preview

The summary Claude sees to decide when to auto-load this skill.

Analyzes existing project artifacts to detect development stage, identify documentation gaps, and recommend next steps. Use when starting a new session on an existing project, or when the user mentions project analysis, stage detection, or gap analysis.

SKILL.md

project-stage-detect.SKILL.md
name: project-stage-detect
type: workflow
description: "Analyzes existing project artifacts to detect development stage, identify documentation gaps, and recommend next steps. Use when starting a new session on an existing project, or when the user mentions project analysis, stage detection, or gap analysis."
argument-hint: "[optional: role filter like 'programmer' or 'designer']"
user-invocable: true
allowed-tools: Read, Glob, Grep, Bash
effort: 3
when_to_use: "Use when starting a session on an existing project, onboarding to a codebase, or checking what documentation gaps exist before a milestone."

Project Stage Detection

This skill scans your project to determine its current development stage, completeness of artifacts, and gaps that need attention. It's especially useful when:

  • Starting with an existing project
  • Onboarding to a codebase
  • Checking what's missing before a milestone
  • Understanding "where are we?"

---

Workflow

1. Scan Key Directories

Analyze project structure and content:

**Design Documentation** (`design/`):

  • Count PRD files in `design/docs/*.md`
  • Check for product-concept.md, product-pillars.md, systems-index.md
  • If systems-index.md exists, count total systems vs. designed systems
  • Analyze completeness (Overview, Detailed Design, Edge Cases, etc.)
  • Count narrative docs in `design/narrative/`
  • Count level designs in `design/specs/`

**Source Code** (`src/`):

  • Count source files (language-agnostic)
  • Identify major systems (directories with 5+ files)
  • Check for core/, business/, ai/, networking/, ui/ directories
  • Estimate lines of code (rough scale)

**Production Artifacts** (`production/`):

  • Check for active sprint plans
  • Look for milestone definitions
  • Find roadmap documents

**Prototypes** (`prototypes/`):

  • Count prototype directories
  • Check for READMEs (documented vs undocumented)
  • Assess if prototypes are archived or active

**Architecture Docs** (`docs/architecture/`):

  • Count ADRs (Architecture Decision Records)
  • Check for overview/index documents

**Tests** (`tests/`):

  • Count test files
  • Estimate test coverage (rough heuristic)

2. Classify Project Stage

Based on scanned artifacts, determine stage. Check `production/stage.txt` first — if it exists, use its value (explicit override from `/gate-check`). Otherwise, auto-detect using these heuristics (check from most-advanced backward):

| Stage | Indicators | | ----- | ---------- | | **Concept** | No product concept doc, brainstorming phase | | **Systems Design** | Product concept exists, systems index missing or incomplete | | **Technical Setup** | Systems index exists, engine not configured | | **Pre-Production** | Engine configured, `src/` has <10 source files | | **Production** | `src/` has 10+ source files, active development | | **Polish** | Explicit only (set by `/gate-check` Production → Polish gate) | | **Release** | Explicit only (set by `/gate-check` Polish → Release gate) |

3. Collaborative Gap Identification

**DO NOT** just list missing files. Instead, **ask clarifying questions**:

  • "I see combat code (`src/api/auth/`) but no `design/docs/combat-system.md`. Was this prototyped first, or should we reverse-document?"
  • "You have 15 ADRs but no architecture overview. Should I create one to help new contributors?"
  • "No sprint plans in `production/`. Are you tracking work elsewhere (Jira, Trello, etc.)?"
  • "I found a product concept but no systems index. Have you decomposed the concept into individual systems yet, or should we run `/map-systems`?"
  • "Prototypes directory has 3 projects with no READMEs. Were these experiments, or do they need documentation?"

4. Generate Stage Report

Use template: `.claude/docs/templates/project-stage-report.md`

**Report structure**:

# Project Stage Analysis

**Date**: [date]
**Stage**: [Concept/Systems Design/Technical Setup/Pre-Production/Production/Polish/Release]

## Completeness Overview
- Design: [X%] ([N] docs, [gaps])
- Code: [X%] ([N] files, [systems])
- Architecture: [X%] ([N] ADRs, [gaps])
- Production: [X%] ([status])
- Tests: [X%] ([coverage estimate])

## Gaps Identified
1. [Gap description + clarifying question]
2. [Gap description + clarifying question]

## Recommended Next Steps
[Priority-ordered list based on stage and role]

5. Role-Filtered Recommendations (Optional)

If user provided a role argument (e.g., `/project-stage-detect programmer`):

**Programmer**:

  • Focus on architecture docs, test coverage, missing ADRs
  • Code-to-docs gaps

**Designer**:

  • Focus on PRD completeness, missing design sections
  • Prototype documentation

**Producer**:

  • Focus on sprint plans, milestone tracking, roadmap
  • Cross-team coordination docs

**General** (no role):

  • Holistic view of all gaps
  • Highest-priority items across domains

6. Request Approval Before Writing

**Collaborative protocol**:

I've analyzed your project. Here's what I found:

[Show summary]

Gaps identified:
1. [Gap 1 + question]
2. [Gap 2 + question]

Recommended next steps:
- [Priority 1]
- [Priority 2]
- [Priority 3]

May I write the full stage analysis to production/project-stage-report.md?

Wait for user approval before creating the file.

---

Example Usage

# General project analysis
/project-stage-detect

# Programmer-focused analysis
/project-stage-detect programmer

# Designer-focused analysis
/project-stage-detect designer

---

Follow-Up Actions

After generating the report, suggest relevant next steps:

  • **Concept exists but no systems index?** → `/map-systems` to decompose into systems
  • **Missing design docs?** → `/reverse-document design src/[system]`
  • **Missing architecture docs?** → `/architecture-decision-records` or `/reverse-document architecture`
  • **Prototypes need documentation?** → `/reverse-document concept prototypes/[name]`
  • **No sprint plan?** → `/sprint-plan`
  • **Approaching milestone?** → `/milestone-review`

---

Collaborative Protocol

Read more
Ships withsoftware-development-department

Software Development Department

Get the whole plugin