Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计提醒

spec-builder规格构建者

Agent Skill

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

总安装

376

周安装

16

GitHub Stars

9

下载量

132
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/adaptationio/skrillz --skill spec-builder

简介

spec-builder 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 使用前需确认权限范围、维护状态及是否触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Spec Builder

Transforms vague ideas into detailed specifications for autonomous coding.

Takes users through guided discovery to create complete, actionable specs ready for autonomous start:.

Quick Start

Start Spec Building

I want to build a todo app

or

build spec: project management tool

or

help me define what I want to build

How It Works

┌─────────────────────────────────────────────────────────────────┐
│                      SPEC BUILDER FLOW                          │
├─────────────────────────────────────────────────────────────────┤
│                                                                  │
│  USER INPUT                                                      │
│  "I want to build something like Notion"                        │
│                         │                                        │
│                         ▼                                        │
│  ┌─────────────────────────────────────────────────────────┐    │
│  │  PHASE 1: DISCOVERY                                      │    │
│  │                                                          │    │
│  │  Q1: What type of application?                          │    │
│  │      → Workspace/productivity app                       │    │
│  │                                                          │    │
│  │  Q2: Who are the target users?                          │    │
│  │      → Teams and individuals                            │    │
│  │                                                          │    │
│  │  Q3: What are the 3-5 core features?                    │    │
│  │      → Pages, Editor, Collaboration, Search             │    │
│  │                                                          │    │
│  │  Q4: Any technology preferences?                        │    │
│  │      → Modern stack, real-time                          │    │
│  │                                                          │    │
│  │  Q5: Any constraints or requirements?                   │    │
│  │      → Must be self-hostable                            │    │
│  └─────────────────────────────────────────────────────────┘    │
│                         │                                        │
│                         ▼                                        │
│  ┌─────────────────────────────────────────────────────────┐    │
│  │  PHASE 2: ELABORATION                                    │    │
│  │                                                          │    │
│  │  For each core feature, expand:                         │    │
│  │  • Sub-features                                         │    │
│  │  • User stories                                         │    │
│  │  • Edge cases                                           │    │
│  │  • Integrations                                         │    │
│  │                                                          │    │
│  │  Pages:                                                  │    │
│  │  ├─ Hierarchical structure                              │    │
│  │  ├─ Page templates                                      │    │
│  │  ├─ Page sharing                                        │    │
│  │  └─ Page history/versioning                             │    │
│  └─────────────────────────────────────────────────────────┘    │
│                         │                                        │
│                         ▼                                        │
│  ┌─────────────────────────────────────────────────────────┐    │
│  │  PHASE 3: TECHNOLOGY RECOMMENDATION                      │    │
│  │                                                          │    │
│  │  Based on requirements, suggest:                        │    │
│  │  • Frontend: Next.js + TypeScript                       │    │
│  │  • Editor: Tiptap or Slate                              │    │
│  │  • Backend: Node.js + Prisma                            │    │
│  │  • Database: PostgreSQL                                 │    │
│  │  • Real-time: Socket.io or Liveblocks                   │    │
│  │  • Hosting: Vercel + Railway                            │    │
│  └─────────────────────────────────────────────────────────┘    │
│                         │                                        │
│                         ▼                                        │
│  ┌─────────────────────────────────────────────────────────┐    │
│  │  PHASE 4: SPECIFICATION OUTPUT                           │    │
│  │                                                          │    │
│  │  Generate complete spec ready for autonomous-master:    │    │
│  │                                                          │    │
│  │  ┌────────────────────────────────────────────────────┐ │    │
│  │  │ autonomous start: Build a collaborative workspace  │ │    │
│  │  │ application similar to Notion with:                │ │    │
│  │  │                                                    │ │    │
│  │  │ CORE FEATURES:                                     │ │    │
│  │  │ - Hierarchical pages with drag-and-drop           │ │    │
│  │  │ - Rich text editor with block-based content       │ │    │
│  │  │ - Real-time collaboration (multiple cursors)      │ │    │
│  │  │ - Full-text search across all content             │ │    │
│  │  │ - Sharing with granular permissions               │ │    │
│  │  │ ...                                               │ │    │
│  │  │                                                    │ │    │
│  │  │ TECHNOLOGY STACK:                                  │ │    │
│  │  │ - Next.js 14 with App Router                      │ │    │
│  │  │ - TypeScript                                       │ │    │
│  │  │ - Tiptap for rich text editor                     │ │    │
│  │  │ - Prisma + PostgreSQL                             │ │    │
│  │  │ - Socket.io for real-time                         │ │    │
│  │  └────────────────────────────────────────────────────┘ │    │
│  └─────────────────────────────────────────────────────────┘    │
│                         │                                        │
│                         ▼                                        │
│                  Ready for autonomous-master!                    │
│                                                                  │
└─────────────────────────────────────────────────────────────────┘

Discovery Questions

Core Questions (Always Asked)

#QuestionPurpose
1What type of application?Categorize (web, mobile, API, etc.)
2Who are the users?Define audience and scale
3What are 3-5 core features?Identify must-haves
4Technology preferences?Constrain or open stack choices
5Any constraints?Budget, timeline, integrations

Follow-up Questions (Based on Answers)

TriggerFollow-up
"authentication" mentionedOAuth providers? SSO? MFA?
"payments" mentionedStripe? Subscriptions? One-time?
"real-time" mentionedChat? Notifications? Collaboration?
"mobile" mentionedNative? PWA? React Native?
"API" mentionedREST? GraphQL? Who consumes it?

Project Templates

Quick-start templates for common project types:

SaaS Application

Template: saas
Includes:
- User auth with multi-tenancy
- Subscription billing
- Admin dashboard
- User settings
- API access

E-Commerce

Template: ecommerce
Includes:
- Product catalog
- Shopping cart
- Checkout flow
- Order management
- Inventory tracking

Social Platform

Template: social
Includes:
- User profiles
- Posts/content feed
- Likes/comments
- Follow system
- Notifications

Internal Tool

Template: internal
Includes:
- SSO authentication
- Role-based access
- Data tables/CRUD
- Reports/dashboards
- Audit logging

Usage Examples

Example 1: Vague Idea

User: I want to build a todo app

Spec Builder: I'll help you define your todo app. Let me ask a few questions:

1. Who will use this? (personal, team, enterprise)
2. What makes it different from existing todo apps?
3. Any specific features you need? (recurring tasks, collaboration, etc.)
4. Web only or also mobile?

[After Q&A]

Generated Spec:
autonomous start: Build a collaborative task management app with:
- User authentication (email + Google OAuth)
- Personal and shared task lists
- Tasks with due dates, priorities, and labels
- Subtasks and checklists
- Recurring task support
- Real-time collaboration
- Mobile-responsive design
- Push notifications for due dates
Use Next.js, TypeScript, Prisma, PostgreSQL, and Tailwind CSS.

Example 2: Clear Vision

User: build spec: Uber for dog walking

Spec Builder: Great concept! Let me clarify the specifics:

1. Two-sided marketplace (walkers + dog owners)?
2. Real-time tracking during walks?
3. Payment processing?
4. Scheduling (on-demand, recurring)?
5. Geographic scope?

[After Q&A]

Generated Spec:
autonomous start: Build an on-demand dog walking marketplace with:

DOG OWNER FEATURES:
- Registration with dog profiles
- Search nearby walkers with ratings
- Book on-demand or schedule recurring
- Real-time GPS tracking during walks
- In-app messaging with walkers
- Payment with saved cards
- Walk history and reports

WALKER FEATURES:
- Walker onboarding with background check
- Set availability and service area
- Accept/decline walk requests
- GPS tracking and walk logging
- Earnings dashboard
- Direct deposit payouts

ADMIN FEATURES:
- User management
- Dispute resolution
- Analytics dashboard

Use React Native (iOS + Android), Node.js, PostgreSQL,
Stripe Connect, Google Maps API, and Firebase for real-time.

Integration with Autonomous-Master

After generating a spec:

┌─────────────────┐
│  SPEC-BUILDER   │
│                 │
│  [Generated     │
│   Spec]         │
└────────┬────────┘
         │
         │ Copy or auto-invoke
         ▼
┌─────────────────┐
│AUTONOMOUS-MASTER│
│                 │
│ autonomous      │
│ start: [spec]   │
└─────────────────┘

Scripts

  • scripts/spec_builder.py - Core discovery engine
  • scripts/question_engine.py - Dynamic question generation
  • scripts/template_expander.py - Template expansion
  • scripts/tech_recommender.py - Technology recommendations
  • scripts/spec_formatter.py - Format final specification

References

  • references/QUESTION-BANK.md - All discovery questions
  • references/TEMPLATES.md - Project templates
  • references/TECH-STACKS.md - Technology recommendations

Templates

  • templates/saas.md - SaaS application template
  • templates/ecommerce.md - E-commerce template
  • templates/social.md - Social platform template
  • templates/internal.md - Internal tool template

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

github-copilot

24.47%
按下载量换算32

Claude Code

22.8%
按下载量换算30

mcpjam

18.69%
按下载量换算25

moltbot

11.17%
按下载量换算15

windsurf

7.72%
按下载量换算10

zencoder

3.37%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills