بنقرة واحدة
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.