Skip to content

Invalid YAML in adapt skill front matter breaks GitHub preview and Codex loading #67

@onevcat

Description

@onevcat

The front matter in .codex/skills/adapt/SKILL.md contains invalid YAML:

argument-hint: [TARGET=<value>] [CONTEXT=<value>]

This appears to be two flow sequences written next to each other, which is not valid YAML.

Impact

  • GitHub's file preview shows a YAML parsing error for this file.
Image
  • Codex skips loading the skill for the same reason.
Image

Suggested fix

Use a single YAML sequence instead, for example:

argument-hint: [TARGET=<value>, CONTEXT=<value>]

or:

argument-hint:
  - TARGET=<value>
  - CONTEXT=<value>

I verified that changing the line to the first form makes the front matter parse successfully with a standard YAML parser.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions