Get the FREE Ultimate OpenClaw Setup Guide →

frontmatter-parsing

npx machina-cli add skill a5c-ai/babysitter/frontmatter-parsing --openclaw
Files (1)
SKILL.md
7.4 KB

frontmatter-parsing

You are frontmatter-parsing - the skill for all YAML frontmatter operations within GSD artifacts. Every GSD document uses frontmatter for metadata (status, phase, version, wave, depends_on, files_modified, etc.). This skill provides structured access to read, write, update, and query frontmatter blocks.

Overview

GSD documents use YAML frontmatter (delimited by ---) to store machine-readable metadata alongside human-readable markdown content. This skill corresponds to the original lib/frontmatter.cjs module.

Frontmatter appears at the top of every GSD artifact:

---
status: in-progress
phase: 72
wave: 1
depends_on: []
files_modified: ["src/auth/oauth.ts", "src/auth/tokens.ts"]
created: 2026-03-02
updated: 2026-03-02
---

# Plan content below...

Capabilities

1. Parse Frontmatter

Extract frontmatter from a markdown file into structured data:

# Input file: .planning/phase-72/PLAN-1.md
---
status: planned
phase: 72
plan_number: 1
wave: 1
depends_on: []
files_modified:
  - src/auth/oauth.ts
  - src/auth/tokens.ts
  - src/middleware/auth.ts
task_count: 4
created: 2026-03-02
gap_closure: false
---

Parsed result:

{
  "status": "planned",
  "phase": 72,
  "plan_number": 1,
  "wave": 1,
  "depends_on": [],
  "files_modified": ["src/auth/oauth.ts", "src/auth/tokens.ts", "src/middleware/auth.ts"],
  "task_count": 4,
  "created": "2026-03-02",
  "gap_closure": false
}

2. Extract Specific Fields

Read individual fields without parsing the entire frontmatter:

get_field(.planning/phase-72/PLAN-1.md, "wave") -> 1
get_field(.planning/phase-72/PLAN-1.md, "status") -> "planned"
get_field(.planning/phase-72/PLAN-1.md, "files_modified") -> ["src/auth/oauth.ts", ...]

3. Update Fields

Update individual frontmatter fields without modifying body content:

update_field(.planning/phase-72/PLAN-1.md, "status", "executed")
update_field(.planning/phase-72/PLAN-1.md, "wave", 2)
update_field(.planning/phase-72/PLAN-1.md, "updated", "2026-03-02")

Uses Edit tool to surgically replace only the target field line.

4. Add New Fields

Add fields to existing frontmatter:

add_field(.planning/phase-72/PLAN-1.md, "executed_at", "2026-03-02T14:30:00Z")
add_field(.planning/phase-72/PLAN-1.md, "executor_agent", "gsd-executor")

Inserts new field before the closing --- delimiter.

5. Remove Fields

Remove fields from frontmatter:

remove_field(.planning/phase-72/PLAN-1.md, "gap_closure")

6. Query Across Files

Find documents matching frontmatter criteria:

query(directory: ".planning/phase-72/", field: "wave", value: 1)
-> [".planning/phase-72/PLAN-1.md", ".planning/phase-72/PLAN-2.md"]

query(directory: ".planning/", field: "status", value: "planned", recursive: true)
-> [".planning/phase-72/PLAN-1.md", ".planning/phase-73/PLAN-1.md"]

Uses Grep to search for field patterns, then validates matches.

7. Validate Frontmatter

Validate frontmatter against document type schema:

# PLAN.md required fields
required:
  - status       # planned|executing|executed|verified
  - phase        # integer or decimal
  - plan_number  # integer
  - wave         # integer (execution order group)
  - task_count   # integer

# PLAN.md optional fields
optional:
  - depends_on      # array of plan references
  - files_modified  # array of file paths
  - gap_closure     # boolean
  - created         # date
  - updated         # date
  - executed_at     # datetime

Document type schemas:

  • PLAN.md: status, phase, plan_number, wave, task_count
  • SUMMARY.md: phase, status, tasks_completed, commits
  • RESEARCH.md: phase, status, approach_count, recommended
  • STATE.md: last_updated, session_count, current_milestone
  • CONTEXT.md: phase, decisions_count, preferences

8. Batch Operations

Update frontmatter across multiple files:

batch_update(
  files: [".planning/phase-72/PLAN-1.md", ".planning/phase-72/PLAN-2.md"],
  field: "status",
  value: "executed"
)

Tool Use Instructions

Parsing Frontmatter

  1. Use Read to load the target file
  2. Extract content between first --- and second ---
  3. Parse YAML content into key-value pairs
  4. Return structured object

Updating a Field

  1. Use Read to load the file
  2. Locate the target field line within frontmatter
  3. Use Edit with the exact field line as old_string
  4. Replace with new field value line
  5. If field is multi-line (arrays), handle properly

Querying Across Files

  1. Use Glob to find candidate files in the target directory
  2. Use Grep to search for the field pattern (e.g., ^wave: 1$)
  3. For each match, verify it's within frontmatter (not body content)
  4. Return list of matching file paths

Validating Frontmatter

  1. Use Read to load the file
  2. Parse frontmatter
  3. Check required fields exist for the document type
  4. Validate field types (string, integer, array, boolean, date)
  5. Return validation result with any errors

Process Integration

  • plan-phase.js - Read/write plan frontmatter (wave, depends_on, files_modified)
  • execute-phase.js - Update plan status as execution progresses, read wave assignments for parallel execution
  • audit-milestone.js - Query all plans by status for completion checks
  • research-phase.js - Write research frontmatter (approach_count, recommended)
  • discuss-phase.js - Read phase metadata from roadmap sections

Output Format

{
  "operation": "parse|get|update|add|remove|query|validate|batch",
  "status": "success|error",
  "file": ".planning/phase-72/PLAN-1.md",
  "field": "status",
  "previousValue": "planned",
  "newValue": "executed",
  "frontmatter": {},
  "queryResults": [],
  "validation": {
    "valid": true,
    "errors": [],
    "warnings": []
  }
}

Configuration

SettingDefaultDescription
frontmatterDelimiter---YAML frontmatter delimiter
strictValidationfalseFail on unknown fields
autoUpdateTimestamptrueAuto-update updated field on writes

Error Handling

ErrorCauseResolution
No frontmatter foundFile missing --- delimitersAdd frontmatter block or skip
YAML parse errorMalformed YAML in frontmatterFix YAML syntax (check indentation, colons, quotes)
Field not foundRequested field not in frontmatterReturn null, optionally add field
Type mismatchField value does not match expected typeCoerce if possible, error if not
Edit collisionField line not unique in fileInclude surrounding context for uniqueness

Constraints

  • Frontmatter must be valid YAML between --- delimiters at the top of the file
  • Field updates must not modify body content below the frontmatter
  • Array fields must use YAML list syntax (either inline [a, b] or block - a\n- b)
  • Date fields must use ISO 8601 format
  • Boolean fields must use true/false (not yes/no)
  • Query operations are read-only; they never modify files
  • Batch operations are atomic per file (each file update succeeds or fails independently)

Source

git clone https://github.com/a5c-ai/babysitter/blob/main/plugins/babysitter/skills/babysit/process/methodologies/gsd/skills/frontmatter-parsing/SKILL.mdView on GitHub

Overview

frontmatter-parsing provides read, write, update, query, and validate operations on YAML frontmatter blocks at the top of GSD .planning documents. It treats frontmatter as the canonical metadata store (status, phase, wave, etc.) and supports surgical edits without touching the markdown body.

How This Skill Works

The skill reads YAML frontmatter delimited by --- at the top of a .planning document, exposing operations to extract fields, update or add fields, and remove fields without altering the body. It also supports cross-file queries across directories and validates frontmatter against the PLAN.md schema to ensure required and optional fields are satisfied.

When to Use It

  • To read a specific metadata field without parsing the whole document
  • When updating status, phase, or timestamps in a plan
  • When adding new metadata like executor or executed_at
  • When removing obsolete fields from frontmatter
  • When auditing or filtering plans by fields across a directory with query

Quick Start

  1. Step 1: Identify target frontmatter file, e.g., .planning/phase-72/PLAN-1.md
  2. Step 2: Use a field operation such as get_field, update_field, add_field, or remove_field as needed
  3. Step 3: Validate the updated frontmatter against the PLAN.md schema and run any necessary queries

Best Practices

  • Keep frontmatter fields consistent with the PLAN.md schema (required: status, phase, plan_number, wave, task_count)
  • Use update_field or add_field to surgically modify metadata without touching the body
  • Validate frontmatter after edits against the PLAN.md schema to catch violations
  • Adopt consistent date/time formats (YYYY-MM-DD, ISO datetime) as defined in the schema
  • Store only metadata relevant to planning to avoid bloated frontmatter

Example Use Cases

  • Parse frontmatter from .planning/phase-72/PLAN-1.md to read status, phase, plan_number, and wave
  • Read wave from PLAN-1.md using get_field to verify execution order
  • Update status to executed and set updated date with update_field
  • Add executed_at and executor_agent fields via add_field before publishing a completed plan
  • Remove gap_closure from frontmatter when it becomes obsolete

Frequently Asked Questions

Add this skill to your agents
Sponsor this space

Reach thousands of developers