一键导入
rule-creator
Create and format agent rules with proper front matter in the workspace
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create and format agent rules with proper front matter in the workspace
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Perform a read-only code review on a pull request.
Download and analyze a CI failure log to construct an actionable suggested fix plan and report back
Gets buildkite build results
Retry a failed build kite job
Monitor remote CI results for a PR and autonomously trigger log analysis upon failures
| name | rule-creator |
| description | Create and format agent rules with proper front matter in the workspace |
Use this skill when you need to create a new rule for the agent in the workspace.
All workspace-specific rules must be created as individual Markdown files under
the .agents/rules/ directory:
.agents/rules/<rule-name>.md
Every rule file must start with a YAML front matter block defining the trigger condition, followed by the rule content in Markdown.
---
trigger: <trigger-condition>
---
# <Rule Title>
<Rule description and directives...>
always_on: The rule is always active and must be followed for all tasks.To create a rule that prevents adding copyrights:
---
trigger: always_on
---
# No Copyrights Rule
Unless directed by the user otherwise, do not add Bazel copyright to new or
existing files.