一键导入
estimate
Estimates task effort by analyzing complexity, dependencies, historical velocity, and risk factors. Produces a structured estimate with confidence levels.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Estimates task effort by analyzing complexity, dependencies, historical velocity, and risk factors. Produces a structured estimate with confidence levels.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Brownfield onboarding — audits existing project artifacts for template format compliance (not just existence), classifies gaps by impact, and produces a numbered migration plan. Run this when joining an in-progress project or upgrading from an older template version. Distinct from /project-stage-detect (which checks what exists) — this checks whether what exists will actually work with the template's skills.
Generate a project progress dashboard from workflow-catalog.yaml. Reads current stage, required steps, artifact evidence, validation gaps, writes production/project-roadmap.md after approval, and mirrors to memory_bank/t2_execution/current_roadmap.md when memory_bank exists.
Memory-bank governance audit — checks whether T0 laws/current state, T1 supporting context, T2 execution mirrors, adapter freshness, and T3 archive indexes align. Read-only by default; may record adapter_state.yaml only after explicit approval.
Constitution Driven Development project governance — establishes, derives, updates, or amends governing principles at any project stage. Reads existing artifacts to derive a constitution, audits alignment, tracks versions, and supports formal amendment workflow. Domain-agnostic, stage-aware unified onboarding entry.
Analyzes what is done and the users query and offers advice on what to do next. Use if user says what should I do next or what do I do now or I'm stuck or I don't know what to do
Generates a contextual onboarding document for a new contributor or agent joining the project. Summarizes project state, architecture, conventions, and current priorities relevant to the specified role or area.
| name | estimate |
| description | Estimates task effort by analyzing complexity, dependencies, historical velocity, and risk factors. Produces a structured estimate with confidence levels. |
| argument-hint | [task-description] |
| user-invocable | true |
| allowed-tools | Read, Glob, Grep |
/estimate [task-description]; project artifacts referenced below; user decisions and approvals before writes.Detect the project domain before estimating:
design/cdd/game-concept.md -> [Game] estimate using game risk factors: mechanic complexity, engine integration, content production, tuning, playtest iteration, platform constraints, and asset dependencies.design/cdd/product-concept.md -> [Product] estimate using product risk factors: API/CLI/UI scope, data model changes, migrations, integration boundaries, security, observability, deployment, and documentation.Keep game estimation examples; product estimates add a parallel calibration model.
Read the task description from the argument. If the description is too vague to estimate meaningfully, ask for clarification before proceeding.
Read CLAUDE.md for project context: tech stack, coding standards, architectural patterns, and any estimation guidelines.
Read relevant design documents from design/cdd/ if the task relates to a documented feature or system.
Identify files and modules that would need to change:
production/sprints/ for similar completed tasks and historical velocity[Product] Product surface scan:
docs/architecture/, ADRs, design/cdd/, design/ux/, and production/qa/ for contract, evidence, and release constraints.standards/technical-preferences.md and note whether a Product task needs Python, TypeScript, Rust, Go, devops, security, UX, QA, or lead-programmer review.Code Complexity:
Scope:
Risk:
[Product] Product complexity factors:
[Product] Product risk model:
## Task Estimate: [Task Name]
Generated: [Date]
### Task Description
[Restate the task clearly in 1-2 sentences]
### Complexity Assessment
| Factor | Assessment | Notes |
|--------|-----------|-------|
| Systems affected | [List] | [Core, gameplay, UI, etc.] |
| Files likely modified | [Count] | [Key files listed below] |
| New code vs modification | [Ratio] | |
| Integration points | [Count] | [Which systems interact] |
| Test coverage needed | [Low / Medium / High] | |
| Existing patterns available | [Yes / Partial / No] | |
**Key files likely affected:**
- `[path/to/file1]` -- [what changes here]
### Effort Estimate
| Scenario | Days | Assumption |
|----------|------|------------|
| Optimistic | [X] | Everything goes right, no surprises |
| Expected | [Y] | Normal pace, minor issues, one round of review |
| Pessimistic | [Z] | Significant unknowns surface, blocked for a day |
**Recommended budget: [Y days]**
### Confidence: [High / Medium / Low]
[Explain which factors drive the confidence level for this specific task.]
### Risk Factors
| Risk | Likelihood | Impact | Mitigation |
|------|-----------|--------|------------|
### Dependencies
| Dependency | Status | Impact if Delayed |
|-----------|--------|-------------------|
### Suggested Breakdown
| # | Sub-task | Estimate | Notes |
|---|----------|----------|-------|
| 1 | [Research / spike] | [X days] | |
| 2 | [Core implementation] | [X days] | |
| 3 | [Testing and validation] | [X days] | |
| | **Total** | **[Y days]** | |
### Notes and Assumptions
- [Key assumption that affects the estimate]
- [Any caveats about scope boundaries]
For product tasks, include this Product-specific extension in the estimate:
### Product Surface Assessment
| Factor | Assessment | Notes |
|--------|------------|-------|
| Public surface changed | [API / CLI / UI / Data / Config / Docs / None] | [contract names] |
| Compatibility impact | [None / additive / breaking-risk / breaking] | [migration or fallback notes] |
| Data or migration impact | [None / small / significant] | [schemas/tables/files] |
| Security/privacy impact | [None / low / medium / high] | [auth/permissions/data exposure] |
| Operational impact | [None / deploy / monitoring / on-call / rollback] | [runbook/evidence needed] |
| Documentation/examples | [None / update / new docs required] | [paths likely affected] |
### Product Test Evidence Needed
| Evidence Type | Needed? | Notes |
|---------------|---------|-------|
| Contract/API or CLI tests | [Yes/No] | |
| Integration tests | [Yes/No] | |
| Migration/config validation | [Yes/No] | |
| Smoke/user-workflow test | [Yes/No] | |
| Performance/load check | [Yes/No] | |
| Docs/example verification | [Yes/No] | |
Output the estimate with a brief summary: recommended budget, confidence level, and the single biggest risk factor.
This skill is read-only — no files are written. Verdict: COMPLETE — estimate generated.
/prototype) before committing./create-stories./sprint-plan update to add it to the next sprint.[Product] Product next steps:
/propagate-design-change before implementation./release-checklist or /hotfix depending on urgency./prototype or /setup-engine refresh [stack] before committing to the estimate.