fix(skills): require actionable CLI feedback repros (#2498)

This commit is contained in:
Miguel Ángel
2026-07-15 18:14:06 -04:00
committed by GitHub
parent 2417293dab
commit 3a71a03de5
4 changed files with 25 additions and 3 deletions
@@ -23,4 +23,16 @@ describe("hyperframes-core contract docs", () => {
expect(brief).toContain("`hyperframes check`");
expect(brief).not.toContain("`lint` / `validate` / `inspect`");
});
it("requires actionable reproduction packets in CLI defect feedback", () => {
const skill = read("skills", "hyperframes-cli", "SKILL.md");
const renderReference = read("skills", "hyperframes-cli", "references", "preview-render.md");
expect(skill).toContain("reproduction packet");
expect(renderReference).toContain("REPRO COMMAND:");
expect(renderReference).toContain("EXPECTED / ACTUAL:");
expect(renderReference).toContain("EXACT ERROR:");
expect(renderReference).toContain("OUTCOME:");
expect(renderReference).toContain("WORKAROUND:");
});
});