Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

agent-add-ruleAgent 添加规则

Agent Skill

agent-add-rule 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

588

周安装

24

GitHub Stars

13

下载量

190
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ravnhq/ai-toolkit --skill agent-add-rule

简介

用于在渐进披露结构中添加新规则或约定,优化 Agent 指令布局。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中管理静态与动态指令层级。
  • 根据现有结构分析位置,将规则插入 root CLAUDE.md、docs/agents/ 或 skills 中。
  • 使用时应避免重复,确保规则归属正确上下文层级。
  • agent-add-rule 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Add Rule — Place Agent Instructions Correctly

Add a new rule or convention to the right location in the progressive disclosure structure.

Context Spectrum

Static (root CLAUDE.md)      — loaded every conversation. Token cost paid on every conversation.
Semi-dynamic (docs/agents/)  — linked from root. Token cost paid only when Claude reads it.
Fully dynamic (skills)       — metadata only in context. Token cost paid only when triggered.

Workflow

Step 1: Ask

Ask the user: "What rule or convention do you want to add?"

Accept free text. If the user already provided it (e.g., /agent-add-rule always use snake_case for database columns), skip this step.

Step 2: Analyze Current Structure

Read:

  • Root CLAUDE.md
  • List files in docs/agents/
  • List available skills

Understand what already exists so you don't duplicate or contradict.

Step 3: Classify

Apply this decision tree:

Does the agent consistently get this wrong WITHOUT being told?
├── NO → Skip. The rule costs tokens and is not needed.
│
├── YES → Does it apply to EVERY task?
│   ├── YES → Root CLAUDE.md (static)
│   │         Examples: package manager, multi-tenancy, project scripts
│   │
│   └── NO → docs/agents/ file (semi-dynamic)
│             Examples: lint rules, test thresholds, API conventions
│
└── Is it a repeatable workflow or procedural knowledge?
    ├── YES → Skill (fully dynamic)
    │         Examples: deployment process, PR review checklist, migration procedure
    │
    └── NO → Skip. The rule is not needed.

Key questions to ask the user:

  1. "Does the agent consistently get this wrong?" — If no, consider skipping
  2. "Does this apply to every task or just some?" — Static vs semi-dynamic
  3. "Is this a rule or a workflow?" — docs/agents/ vs skill
  4. "Will this change frequently?" — Skills are easier to evolve independently

Step 4: Recommend

Present the recommended placement with reasoning:

Recommendation: Add to docs/agents/guardrails.md

Reasoning:
- This is a data handling rule, not a universal workflow rule
- It applies only when working with the database
- guardrails.md already covers data isolation patterns
- Adding to root would cost tokens on every conversation unnecessarily

Step 5: Confirm

Ask the user to confirm or override. If they override, respect their choice but note the trade-off:

  • Moving to root: "This adds 1-3 lines to every conversation's context"
  • Moving to docs/agents/: "This is visible only when explicitly linked and read"
  • Moving to skill: "This loads only when the skill is triggered by a matching keyword"

Step 6: Write

Based on confirmed placement:

If root CLAUDE.md:

  • Add the rule under the appropriate section (Key Rules, Workflow, etc.)
  • This adds 1-2 lines to every conversation's context
  • Keep it concise — 1-2 lines max

If existing docs/agents/ file:

  • Read the target file
  • Add the rule under the appropriate section
  • Keep consistent formatting with existing content

If new docs/agents/ file:

  • Create the file with a clear heading and the rule
  • Update root CLAUDE.md links section with a new entry including routing signal
  • Example: - API Conventions (docs/agents/api-conventions.md) — REST patterns, error response format, pagination

If skill:

  • Tell the user to run /agent-skill-creator to scaffold it
  • Provide the rule content as input for the skill body

Examples

Example 1: Universal Rule → Root

User: "Always use pnpm, never npm"

Classification: Agent gets this wrong without being told + applies to every task → Root

Action: Add to Key Rules section in CLAUDE.md

Example 2: Topic-Specific Rule → docs/agents/

User: "API responses must always include a requestId field"

Classification: Agent sometimes misses this + only applies to API work → Semi-dynamic

Action: Add to docs/agents/guardrails.md or create docs/agents/api-conventions.md

Example 3: Complex Workflow → Skill

User: "When deploying, always run migrations first, then build, then deploy to staging, verify, then production"

Classification: Repeatable multi-step procedure → Fully dynamic (skill)

Action: Suggest /agent-skill-creator to create a deployment skill

Example 4: Unnecessary Rule → Challenge

User: "Always use const instead of let"

Classification: ESLint already enforces this → Not needed

Response: "ESLint already enforces this via the prefer-const rule. Adding it to agent instructions would cost tokens without benefit. Skip?"

Positive Trigger

User: "Add a new convention that API responses must include a request ID and put it in the right agent config location."

Expected behavior: Use agent-add-rule guidance to classify placement, confirm with the user, and apply the rule in the appropriate location.

Non-Trigger

User: "Implement a feature flag system for staged rollouts in our backend service."

Expected behavior: Do not prioritize agent-add-rule; use an implementation-focused skill/workflow instead.

Principles

  • Validate necessity: Every rule costs tokens. Only add rules the agent consistently gets wrong without being told.
  • No duplication: If ESLint, TypeScript, or another tool already enforces it, don't add it
  • Routing signals matter: When adding to docs/agents/, update the root CLAUDE.md link description so Claude knows when to follow it
  • One level deep: Never cross-reference between docs/agents/ files. All links go from root

Troubleshooting

Skill Does Not Trigger

  • Error: The skill is not selected when expected.
  • Cause: Request wording does not clearly match the description trigger conditions.
  • Solution: Rephrase with explicit domain/task keywords from the description and retry.

Guidance Conflicts With Another Skill

  • Error: Instructions from multiple skills conflict in one task.
  • Cause: Overlapping scope across loaded skills.
  • Solution: State which skill is authoritative for the current step and apply that workflow first.

Output Is Too Generic

  • Error: Result lacks concrete, actionable detail.
  • Cause: Task input omitted context, constraints, or target format.
  • Solution: Add specific constraints (environment, scope, format, success criteria) and rerun.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.07%
按下载量换算61

Claude

29.36%
按下载量换算56

Cursor

19.73%
按下载量换算37

Gemini CLI

8.92%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills