install
source · Clone the upstream repo
git clone https://github.com/codejunkie99/agentic-stack
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/codejunkie99/agentic-stack "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.agent/skills/skillforge" ~/.claude/skills/codejunkie99-agentic-stack-skillforge && rm -rf "$T"
manifest:
.agent/skills/skillforge/SKILL.mdsource content
Skillforge — the skill that creates skills
When a new capability is needed:
- Check for duplicates. Read
. If a similar skill exists, extend it instead of creating a new one.skills/_index.md - Check memory. Read
for related patterns.memory/semantic/LESSONS.md - Draft the skill. Create
with:skills/<name>/SKILL.md- YAML frontmatter (name, version, triggers, tools, preconditions, constraints)
- Plain-language instructions (destinations and fences, not driving directions)
- A self-rewrite hook at the bottom
- Register it. Add an entry to
and append a JSON line toskills/_index.md
.skills/_manifest.jsonl - Log it. Append a record to
explaining why this skill was created.memory/semantic/DECISIONS.md
What good skills look like
- State the destination ("verify tests pass before commit"), not the exact command sequence.
- Include 2–3 examples of correct behavior when it clarifies intent.
- Include 1 example of a failure and what was learned from it.
- Keep the whole file under 100 lines.
Self-rewrite hook
After every 5 skills created, or on any failed creation:
- Read the last 5 skillforge entries from episodic memory.
- If better trigger patterns or constraint structures have emerged, update this file and the template it implies.
- Commit:
.skill-update: skillforge, <one-line reason>