ワンクリックで
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.