一键导入
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 职业分类
查询成交量异常股票(量比排名,发现放量异动)。Use when the user asks for volume spikes, unusual activity, or volume anomalies.
查询市场宽度(每日涨跌家数、上涨占比、平均涨跌幅)。Use when the user asks about market sentiment, breadth, or advance/decline ratio.
查询 RSRS 动量排名(A 股/美股最强趋势股票排行)。Use when the user asks for momentum ranking, strongest stocks, or top movers.
Validate skill files for structural compliance and behavioral correctness. Three modes: static (linter), spec (behavioral), audit (coverage report).
查询个股行情数据(OHLCV、均线、ATR、波动率等技术指标)。Use when the user asks about a specific stock's price, indicators, or recent performance.
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.
| 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 AGENTS.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.