golden-principles
Scans and enforces organizational golden principles within a repository.
Install
mkdir -p .claude/skills/golden-principles && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/14603" && unzip -o skill.zip -d .claude/skills/golden-principles && rm skill.zipInstalls to .claude/skills/golden-principles
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Scan repository for golden principle violations with agent-readable remediation. Enforces GP-001 through GP-008 from .agents/governance/golden-principles.md. Use when auditing compliance, preparing PRs, or running garbage collection scans.Key capabilities
- →Scan the repository for violations of golden principles GP-001 through GP-008.
- →Produce remediation instructions for identified violations.
- →Scope scans to the entire repository, specific directories, or PR diffs.
- →Run specific rules only, such as `script-language` or `skill-frontmatter`.
- →Output results in JSON format for tooling integration.
How it works
The skill executes a Python script to scan specified targets for violations of predefined golden principles and generates remediation advice.
Inputs & outputs
When to use golden-principles
- →Auditing principle compliance
- →Preparing code for PR submission
- →Garbage collection scans
About this skill
Golden Principles
Scan the repository for violations of mechanically enforced golden principles. Produces remediation instructions that agents can act on directly.
<!-- vendor-portability: declared. This skill enforces GP-001 through GP-008 defined in .agents/governance/golden-principles.md and cites that document plus .claude/skills/ siblings. The governance file is the upstream rule source; a vendored install without it loses the canonical principle text, while the bundled scanner still applies its built-in GP-001 and GP-003 through GP-006 checks against the consumer's files (GP-002 is enforced elsewhere, not by this scanner). Issue #2050. -->Inspired by OpenAI Harness Engineering:
"We started encoding what we call 'golden principles' directly into the repository and built a recurring cleanup process."
Triggers
| Trigger Phrase | Operation |
|---|---|
scan golden principles | Full principle compliance scan |
check principle compliance | Scan with summary report |
golden principle violations | Scan and list violations |
run garbage collection | Deep scan with fix-up recommendations |
audit principles | Scan specific rules only |
When to Use
Use this skill when:
- Preparing a PR for submission (catch violations early)
- Running periodic garbage collection scans
- Auditing a domain or directory for compliance
- Adding new files to the repository
Use taste-lints instead when:
- Checking code-level invariants only (file size, naming, complexity)
- Running pre-commit checks on staged files
Use quality-grades instead when:
- Grading domains across architectural layers
- Producing quality trend reports
Process
- Run
python3 .claude/skills/golden-principles/scripts/scan_principles.pywith target - Review AGENT_REMEDIATION blocks in output
- Apply suggested fixes
- Re-run to confirm compliance
Usage
# Scan entire repository
python3 .claude/skills/golden-principles/scripts/scan_principles.py
# Scan specific directory
python3 .claude/skills/golden-principles/scripts/scan_principles.py --directory .claude/skills/
# Scope to a pull request diff (only files changed vs the base branch)
python3 .claude/skills/golden-principles/scripts/scan_principles.py --diff-scope "origin/$BASE_BRANCH"
# Run specific rules only
python3 .claude/skills/golden-principles/scripts/scan_principles.py --rules script-language,skill-frontmatter
# JSON output for tooling
python3 .claude/skills/golden-principles/scripts/scan_principles.py --format json
# Write results to file
python3 .claude/skills/golden-principles/scripts/scan_principles.py --output scan-results.json --format json
Rules
| Rule | Principle | What it checks |
|---|---|---|
script-language | GP-001 | No new .sh/.bash files |
skill-frontmatter | GP-003 | SKILL.md has required frontmatter fields |
agent-definition | GP-004 | Agent .md files have required sections |
yaml-logic | GP-005 | No inline logic in workflow YAML |
actions-pinned | GP-006 | GitHub Actions pinned to SHA |
GP-002, GP-007, GP-008 are enforced by existing tools (git hooks, taste-lints).
Exit Codes
| Code | Meaning |
|---|---|
| 0 | No violations found |
| 1 | Script error (bad arguments, file not found) |
| 10 | Violations detected |
Scripts
| Script | Purpose | Exit codes |
|---|---|---|
scripts/scan_principles.py | Scan a path (repo, directory, or diff scope) for GP-001..GP-006 violations and emit AGENT_REMEDIATION blocks. Supports --directory, --diff-scope, --rules, --format, --output. | 0 no violations; 10 violations detected; 1 tool error (bad arguments, file not found). |
Suppression
Add a comment in the file header to suppress a specific rule:
# golden-principle: ignore script-language
Valid rules: script-language, skill-frontmatter, agent-definition, yaml-logic, actions-pinned
Verification
After execution, run the bundled validator and require exit 0:
python3 .claude/skills/golden-principles/scripts/scan_principles.py <path>
echo "exit=$?" # 0 = clean, 10 = violations found, 1 = tool error
- Exit 0 to pass; exit 10 means violations exist and must be reported with principle ID and remediation
- Exit 1 (tool error) is a BLOCKED result, not a pass
- Report lists scanned file count
- Output format matches --format flag
References
- Code Qualities - Five foundational qualities: cohesion, coupling, non-redundancy, encapsulation, testability
- SOLID Principles - SRP, OCP, LSP, ISP, DIP with violation signs and code examples
- Programming by Intention - Sergeant pattern for expressing intent over implementation
- Separation of Concerns - Decomposition at method, class, layer, and service levels
- DRY Principle - Single authoritative representation with scope, violations, and when NOT to DRY
Cross-References
- Golden Principles Document
- Taste Lints for GP-007, GP-008
- Quality Grades for domain-level grading
When not to use it
- →When checking code-level invariants only like file size or naming.
- →When grading domains across architectural layers.
- →When producing quality trend reports.
Limitations
- →The skill enforces GP-001 through GP-008 as defined in `.agents/governance/golden-principles.md`.
- →The skill requires a Python script to run the scan.
- →The skill can be suppressed for specific rules via file header comments.
How it compares
This workflow mechanically enforces specific golden principles and provides agent-readable remediation, unlike general linting or quality grading tools.
Compared to similar skills
golden-principles side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| golden-principles (this skill) | 0 | 1mo | Review | Intermediate |
| pair-capability-verify-adoption | 0 | 5mo | No flags | Intermediate |
| harness-boundary | 0 | 3mo | No flags | Advanced |
| adversarial-review | 0 | 2mo | No flags | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by rjmurillo
View all by rjmurillo →You might also like
pair-capability-verify-adoption
foomakers
Checks code and configuration against project adoption files for a given scope. Detection-only: returns conformity/non-conformity list per area without resolving issues. Caller decides resolution. Invocable independently or composed by /pair-process-review and /pair-process-implement.
harness-boundary
zkp442910864
Harness 工程边界约束与变更评估。Use when: 评估代码变更影响范围、确认安全边界、检查工程规范合规性、审查变更风险等级。
adversarial-review
dahatake
>
beforemerge-fullstack-architecture-review
adrian-coronel
Code review rules for DRY/SOLID layered architecture in fullstack TypeScript applications. Covers dependency direction, service/repository patterns, factory injection, domain entities, security hardening, performance optimization, and code quality patterns. Use this skill when reviewing, writing, or
agent-v3-security-architect
ruvnet
Agent skill for v3-security-architect - invoke with $agent-v3-security-architect
ai-spec-review
jyjeanne
Review a markdown specification across business logic, architecture, performance, security, testing, DevOps/CI/CD, dependencies, standards, UX, documentation, code quality, and maintainability. Generates a structured review, risk register, test plan, implementation tasks, and dimension scores (0–10)