经 AI Skill Hub 精选评估,agent-skills-standard Cursor规则 获评「强烈推荐」。这款Prompt模板在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.2 分,适合有一定技术背景的用户使用。
为AI Agent和编程提供标准化技能规范与最佳实践集合。支持Cursor规则配置,涵盖多语言和框架,帮助开发者构建高质量Agent系统和遵循业界标准的编程规范。
agent-skills-standard Cursor规则 是经过精心设计和反复验证的专业 Prompt 模板集合。这些 Prompt 框架能够有效激活 Claude、ChatGPT 等大型语言模型的深层能力,让 AI 生成更准确、更有价值的输出结果。无需任何安装,直接复制模板内容到 AI 对话框即可使用。
为AI Agent和编程提供标准化技能规范与最佳实践集合。支持Cursor规则配置,涵盖多语言和框架,帮助开发者构建高质量Agent系统和遵循业界标准的编程规范。
agent-skills-standard Cursor规则 是经过精心设计和反复验证的专业 Prompt 模板集合。这些 Prompt 框架能够有效激活 Claude、ChatGPT 等大型语言模型的深层能力,让 AI 生成更准确、更有价值的输出结果。无需任何安装,直接复制模板内容到 AI 对话框即可使用。
# Prompt 无需安装,直接复制使用 # 支持:Claude / ChatGPT / Gemini / 通义千问 等主流模型 # 使用步骤 # 1. 复制 Prompt 模板内容 # 2. 粘贴到 AI 对话框 # 3. 替换 [占位符] 为实际内容 # 4. 发送后获取结构化输出 # 获取原始文件 git clone https://github.com/HoangNguyen0403/agent-skills-standard
# 粘贴到 Claude/ChatGPT 使用 # 示例 Prompt 结构: 你是一位 [角色],擅长 [领域]。 请根据以下要求完成任务: 任务背景:[描述背景] 具体要求:[详细说明] 输出格式:[期望格式] # 将 [] 内内容替换为实际需求
# agent-skills-standard 配置说明 # 查看配置选项 agent-skills-standard --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export AGENT_SKILLS_STANDARD_CONFIG="/path/to/config.yml"
The portable SDLC standards layer for AI coding agents. Sync once, then work in your own runtime.
Current release: v2.5.1 — trust-gated review workflows, markdown-first security handoff, and expanded framework/database guidance for SDLC delivery.
271 ready-to-use coding standards for Cursor, Claude Code, GitHub Copilot, Gemini, Windsurf, Trae, Kiro, Roo and more — synced, versioned, and optimized to use 85% fewer tokens than traditional prompt engineering.
```bash npx agent-skills-standard@latest init npx agent-skills-standard@latest sync
Picture a developer in Cursor or Claude Code asking:
"Add a POST /orders endpoint that validates the body and returns 201."
Here's what happens with the MCP, step by step.
The CLI distributes skills to disk. The companion MCP server serves them to your AI agent at runtime as explicit tool calls — closing the gap where agents read AGENTS.md but forget to load matched SKILL.md files (especially in sub-agents).
init and sync ask once whether to enable MCP and at what scope. Three choices, recommended in bold:
| Scope | What gets written | Touches $HOME? |
|---|---|---|
**project** (recommended) | ./mcp-config-snippets/*.json + project-scoped runtime configs (./.mcp.json, ./.cursor/mcp.json, etc.) | ❌ No |
user | All of project + user-home configs (~/.cursor/mcp.json, ~/.gemini/settings.json) | ⚠️ Yes — sync prompts before each user-scope write |
snippets-only | Only ./mcp-config-snippets/*.json — never edits any runtime config | ❌ No |
disabled | Nothing MCP-related | ❌ No |
The CLI never reads or modifies user-home files unless you explicitly choose user scope AND confirm each write. All decisions are recorded in .skillsrc so you're not re-prompted on every sync.
mcp subcommandags mcp status # Show enabled, scope, and per-agent install state
ags mcp enable # Turn on (uses configured scope)
ags mcp disable # Turn off (existing entries kept; use uninstall to clean)
ags mcp scope project # Change scope: project | user | snippets-only | disabled
ags mcp install # One-shot install at the configured scope
ags mcp uninstall --from=all # Remove our entry from project + user configs
ags mcp snippets # Regenerate ./mcp-config-snippets/ without touching configs
Or edit .skillsrc directly:
mcp:
enabled: true
scope: project # project | user | snippets-only | disabled
prompted: true # set to false to be re-asked next sync
Add to your runtime's MCP config:
{
"mcpServers": {
"agent-skills-standard": {
"command": "npx",
"args": ["-y", "agent-skills-standard-mcp"],
},
},
}
Now any sub-agent in any runtime can call load_skills_for_files, audit_session_compliance, etc. Works in Claude Code, Cursor, Antigravity, Kiro, Continue, Gemini CLI — anywhere MCP is supported. Full setup: mcp/README.md.
| Layer | Tool | Runs when | Purpose |
|---|---|---|---|
| **Distribution** | agent-skills-standard (CLI) | Manually, before AI session | Fetches & writes SKILL.md files; generates AGENTS.md + _INDEX.md |
| **Runtime / Enforcement** | agent-skills-standard-mcp (MCP) | Auto-launched by the AI runtime | Serves matched SKILL.md to live agents on demand; provides audit log |
Use both when you want enforcement receipts: the CLI installs the rules, the MCP makes sure agents load them.
---
The .skillsrc file controls what gets synced:
```yaml registry: https://github.com/HoangNguyen0403/agent-skills-standard agents: [cursor, copilot, claude, gemini]
ags feedback```
If ags -V still shows an old version after reinstalling, check your PATH order. ~/Library/pnpm must come before ~/Library/pnpm/bin, then run hash -r and verify with ags -V again.
---
The registry now ships a compact lifecycle that agents can run natively after sync:
| Stage | Synced Workflow | Output |
|---|---|---|
| Route | sdlc | next workflow and blockers |
| Brainstorm | brainstorm-feature | product-brief.md |
| Plan | plan-feature | PRD, decisions, task slices |
| Design | design-solution | architecture, contracts, ADR |
| Readiness | implementation-readiness | go/no-go before code |
| Build | implement-feature / dev-fix | implementation handoff |
| Review | review-ticket | multi-lens PR/ticket verdict |
| Verify | verify-work / verify-bug | walkthrough.md evidence |
| Security | pentest / security-test | hacker report, PoC, SAST logs |
workflows:
- sdlc
- brainstorm-feature
- plan-feature
- design-solution
- implement-feature
- verify-work
- pentest
- security-test
- deploy-release
- publish-notes
- retro-learn
Workflows sync to the native surface for each selected agent. Keep .agents/workflows as the canonical source in this registry; Codex receives generated workflow skills under .codex/skills/<workflow>/SKILL.md.
---
<details> <summary><b>Does this work with Cursor, Claude Code, Copilot, Gemini?</b></summary> <br> Yes — all of them, plus Windsurf, Trae, Kiro, Roo, and Antigravity. The CLI generates each agent's native format automatically. No plugin needed. </details>
<details> <summary><b>How is this different from .cursorrules or system prompts?</b></summary> <br> <code>.cursorrules</code> and system prompts are static — one big file that the AI reads every time, wasting context. Agent Skills Standard uses <b>hierarchical on-demand loading</b>: the AI only reads the specific skills relevant to what you're editing right now. This saves ~86% of tokens and scales to 237+ skills without performance loss. </details>
<details> <summary><b>Will it overwrite my custom rules?</b></summary> <br> No. Use <code>custom_overrides</code> in your <code>.skillsrc</code> to protect any files you've customized locally. The CLI will skip them during sync. </details>
<details> <summary><b>How do I add my own skills?</b></summary> <br> Create a <code>SKILL.md</code> file in your agent's skills directory (e.g., <code>.cursor/skills/my-custom/SKILL.md</code>). It will be automatically included in the index on the next sync. For contributing to the public registry, see below. </details>
<details> <summary><b>What about token costs?</b></summary> <br> Each skill averages ~500 tokens (vs ~3,600 for a typical architect prompt). The hierarchical index adds only ~25 lines of scanning overhead per edit. Teams report <b>86% reduction</b> in prompt-related token usage. </details>
---
Agent Skills Standard 是一个旨在标准化 AI Agent 能力的规范协议。它通过定义统一的技能描述格式,帮助开发者为不同的 AI 助手提供一致的上下文与操作指令,从而提升 Agent 在复杂开发任务中的执行效率与准确度。
本项目通过集成 MCP (Model Context Protocol) 实现了强大的功能增强。当开发者在 Cursor 或 Claude Code 中下达如“添加 POST 接口”等指令时,系统能够通过 MCP 自动识别并加载对应的技能文件,将原本模糊的自然语言指令转化为精准的开发动作,实现从需求到代码实现的自动化闭环。
通过 Quick Start 快速上手。开发者可以使用 CLI 工具将标准化的技能(Skills)分发到本地磁盘,并配合 MCP server 在运行时将这些技能作为显式的 Tool Calls 提供给 AI Agent,确保 Agent 能够实时感知并调用最新的开发规范。
用户可以通过 `.skillsrc` 文件进行精细化配置,指定远程 Registry 地址以及需要同步的 Agent 列表(如 cursor, copilot, claude, gemini 等)。此外,系统支持通过 MCP server 开启运行时强制执行模式,并提供灵活的 Consent model(授权模型),允许开发者在 `init` 或 `sync` 阶段自主选择 MCP 的启用范围。
本项目提供的 CLI 工具专注于轻量化与隐私保护。它仅下载 Markdown 和 JSON 格式的文本数据,不包含任何遥测(Telemetry)数据采集,且不会将代码或项目数据传出本地机器。通过与 Public Registry 的交互,CLI 能够自动完成技能的获取与分发。
项目内置了完整的 SDLC(软件开发生命周期)工作流 spine。通过同步特定的 Workflow,Agent 可以原生运行从 Route、Brainstorm 到 Implement、Verify、Deploy 等全流程任务。开发者可以通过配置 `.agents/workflows` 作为权威源,让 AI 具备可移植的团队标准与工程化作业能力。
本项目完美兼容 Cursor、Claude Code、Copilot、Gemini 等主流 AI 工具,同时也支持 Windsurf、Trae、Roo 等新兴 Agent 环境。CLI 会根据不同 Agent 的特性自动生成其原生的配置格式,开发者无需安装额外的插件即可实现无缝集成。
aiskill88点评:高质量开源规范库,Stars稳定增长,适合Agent开发团队建立标准化流程,规范详尽实用性强。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
AI Skill Hub 点评:agent-skills-standard Cursor规则 的核心功能完整,质量优秀。对于内容创作者和自媒体人来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | agent-skills-standard |
| 原始描述 | 开源Cursor规则:A collection of Agent Skills Standard and Best Practice for Programming Language。⭐489 · TypeScript |
| Topics | Agent规范最佳实践Cursor规则TypeScript编程标准 |
| GitHub | https://github.com/HoangNguyen0403/agent-skills-standard |
| License | Apache-2.0 |
| 语言 | TypeScript |
收录时间:2026-05-13 · 更新时间:2026-05-16 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端