Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问clear审计通过

technical-planning技术规划

Agent Skill

technical-planning 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

648

周安装

27

GitHub Stars

35

下载量

216
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:technical-planning(技术规划)
来源仓库:https://github.com/ratacat/claude-skills
仓库路径:skills/technical-planning
安装命令:
npx skills add https://github.com/ratacat/claude-skills --skill technical-planning
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/ratacat/claude-skills --skill technical-planning

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网或文件读写操作。
  • technical-planning 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Technical Planning

Core Principles

Focus on "What" Not "How": Define deliverable outcomes, not implementation details. Specify constraints and success criteria, but leave implementation choices flexible.

Last Responsible Moment: Defer decisions until you have enough information to make them well, but not so late that they block progress. Make reversible decisions quickly; delay irreversible ones until necessary.

Risk-First Development: Address highest-risk technical challenges first. Build proof-of-concepts before full implementation. Ship working but imperfect solutions to validate core assumptions early.

Managed Deferral: Explicitly document what's being deferred and when it will be addressed. Distinguish between core value delivery and polish/optimization.

Progress Tracking with TodoWrite

Use TodoWrite to track planning progress through the four phases:

  1. At start: Create todos for each phase: ☐ Phase 1: Requirements & Risk Analysis ☐ Phase 2: Milestone Planning ☐ Phase 3: Implementation Strategy ☐ Phase 4: Execution Framework
  2. During planning: Mark phases in_progress → completed as you work through them. Add sub-todos for key deliverables: ☐ Extract core requirements (2-3 user journeys) ☐ Identify technical risks (high/integration/performance/architecture) ☐ Define milestones with success criteria ☐ Document deferred items with rationale
  3. For complex projects: Track clarifying questions and their resolutions as todos - prevents proceeding with incomplete information

Decision Timing Framework

Decide Early (Requirements Phase):

  • User problems being solved
  • Success criteria and measurement
  • Hard constraints (security, compliance, performance SLAs)
  • Critical integrations and dependencies
  • Technology choices that affect architecture

Defer to Implementation (Execution Phase):

  • Specific algorithms or data structures
  • Internal API design details
  • Code organization patterns
  • Library choices (when multiple options work)
  • Performance optimizations (until proven necessary)
  • UI/UX details (until user testing)

Why: Early decisions should enable work without locking in details. Implementation decisions become clearer with hands-on experience and often reveal better alternatives than upfront planning suggests.

Agent Guidelines

Seek Clarity Before Proceeding: Never assume unclear requirements, technical constraints, or business priorities. Only proceed when you have 80%+ confidence on critical aspects. Ask specific questions about:

  • User problems being solved (not just features requested)
  • Success criteria and measurement approaches
  • Technical constraints and existing system dependencies
  • Team capabilities and technology preferences
  • Timeline constraints and priority trade-offs
  • Performance and scalability requirements

Phase 1: Requirements & Risk Analysis

Prerequisites Check

Verify:

  • What user problems are being solved?
  • Who are the primary users and their workflows?
  • How will success be measured?
  • What are the technical and business constraints?

Extract Core Requirements

  1. Identify fundamental user problems being solved
  2. Map primary user journeys (focus on 2-3 critical paths)
  3. Define project success metrics

Identify Technical Risks

  1. High-Impact Risks: Technical unknowns that could invalidate the approach
  2. Integration Risks: External system dependencies and compatibility concerns
  3. Performance Risks: Scalability bottlenecks and algorithmic challenges
  4. Architecture Risks: Fundamental design decisions with broad implications

Risk Prioritization Matrix

  • Critical + Unknown: Must be addressed in Milestone 1 with proof-of-concepts
  • Critical + Known: Address in early milestones with established patterns
  • Non-Critical: Defer to later milestones or eliminate

Phase 2: Milestone Planning

Prerequisites Check

Verify:

  • Priority order of technical risks identified in Phase 1
  • Team capacity and available timeline
  • Dependencies between different components
  • Definition of "working functionality" for this project

Milestone Structure

  • Timeline: 4-8 week cycles based on project complexity
  • Deliverable: Each milestone must produce working, testable functionality
  • Risk Focus: Sequence milestones to tackle highest-risk items first

For Each Milestone, Define:

Goal: One-sentence description of milestone outcome

Core Tasks: 4-6 main implementation tasks following Last Responsible Moment principle:

  • Define clear outcomes and constraints
  • Identify dependencies and integration points
  • Provide context and considerations (not step-by-step instructions)
  • Leave implementation details flexible
  • Flag questions to resolve during execution

Success Criteria:

  • Minimum Viable Success (must achieve for milestone completion)
  • Complete Success (ideal outcome including polish)

Risk Mitigation: Specific unknowns to be resolved in this milestone

Deferred Items: What's intentionally left out and target milestone for inclusion

Task Breakdown Guidelines

When breaking down tasks, provide guidance not prescription:

✓ Good Task Definition (outcome-focused):

  • Goal: "Enable users to authenticate securely"
  • Constraints: "Must integrate with existing session middleware; <100ms response time"
  • Guidance: "Consider session vs. token auth; review existing patterns in src/middleware/"
  • Validation: "Users can log in, sessions persist, tests pass"

✗ Poor Task Definition (overly prescriptive):

  • Step 1: "Create file auth.js with bcrypt import"
  • Step 2: "Write hashPassword function using bcrypt.hash with 10 rounds"
  • Step 3: "Create Express middleware checking req.session.userId"

Why: Good definitions let the implementer choose the best approach based on what they learn. Poor definitions lock in choices before understanding the context, often leading to rework.

Example Milestone Definition

Goal: Validate user authentication and basic data retrieval from external API

Core Tasks:

  1. Implement OAuth flow with provider
  2. Create user session management
  3. Build API client with error handling
  4. Add basic user profile display

Success Criteria:

  • Minimum: Users can log in and see their profile data
  • Complete: Include profile editing and session persistence

Risk Mitigation: Confirm API rate limits and response time under load

Deferred: Advanced profile features, password reset flow (Milestone 3)

Phase 3: Implementation Strategy

Development Approach

  • Prototype First: Build throwaway versions to test risky assumptions
  • Core Before Polish: Implement functional features before UI refinements
  • Integration Early: Test external system connections in first milestone
  • Measure Continuously: Track performance and user metrics from day one

Technology Selection Criteria

  1. Team Expertise: Prefer technologies your team knows well
  2. Proven Reliability: Choose mature, battle-tested options for core systems
  3. Integration Capability: Ensure compatibility with existing tools/systems
  4. Scalability Path: Technology should support anticipated growth

Quality Gates

  • All code must have basic test coverage
  • Performance benchmarks must be met for core user journeys
  • Security review required for authentication and data handling
  • Accessibility standards met for user-facing features

Phase 4: Execution Framework

Sprint Planning

  1. Risk Assessment: Identify unknowns in upcoming work
  2. Exploration Time: Reserve 20-30% of sprint for prototyping/learning
  3. Definition of Done: Must include working functionality, not just completed code
  4. Continuous Validation: Regular stakeholder feedback on core user journeys

Deferral Management

  • Regular Review: Evaluate deferred items each milestone for continued relevance
  • Categories: Technical debt, UX polish, edge cases, performance optimization, advanced features
  • Scheduling: Plan deferred items into appropriate future milestones
  • Elimination: Some deferred items may become unnecessary

Documentation Requirements

  • Technical specification focusing on deliverable outcomes
  • Risk register with mitigation plans
  • Deferred items registry with target scheduling
  • Architecture decision records for major choices

Decision Framework for Agents

IF project has unknown technical feasibility → Schedule proof-of-concept in Milestone 1 IF project requires external integrations → Test minimal integration in first milestone IF project has performance requirements → Establish benchmarks and test core algorithms early IF team lacks expertise in chosen technology → Include learning/exploration time in early milestones IF project has tight deadlines → Focus on minimum viable success criteria and defer polish IF project is greenfield → Spend extra time on architecture decisions and foundational setup IF project is enhancement → Focus on integration points and backward compatibility

When Unclear - Ask These Questions

WHEN requirements are vague → "What specific user problem does this solve? How will we measure success?" WHEN technical scope is undefined → "What are the must-have vs. nice-to-have technical capabilities?" WHEN timeline is unrealistic → "What are the non-negotiable deadlines and what flexibility exists?" WHEN team capabilities are unknown → "What technologies does the team have experience with? What are the skill gaps?" WHEN integration points are unclear → "What existing systems must this connect to? What are the data formats and API constraints?" WHEN performance needs are unspecified → "What are the expected user loads and response time requirements?" WHEN success criteria are missing → "How will we know this milestone is complete and successful?"

Common Pitfalls to Avoid

  • Making assumptions instead of asking clarifying questions when requirements are unclear
  • Proceeding with incomplete information rather than requesting necessary details
  • Creating overly prescriptive task definitions with step-by-step instructions instead of outcome-focused guidance
  • Making implementation decisions too early when they could be deferred to execution
  • Spending time on low-risk features while deferring critical unknowns
  • Over-engineering solutions before validating core assumptions
  • Planning implementation details instead of focusing on deliverable outcomes
  • Guessing at user needs instead of understanding specific problems being solved
  • Failing to document deferral decisions and rationale
  • Optimizing prematurely instead of proving core functionality first
  • Locking in technology choices before understanding the full context

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

31.04%
按下载量换算67

Antigravity

20.79%
按下载量换算45

trae

17.24%
按下载量换算37

windsurf

11.78%
按下载量换算25

Codex

8.4%
按下载量换算18

OpenCode

3.46%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills