# Add to your Claude Code skills
git clone https://github.com/dceoy/speckit-agent-skillsGuides for using ai agents skills like speckit-agent-skills.
Last scanned: 6/13/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-06-13T07:46:47.424Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}See how speckit-agent-skills compares with popular alternatives.
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 132 GitHub stars.
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.
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).
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.
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.
No comments yet. Be the first to share your thoughts!
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
See comparison
Agent skills and generated runtime entry points for Spec Kit.
This repository tracks the current Spec Kit output together with a small set of repository-specific 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/skills/..github/agents/ and .github/prompts/..opencode/commands/..gemini/commands/ remains checked in, but Gemini is not part of the current CI regeneration set..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.
The repository CI currently runs specify init --integration for:
codexagycursor-agentcopilotopencodeclaudeThe generated files are therefore not all stored in the same layout:
| Runtime / integration | Repository path | Role |
|---|---|---|
Agent Skills (agy) |
skills/ |
Shared Spec Kit skills |
| Claude Code | .claude/skills -> ../skills |
Shared skills exposed to Claude Code |
| Codex CLI | .agents/skills -> ../skills |
Shared 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.
Clone this repository.
git clone https://github.com/dceoy/speckit-agent-skills.git
cd speckit-agent-skills
Install Spec Kit.
Initialize a target project with the Spec Kit integration appropriate for your agent.
specify init --here --integration <integration>
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/
Invoke the relevant speckit-* skill or runtime command from your agent.
The main Spec-Driven Development flow in this repository is:
tasks.md.Additional utilities include Checklist for requirements-quality checks and Tasks to Issues for converting generated tasks into GitHub issues.
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
The current shared speckit-* set includes:
speckit-analyzespeckit-baselinespeckit-checklistspeckit-clarifyspeckit-constitutionspeckit-convergespeckit-implementspeckit-planspeckit-specifyspeckit-tasksspeckit-taskstoissuesMost 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.
claude-command-converter - Repository-specific utility for converting Claude command content into Agent Skill format..
├── 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
.github/workflows/ci.yml calls .github/workflows/speckit-init.yml. The workflow:
specify --version in VERSION.md,VERSION.md is unchanged,specify init --force --here --ignore-agent-tools --script sh --integration for the configured integrations,Treat manifest-managed runtime files as generated output. Prefer changing the integration configuration or repository-specific skills instead of manually maintaining generated copies.
Install and authenticate only the runtime tools you intend to use, plus Spec Kit itself.
.claude/skills..agents/skills..cursor/skills/..github/agents/ and .github/prompts/..opencode/commands/..gemini/commands/, but those files are outside the current regeneration set.SKILL.md and verify the required Spec Kit project structure and prerequisites.--json when available.See LICENSE for details.