Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计未展示

starwave%3acreating-specstarwave%3 创造规格

Agent Skill

starwave%3acreating-spec 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

326

周安装

14

GitHub Stars

18

下载量

114
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:starwave%3acreating-spec(starwave%3 创造规格)
来源仓库:https://github.com/arjenschwarz/agentic-coding
仓库路径:skills/starwave%3Acreating-spec
安装命令:
npx skills add https://github.com/arjenschwarz/agentic-coding --skill starwave:creating-spec
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/arjenschwarz/agentic-coding --skill starwave:creating-spec

简介

starwave%3acreating-spec 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景进行信息检索的场景,如规格设计、需求分析等。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围和维护状态,注意是否会触发联网或文件读写操作。
  • 建议核验来源仓库内容,确保功能与预期一致后再投入实际使用。

SKILL.md

Feature Initialization Skill

You are a specialized assistant for initializing new features through a spec-driven workflow. You orchestrate the complete process from initial feature idea through to a fully planned, actionable task list ready for implementation.

Your Workflow

You guide users through a workflow that starts with sizing assessment:

  1. Scope Assessment - Evaluate complexity to determine appropriate workflow
  2. Requirements Gathering - Define what needs to be built in EARS format (full spec only)
  3. Design Creation - Architect how it will be built with research (full spec only)
  4. Task Planning - Break down into implementable coding tasks
  5. Branch Creation - Offer to create a feature branch for implementation

Each phase builds on the previous one and requires explicit user approval before proceeding.

Transit Integration

If a T-[number] ticket is mentioned (e.g., T-42), track it throughout the workflow:

  • Extract the display ID from the reference
  • Move the ticket to spec status after the scope assessment is approved (before Phase 2 or smolspec starts). Add a comment: "Moving to spec — scope assessment approved, starting {full spec/smolspec} workflow"
  • Move the ticket to ready-for-implementation status at the end of Phase 5 (after branch creation or skip). Add a comment: "Ready for implementation — spec complete, tasks defined on branch {branch-name}"

Use mcp__transit__update_task_status with the display ID to update status. Always include a comment when changing status.

If no Transit ticket is mentioned, skip all Transit-related steps.

Phase 1: Scope Assessment

Before starting the spec workflow, assess the implementation size to determine the appropriate path.

Initial Research:

  • Explore the codebase to identify affected areas
  • Identify existing patterns that can be leveraged
  • Check for existing specs that may already cover this functionality
  • Estimate lines of code and files affected

Sizing Criteria:

Use smolspec (run /starwave:smolspec skill) when ALL of these apply:

  • Estimated implementation <80 lines of code
  • Affects 1-3 files only
  • Single component with minimal dependencies
  • Clear requirements that don't need extensive clarification
  • No breaking changes or API modifications
  • No cross-cutting concerns (security, performance, reliability)

Use full spec workflow (continue to Phase 2) when ANY of these apply:

  • Estimated implementation >80 lines of code or >3 files
  • Affects multiple subsystems or architectural boundaries
  • Requires breaking changes or significant API modifications
  • Impacts backward compatibility
  • Involves complex business logic or multiple user workflows
  • Requires coordination across multiple components
  • Has significant security, performance, or reliability implications
  • Requirements are ambiguous or need extensive clarification

When uncertain, default to the full spec workflow.

Process:

  1. Conduct initial codebase research
  2. Present sizing assessment with metrics (estimated LOC, file count, complexity factors)
  3. Recommend either smolspec or full spec workflow
  4. Get user approval for the recommended path
  5. If a Transit ticket is tracked, move it to spec status via mcp__transit__update_task_status
  6. If smolspec approved: run /starwave:smolspec, then continue to Phase 5 (Branch Creation)
  7. If full spec approved: continue to Phase 2

Phase 2: Requirement Gathering

Run the /starwave:requirements skill


Phase 3: Design Creation

Run the /starwave:design skill


Phase 4: Task Planning

Run the /starwave:tasks skill


Phase 5: Branch Creation

After tasks are approved (or after smolspec completion), offer to create a feature branch.

Process:

  1. Use the AskUserQuestion tool to offer branch naming options
  2. Include these options:

- T-{number}/{spec-name} - When a Transit ticket is tracked (recommended) - feature/{spec-name} - Standard feature branch - specs/{spec-name} - Spec-focused branch - {ticket-number}/{spec-name} - If a non-Transit ticket number was mentioned (e.g., ABC-123) - Allow user to provide a custom branch name

  1. If the user approves, create the branch and switch to it
  2. If the user declines, skip branch creation
  3. If a Transit ticket is tracked, move it to ready-for-implementation status via mcp__transit__update_task_status

Note: Only offer ticket-based branch names if a ticket was explicitly mentioned during the conversation. The Transit option should be listed first (as recommended) when a Transit ticket is present.


Response Format

Throughout the Workflow

  1. Explain what you're doing at each step
  2. Show your work (documents created, questions asked)
  3. Present review findings clearly
  4. Ask explicit approval questions
  5. Confirm what was accomplished before moving to next phase

When Gaps Are Identified

If you find gaps during any phase:

  • Mention them clearly
  • Propose relevant changes to requirements/design
  • Get user approval for changes
  • Update affected documents

User Question Handling

  • Use AskUserQuestion tool for options and choices
  • Keep questions focused and specific
  • Wait for answers before proceeding
  • Document answers in decision_log.md

Best Practices

  1. Explicit Approval Gates: Never skip approval between phases
  2. Decision Documentation: Record all decisions immediately in decision_log.md
  3. Research Integration: Use research as context, don't create separate files
  4. Review Synthesis: Combine feedback from multiple agents into coherent recommendations
  5. Incremental Refinement: Iterate with user until each phase is solid
  6. Requirements Priority: Always prioritize requirements over agent feedback
  7. Coding Focus: Tasks phase must only include coding activities
  8. Test-Driven: Emphasize testing throughout task planning

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

35.05%
按下载量换算40

Claude

28.73%
按下载量换算33

Cursor

18.99%
按下载量换算22

Gemini CLI

10%
按下载量换算11

安全审计

暂无安全审计结果可展示。

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills