@iceinvein/agent-skills 0.1.38 → 0.1.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/skills/index.json +1 -1
- package/skills/magpie/README.md +2 -1
- package/skills/magpie/SKILL.md +29 -530
- package/skills/magpie/package.json +1 -1
- package/skills/magpie/references/critic.md +58 -0
- package/skills/magpie/references/peer-review.md +84 -0
- package/skills/magpie/references/specialists.md +391 -0
- package/skills/magpie/scripts/__tests__/helper.test.ts +40 -0
- package/skills/magpie/scripts/__tests__/skill-lint.test.ts +116 -28
- package/skills/magpie/scripts/__tests__/status-cmd.test.ts +13 -0
- package/skills/magpie/scripts/helper.js +24 -13
- package/skills/magpie/scripts/status-cmd.ts +10 -1
- package/skills/magpie/skill.json +2 -1
package/package.json
CHANGED
package/skills/index.json
CHANGED
|
@@ -221,7 +221,7 @@
|
|
|
221
221
|
"name": "magpie",
|
|
222
222
|
"description": "Interactive PR review pipeline. Runs five parallel specialist subagents (security, bugs, performance, code-smells, architecture), dedupes findings, applies a critic rubric, peer-reviews via codex exec (falling back to a Claude second opinion when codex is unavailable), and serves an interactive HTML report for selecting findings to post via gh. Bundles a Bun CLI installed onto PATH via the skill's postinstall step. Use when the user asks to review a GitHub pull request.",
|
|
223
223
|
"type": "prompt",
|
|
224
|
-
"version": "0.
|
|
224
|
+
"version": "0.8.0"
|
|
225
225
|
},
|
|
226
226
|
{
|
|
227
227
|
"name": "module-secret-auditor",
|
package/skills/magpie/README.md
CHANGED
|
@@ -53,7 +53,8 @@ The fixture lives at `fixtures/example-pr/` (pr.json + findings.final.json + pos
|
|
|
53
53
|
|
|
54
54
|
## Layout
|
|
55
55
|
|
|
56
|
-
- `SKILL.md` is the agent-facing prompt
|
|
56
|
+
- `SKILL.md` is the agent-facing prompt: the stage walkthrough and nothing else. Installed by the agent-skills CLI.
|
|
57
|
+
- `references/` holds the prompt bodies the walkthrough loads on demand, one file per stage that needs one: `specialists.md` (stage 3, the five focus blocks plus the shared output contract), `critic.md` (stage 5), `peer-review.md` (stage 6, including the Claude-fallback preamble). They ship in the bundle and sit next to `SKILL.md` once installed.
|
|
57
58
|
- `skill.json` is the agent-skills manifest.
|
|
58
59
|
- `bin/magpie` is the CLI invoked by the agent during stages; symlinked onto PATH by `install.sh`.
|
|
59
60
|
- `scripts/` holds the implementation (server, dedupe, render, setup, cleanup, etc.).
|