Add forge skill to kyberforge — orchestrates grill + artifact-type routing #61
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
kyberforge ships 6 factory skills (skill-author, skill-audit, agent-author, agent-audit, plugin-author, marketplace-author) but nothing enforces grilling intent before jumping to implementation, and nothing helps a user classify which of the 4 artifact types (skill, agent/subagent, plugin, marketplace entry) their idea actually needs.
Design
Add
plugins/kyberforge/skills/forge/SKILL.md, categoryfactory.Flow:
grill-with-docsagainst this repo'sCONTEXT.md+ relevantdocs/adr/to refine the user's intent before any authoring starts.*-authorskill(s) — chained in sequence if the intent spans more than one artifact type (e.g. a new skill inside a new plugin, then registering that plugin in the marketplace).skill-authorandagent-authoralready call their own audit skill (skill-audit / agent-audit) internally at closeout.plugin-authorandmarketplace-authorhave no audit counterpart at all, so forge does not invent one.Explicitly out of scope
Reference
CONTEXT.md's "Skill composition" glossary entry has already been updated with this composition (see repo root CONTEXT.md).
Next step
A follow-up task will invoke
/skill-authorto implementplugins/kyberforge/skills/forge/per this design.