Skip to content

Commit 0e52e22

Browse files
committed
fix(skills): add missing YAML frontmatter to 7 skills
Codex CLI requires YAML frontmatter (---) in SKILL.md files. 6 skills were missing frontmatter entirely; laravel-verification had a bare colon in its description causing an invalid YAML parse error.
1 parent 914f096 commit 0e52e22

File tree

7 files changed

+37
-1
lines changed

7 files changed

+37
-1
lines changed

skills/benchmark/SKILL.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
name: benchmark
3+
description: Use this skill to measure performance baselines, detect regressions before/after PRs, and compare stack alternatives.
4+
origin: ECC
5+
---
6+
17
# Benchmark — Performance Baseline & Regression Detection
28

39
## When to Use

skills/browser-qa/SKILL.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
name: browser-qa
3+
description: Use this skill to automate visual testing and UI interaction verification using browser automation after deploying features.
4+
origin: ECC
5+
---
6+
17
# Browser QA — Automated Visual Testing & Interaction
28

39
## When to Use

skills/canary-watch/SKILL.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
name: canary-watch
3+
description: Use this skill to monitor a deployed URL for regressions after deploys, merges, or dependency upgrades.
4+
origin: ECC
5+
---
6+
17
# Canary Watch — Post-Deploy Monitoring
28

39
## When to Use

skills/design-system/SKILL.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
name: design-system
3+
description: Use this skill to generate or audit design systems, check visual consistency, and review PRs that touch styling.
4+
origin: ECC
5+
---
6+
17
# Design System — Generate & Audit Visual Systems
28

39
## When to Use

skills/laravel-verification/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: laravel-verification
3-
description: Verification loop for Laravel projects: env checks, linting, static analysis, tests with coverage, security scans, and deployment readiness.
3+
description: "Verification loop for Laravel projects: env checks, linting, static analysis, tests with coverage, security scans, and deployment readiness."
44
origin: ECC
55
---
66

skills/product-lens/SKILL.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
name: product-lens
3+
description: Use this skill to validate the "why" before building, run product diagnostics, and convert vague ideas into specs.
4+
origin: ECC
5+
---
6+
17
# Product Lens — Think Before You Build
28

39
## When to Use

skills/safety-guard/SKILL.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
name: safety-guard
3+
description: Use this skill to prevent destructive operations when working on production systems or running agents autonomously.
4+
origin: ECC
5+
---
6+
17
# Safety Guard — Prevent Destructive Operations
28

39
## When to Use

0 commit comments

Comments
 (0)