Skip to content

Commit 63090c7

Browse files
committed
Add YAML frontmatter to skill reference files
Add compliant YAML frontmatter to all reference files in anti-slop and typed-holes-refactor skills to pass CI smoke tests. All reference files now include name and description fields following Claude agent skills best practices. Files updated: - anti-slop/references: text-patterns, code-patterns, design-patterns - typed-holes-refactor/references: HOLE_TYPES, CONSTRAINT_RULES, VALIDATION_PATTERNS
1 parent 9998902 commit 63090c7

6 files changed

Lines changed: 30 additions & 0 deletions

File tree

skills/anti-slop/references/code-patterns.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
name: code-patterns
3+
description: Reference guide for detecting AI slop patterns in code including generic variable names, obvious comments, and unnecessary abstractions. Use as reference when reviewing code quality.
4+
---
5+
16
# Code Slop Patterns
27

38
This reference documents common "AI slop" patterns in code that indicate low-quality, AI-generated content that should be cleaned up.

skills/anti-slop/references/design-patterns.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
name: design-patterns
3+
description: Reference guide for detecting AI slop patterns in visual and UX design including generic gradients, cookie-cutter layouts, and buzzword-heavy copy. Use as reference when reviewing design quality.
4+
---
5+
16
# Design Slop Patterns
27

38
This reference documents common "AI slop" patterns in visual and UX design that indicate generic, low-quality, AI-generated content.

skills/anti-slop/references/text-patterns.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
name: text-patterns
3+
description: Reference guide for detecting AI slop patterns in natural language text including overused phrases, buzzwords, and meta-commentary. Use as reference when reviewing text content for quality.
4+
---
5+
16
# Text Slop Patterns
27

38
This reference documents common "AI slop" patterns in natural language writing that should be avoided or cleaned up.

skills/typed-holes-refactor/references/CONSTRAINT_RULES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
name: constraint-rules
3+
description: Reference guide for constraint propagation rules in typed holes refactoring including dependency tracking and solution space narrowing. Use as reference when propagating constraints between resolved holes.
4+
---
5+
16
# Constraint Propagation Rules
27

38
Complete guide to constraint propagation in typed holes refactoring.

skills/typed-holes-refactor/references/HOLE_TYPES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
name: hole-types
3+
description: Reference taxonomy of refactoring hole types including current state holes, architecture holes, and implementation holes. Use as reference during typed holes refactoring for identifying and categorizing unknowns.
4+
---
5+
16
# Hole Types Reference
27

38
Complete taxonomy of refactoring holes with validation patterns.

skills/typed-holes-refactor/references/VALIDATION_PATTERNS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
name: validation-patterns
3+
description: Reference guide for test patterns to validate hole resolutions including characterization tests, property tests, and integration tests. Use as reference when validating refactoring steps.
4+
---
5+
16
# Validation Patterns
27

38
Test patterns for validating hole resolutions.

0 commit comments

Comments
 (0)