Workshop file reviewed
workshop/side-quest-29-01-skill-injection-strategies.md
Problem
The "Inline" strategy example is missing the required skill frontmatter block. The file shows:
## skill: `issue-triage`
Classify each issue as `bug`, `feature`, or `question` based on its title and body.
For issues classified as `bug`, confirm the body includes steps to reproduce,
expected vs. actual behavior, and environment details.
Current correct syntax
Per gh-aw's skills.md reference (linked from the custom-agent-for-aw docs page), an inline skill block requires a ----delimited frontmatter section with at least a description: field immediately after the ## skill: \name`` heading, before the skill body:
## skill: `issue-triage`
---
description: Classify issues and suggest next actions.
---
Classify each issue as `bug`, `feature`, or `question` based on its title and body.
For issues classified as `bug`, confirm the body includes steps to reproduce,
expected vs. actual behavior, and environment details.
Without the --- frontmatter block containing description:, the inline skill extraction step may not parse the block correctly. (The hint, fusion, and other syntax in this file — gh-skill-fusion: comments, .github/skills/ discovery paths, and "unpinned-skill" compiler warnings — were all verified accurate against gh-aw's docs and do not need changes.)
Suggested fix
Add the ---\ndescription: <one-line summary>\n--- frontmatter block to the inline skill code example, matching the documented pattern.
Generated by 🔍 Workshop Sync Check · copilot · auto · 283.8 AIC · ⌖ 6.14 AIC · ⊞ 8.6K · ◷
Workshop file reviewed
workshop/side-quest-29-01-skill-injection-strategies.mdProblem
The "Inline" strategy example is missing the required skill frontmatter block. The file shows:
Current correct syntax
Per gh-aw's
skills.mdreference (linked from thecustom-agent-for-awdocs page), an inline skill block requires a----delimited frontmatter section with at least adescription:field immediately after the## skill: \name`` heading, before the skill body:Without the
---frontmatter block containingdescription:, the inline skill extraction step may not parse the block correctly. (The hint, fusion, and other syntax in this file —gh-skill-fusion:comments,.github/skills/discovery paths, and "unpinned-skill" compiler warnings — were all verified accurate against gh-aw's docs and do not need changes.)Suggested fix
Add the
---\ndescription: <one-line summary>\n---frontmatter block to the inline skill code example, matching the documented pattern.