speckit-agent-skills

作者 dceoy已验证

Agent skills for Spec Kit

126
Stars
26
Forks
Shell
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/dceoy/speckit-agent-skills

快速入门

使用 speckit-agent-skills 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

speckit-agent-skills

Agent skills and generated runtime entry points for Spec Kit.

Overview

This repository tracks the current Spec Kit output together with a small set of repository-specific skills.

  • Shared Agent Skills - skills/ contains the shared speckit-* skills plus repository-specific skills. Claude Code uses them through .claude/skills, while Codex CLI uses them through .agents/skills.
  • Cursor Agent - Spec Kit-generated skills live in .cursor/skills/.
  • GitHub Copilot CLI - Spec Kit-generated agents and prompt wrappers live in .github/agents/ and .github/prompts/.
  • OpenCode - Spec Kit-generated commands live in .opencode/commands/.
  • Gemini CLI - .gemini/commands/ remains checked in, but Gemini is not part of the current CI regeneration set.
  • Spec Kit infrastructure - .specify/ contains integration state, manifests, scripts, and templates used by the generated skills and commands.

The tracked Spec Kit version is recorded in VERSION.md. CI checks the latest Spec Kit release and regenerates outputs only when that version changes.

Current integration model

The repository CI currently runs specify init --integration for:

  • codex
  • agy
  • cursor-agent
  • copilot
  • opencode
  • claude

The generated files are therefore not all stored in the same layout:

Runtime / integrationRepository pathRole
Agent Skills (agy)skills/Shared Spec Kit skills
Claude Code.claude/skills -> ../skillsShared skills exposed to Claude Code
Codex CLI.agents/skills -> ../skillsShared skills exposed to Codex
Cursor Agent.cursor/skills/Cursor-specific generated skill copies
GitHub Copilot CLI.github/agents/, .github/prompts/Generated agents and prompt wrappers
OpenCode.opencode/commands/Generated commands
Gemini CLI.gemini/commands/Checked-in commands; not regenerated by the current CI configuration

Legacy layouts such as .claude/commands/, .codex/prompts/, and .opencode/command/ are intentionally not maintained.

Quickstart

  1. Clone this repository.

    git clone https://github.com/dceoy/speckit-agent-skills.git
    cd speckit-agent-skills
    
  2. Install Spec Kit.

  3. Initialize a target project with the Spec Kit integration appropriate for your agent.

    specify init --here --integration <integration>
    
  4. If the target runtime consumes Agent Skills directly, copy the required skills from skills/ into that project's skills directory when needed.

    cp -a skills/* /path/to/project/skills/
    
  5. Invoke the relevant speckit-* skill or runtime command from your agent.

Spec Kit workflow

The main Spec-Driven Development flow in this repository is:

  1. Constitution - Define project principles.
  2. Specify - Capture requirements for new work.
    • Or Baseline - Derive a specification from an existing codebase.
  3. Clarify (optional) - Resolve material ambiguities.
  4. Plan - Produce the implementation strategy.
  5. Tasks - Generate ordered work items.
  6. Analyze (optional) - Check consistency across the specification, plan, and tasks.
  7. Converge (optional) - Compare an existing implementation with the spec/plan/tasks and append remaining work to tasks.md.
  8. Implement - Execute the tasks.

Additional utilities include Checklist for requirements-quality checks and Tasks to Issues for converting generated tasks into GitHub issues.

Visual workflow

flowchart TD
  C0["speckit-constitution"] --> C1["speckit-specify"]
  C0 --> B["speckit-baseline"]
  C1 --> C2["speckit-plan"]
  B --> C2
  C2 --> C3["speckit-tasks"]
  C3 --> C4["speckit-implement"]

  C1 -.-> O1["speckit-clarify"]
  B -.-> O1
  O1 -.-> C2

  C3 -.-> O2["speckit-analyze"]
  O2 -.-> C4

  C3 -.-> O3["speckit-converge"]
  O3 -.-> C4

  C3 -.-> O4["speckit-taskstoissues"]

  C1 -.-> O5["speckit-checklist"]
  C2 -.-> O5
  C3 -.-> O5

Skills

Spec Kit skills

The current shared speckit-* set includes:

  • speckit-analyze
  • speckit-baseline
  • speckit-checklist
  • speckit-clarify
  • speckit-constitution
  • speckit-converge
  • speckit-implement
  • speckit-plan
  • speckit-specify
  • speckit-tasks
  • speckit-taskstoissues

Most Spec Kit-managed skills are tracked by the manifests in .specify/integrations/. speckit-baseline is a repository-specific skill for deriving specifications from existing code.

Utility skills

  • claude-command-converter - Repository-specific utility for converting Claude command content into Agent Skill format.

Structure

.
├── skills/                      # Shared and repository-specific Agent Skills
├── .agents/
│   └── skills -> ../skills      # Codex CLI access to shared skills
├── .claude/
│   └── skills -> ../skills      # Claude Code access to shared skills
├── .cursor/
│   └── skills/                  # Cursor Agent generated skills
├── .gemini/
│   └── commands/                # Checked-in Gemini commands
├── .github/
│   ├── agents/                  # GitHub Copilot generated agents
│   ├── prompts/                 # GitHub Copilot prompt wrappers
│   └── workflows/               # CI and Spec Kit regeneration workflows
├── .opencode/
│   └── commands/                # OpenCode generated commands
├── .specify/
│   ├── integrations/            # Integration manifests
│   ├── scripts/bash/            # Spec Kit helper scripts
│   ├── templates/               # Spec Kit templates
│   ├── init-options.json        # Last initialization options
│   └── integration.json         # Current integration state
├── .vscode/
│   └── settings.json            # Workspace settings
└── VERSION.md                   # Tracked Spec Kit version

Regeneration

.github/workflows/ci.yml calls .github/workflows/speckit-init.yml. The workflow:

  1. resolves the latest Spec Kit release,
  2. records specify --version in VERSION.md,
  3. skips regeneration when VERSION.md is unchanged,
  4. runs specify init --force --here --ignore-agent-tools --script sh --integration for the configured integrations,
  5. formats generated Markdown and JSON, and
  6. commits updated Spec Kit outputs when the tracked version changes.

Treat manifest-managed runtime files as generated output. Prefer changing the integration configuration or repository-specific skills instead of manually maintaining generated copies.

Prerequisites

Install and authenticate only the runtime tools you intend to use, plus Spec Kit itself.

  • Claude Code - Uses .claude/skills.
  • OpenAI Codex CLI - Uses .agents/skills.
  • Cursor Agent - Uses .cursor/skills/.
  • GitHub Copilot CLI - Uses .github/agents/ and .github/prompts/.
  • OpenCode - Uses .opencode/commands/.
  • Gemini CLI - Can use the checked-in .gemini/commands/, but those files are outside the current regeneration set.
  • Spec Kit - Install from github.com/github/spec-kit.

Usage notes

  • Skills do not always auto-run; use the runtime's skill invocation flow or request the skill explicitly.
  • If a skill fails, inspect its SKILL.md and verify the required Spec Kit project structure and prerequisites.
  • Run Spec Kit helper scripts from the repository root and prefer their structured output modes such as --json when available.
  • Do not restore legacy runtime layouts unless a currently supported Spec Kit integration starts generating them again.

License

See LICENSE for details.

常见问题

What is speckit-agent-skills?

speckit-agent-skills is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by dceoy. Agent skills for Spec Kit. It has 126 GitHub stars.

Is speckit-agent-skills safe to use?

Yes. speckit-agent-skills passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install speckit-agent-skills?

Clone the repository with "git clone https://github.com/dceoy/speckit-agent-skills" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is speckit-agent-skills written in?

speckit-agent-skills is primarily written in Shell. It is open-source under dceoy on GitHub, so you can review or fork the full source.

Are there alternatives to speckit-agent-skills?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh speckit-agent-skills against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情