fix: quote review-code skill argument hint#616
Conversation
Signed-off-by: Johnny Greco <jogreco@nvidia.com>
Greptile SummaryThis PR fixes a YAML parsing error in the
|
| Filename | Overview |
|---|---|
| .agents/skills/review-code/SKILL.md | Single-character fix quoting the argument-hint YAML value to prevent it from being parsed as an invalid flow sequence; no logic changes. |
Sequence Diagram
sequenceDiagram
participant Codex
participant SKILL.md
participant YAMLParser
Codex->>SKILL.md: Load skill frontmatter
SKILL.md->>YAMLParser: Parse YAML block
note over YAMLParser: Before: argument-hint: [pr-number] [special instructions]<br/>→ parsed as invalid YAML flow sequence → error
note over YAMLParser: After: argument-hint: "[pr-number] [special instructions]"<br/>→ parsed as string → success
YAMLParser-->>Codex: Return skill metadata (string value)
Codex-->>Codex: Skill loaded successfully
Reviews (1): Last reviewed commit: "fix: quote review-code skill argument hi..." | Re-trigger Greptile
Review: PR #616 — fix: quote review-code skill argument hintSummaryOne-character-class change to FindingsCorrectness
Consistency
Testing
Risk
VerdictApprove. Minimal, targeted fix with a clear motivation (YAML-strict loaders |
📋 Summary
This PR fixes the
review-codeskill frontmatter so Codex can load it successfully. Quoting theargument-hintpreserves the Claude Code-style metadata while making the value valid YAML.🔗 Related Issue
N/A
🔄 Changes
argument-hintvalue in.agents/skills/review-code/SKILL.mdso[pr-number] [special instructions]is parsed as a string instead of invalid YAML flow syntax.🧪 Testing
python3/PyYAMLgit diff --check origin/main..HEADpassesmake testpasses (not run — metadata-only skill frontmatter change)✅ Checklist