Agent skill
install-rules
Install bluera-base rule templates into your project's .claude/rules/ directory
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/install-rules
SKILL.md
Install Rules
Install bluera-base coding standards as .claude/rules/ files in the current project.
Core Rules (always installed)
These rules are installed automatically:
- 00-base.md - Fail fast, strict typing, no commented code
- anti-patterns.md - NO fallback/deprecated/legacy/backward compatibility
- git.md - NO --no-verify, atomic commits
Optional Rules
Ask the user which optional rules to install:
- plugins/distribution.md - dist/ must be committed (Claude Code plugins only)
Workflow
- Check existing: Look for
.claude/rules/in project root - Ask about optional rules: Use AskUserQuestion for user-selectable rules
- Create directory:
mkdir -p .claude/rules/pluginsif needed - Install core rules: Copy 00-base.md, anti-patterns.md, git.md
- Install optional rules: Based on user selection
- Report: List installed files
Template Location
Templates are at: ${CLAUDE_PLUGIN_ROOT}/templates/claude/rules/
Installation
Read each template from ${CLAUDE_PLUGIN_ROOT}/templates/claude/rules/ and write to .claude/rules/ in the current project directory.
Do NOT install rules into the bluera-base plugin directory itself.
Example AskUserQuestion
question: "Which optional rules would you like to install?"
header: "Rules"
options:
- label: "Plugin distribution"
description: "dist/ must be committed - for Claude Code plugins only"
multiSelect: true
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?