feat(marketplace): kg-swarm skills and agents#75
Merged
Conversation
Adds the swarm coordination pattern for the kg-plugin: - skills/gap/SKILL.md — gap-analyst rubric (rank-1 frontier, density, orphans, missing-relation detection) with assign() to expander/polisher. - skills/expand/SKILL.md — expander rubric (per-concept neighborhood exploration, citations required, no fabrication) with handoff to polisher. - agents/gap-analyst.md, digester.md, expander.md, polisher.md, librarian.md — per-role pickup/handoff protocols that read tasks assigned to them, process, then assign follow-up tasks down the chain. - README updates documenting the swarm pipeline + 6-agent table. The agents form a closed loop: gap-analyst finds gaps → expander expands → polisher reviews → gap-analyst re-checks. Each round assigns the next round's tasks via the GTD substrate. No runtime/code changes — pure docs/skill/agent additions in `marketplace/kg/`. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This was referenced May 20, 2026
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds the kg-swarm coordination pattern to the
kgmarketplace plugin:skills/gap/SKILL.md(gap-analyst rubric — rank-1 frontier, density, orphans, missing relations) +skills/expand/SKILL.md(per-concept neighborhood exploration, citations mandatory).agents/gap-analyst.md,agents/digester.md,agents/expander.md,agents/polisher.md,agents/librarian.md— each with per-role pickup/handoff protocols.How it works
The 5 agents form a closed loop coordinated through the GTD substrate:
Each agent reads tasks
assignedto it from the substrate, processes, thenassigns follow-up tasks to the next agent. No central orchestrator needed once the loop is seeded.Notes for review
This is one of three PRs split out of the original #72. The other two PRs are:
fix/update-merge-semantics-code— runtimeupdate(properties)deep-merge fixstyle/adr-deno-fmt— pre-existingdeno fmtdrift fix on ADRs 029, 035-041No runtime/code changes — pure additions in
marketplace/kg/(skills + agents + README).Test plan
deno fmt --check marketplace/kg/)🤖 Generated with Claude Code