con un clic
rule-creator
Create and format agent rules with proper front matter in the workspace
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Create and format agent rules with proper front matter in the workspace
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional 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.