| file_type | documentation | ||||
|---|---|---|---|---|---|
| title | Agent Configuration Example - Unified Branding | ||||
| description | Example frontmatter and configuration patterns for the unified branding agent | ||||
| category | documentation | ||||
| version | 1.0.1 | ||||
| created_date | 2026-05-29 | ||||
| last_updated | 2026-06-01 | ||||
| owners |
|
||||
| tags |
|
||||
| stability | stable |
This document demonstrates the configuration patterns and frontmatter requirements for the unified branding agent across all 15 document categories.
file_type: "documentation" # Type of document
title: "Document Title" # Human-readable title
last_updated: "2026-06-01"file_type: "skill"
title: "Skill Name"
category: "skills"
version: "1.0.1"
last_updated: "2026-06-01"
stability: "stable" # Must be: stable, experimental, incubating, deprecated
tags: ["portable", "reusable"] # Up to 8 tags
owners: ["user1", "user2"] # File maintainersFooter Template:
---
🎯 Skill • Version 1.0 • Last updated: 2026-05-29
file_type: "instruction"
title: "Instruction Title"
category: "instructions"
version: "1.0.1"
last_updated: "2026-06-01"
stability: "stable"
maintainer: "ashley@lightspeedwp.agency"Footer Template:
---
📖 Instruction • Version 1.0 • Last updated: 2026-05-29
file_type: "agent"
title: "Agent Name"
category: "agent-specs"
description: "What this agent does and when to use it"
version: "1.0.1"
last_updated: "2026-06-01"
stability: "stable"
tags: ["agent", "automation"]Footer Template:
---
🤖 Agent Specification • Version 1.0 • Last updated: 2026-05-29
file_type: "documentation"
title: "Documentation Title"
category: "documentation"
description: "Overview of this documentation"
last_updated: "2026-06-01"
domain: "platform" # Functional area
stability: "stable"
maintainer: "ashley@lightspeedwp.agency"Footer Template:
---
📚 Documentation • Last updated: 2026-05-29
file_type: "plugin"
title: "Plugin Name"
category: "plugins"
version: "1.0.1"
last_updated: "2026-06-01"
maintainer: "ashley@lightspeedwp.agency"
license: "GPL-3.0"Footer Template:
---
🔌 Plugin • Version 1.0 • Last updated: 2026-05-29
file_type: "workflow"
title: "Workflow Name"
category: "workflows"
last_updated: "2026-06-01"
description: "What this workflow automates"Footer Template:
---
🔄 GitHub Actions Workflow • Last updated: 2026-05-29
file_type: "guide"
title: "Recipe/Playbook Title"
category: "cookbook"
description: "Step-by-step implementation guide"
last_updated: "2026-06-01"
stability: "stable"
tags: ["implementation", "guide"]Footer Template:
---
📖 Cookbook • Last updated: 2026-05-29
file_type: "documentation"
title: "README / Contributing Guide"
category: "root"
last_updated: "2026-06-01"
description: "Community guidelines and contribution process"Footer Template:
---
_Last updated: 2026-05-29 • Category: root_
The configuration system recognizes categories by file path:
| Category | Path Pattern | Example |
|---|---|---|
| root | ^[^/]+\.md$ |
README.md, CONTRIBUTING.md |
| github-config | ^\.github/[^/]+\.(md|yml|yaml)$ |
.github/CODEOWNERS, .github/config.yml |
| workflows | ^\.github/workflows/[^/]+\.ya?ml$ |
.github/workflows/ci.yml |
| skills | ^skills/.*/(SKILL\.md|.*\.md)$ |
skills/my-skill/SKILL.md |
| instructions | ^instructions/.*\.instructions\.md$ |
instructions/coding.instructions.md |
| documentation | ^(docs|documentation)/.*\.md$ |
docs/guide.md |
| plugins | ^plugins/.*\.md$ |
plugins/my-plugin/README.md |
| cookbook | ^cookbook/.*\.md$ |
cookbook/implementation.md |
| ai-configs | ^ai/.*\.md$ |
ai/Claude.md |
| agent-specs | ^agents/.*\.md$ |
agents/my-agent/README.md |
| slides | ^slides/.*\.md$ |
slides/presentation.md |
- ✅ Must have:
file_type,title,last_updated - ✅ Must have:
category: "skills",version,stability - ✅ Must have:
tags(max 8) - ✅ Example: semantic version format
1.0,1.2.3
- ✅ Must have:
file_type,title,last_updated - ✅ Must have:
category: "instructions",version,stability - ✅ Recommended:
description,maintainer
- ✅ Must have:
file_type,title,last_updated - ✅ Must have:
category: "agent-specs",version - ✅ Recommended:
description,stability
- ✅ Must have:
file_type,title,last_updated - ✅ Optional:
version,stability,domain,tags
- ✅ Must have:
file_type,title,last_updated - ✅ Must have:
versionif provided - ✅ Recommended:
maintainer,license
Badges are rendered based on category and stability:
Skills with Stable Status:

Version Badges:

Category Badges:

Status Indicators (inline):
- 💚 Stable
- 🟡 Experimental
- 🟠 Incubating
⚠️ Deprecated
All last_updated values must follow ISO 8601 datetime format:
2026-05-29T05:40:00Z ✅ Correct (UTC)
2026-05-29T05:40:00+00:00 ✅ Also correct (UTC with offset)
2026-05-29 ❌ Incorrect (date-only, use full timestamp)
Important: When content changes, last_updated must match today's UTC date.
Semantic versioning (if version field is used):
1.0 ✅ Valid (major.minor)
1.2.3 ✅ Valid (major.minor.patch)
1.2.3.4 ❌ Invalid (too many components)
v1.0 ❌ Invalid (no 'v' prefix)
- Apply these frontmatter patterns to markdown files in each category
- Add appropriate footer templates based on category and stability
- Include badges for skills, instructions, and agent specifications
- Validate all frontmatter against the JSON schema
- Run remediation scripts to bulk-apply patterns across 932 files
Last updated: 2026-05-29 • Version 1.0 • Stability: stable