@iceinvein/agent-skills 0.1.32 → 0.1.33
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/install.sh +16 -0
- package/skills/magpie/skill.json +2 -1
package/package.json
CHANGED
package/skills/index.json
CHANGED
|
@@ -197,7 +197,7 @@
|
|
|
197
197
|
"name": "magpie",
|
|
198
198
|
"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, 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.",
|
|
199
199
|
"type": "prompt",
|
|
200
|
-
"version": "0.5.
|
|
200
|
+
"version": "0.5.1"
|
|
201
201
|
},
|
|
202
202
|
{
|
|
203
203
|
"name": "module-secret-auditor",
|
package/skills/magpie/install.sh
CHANGED
|
@@ -16,6 +16,22 @@ fi
|
|
|
16
16
|
|
|
17
17
|
chmod +x "$BIN_SOURCE" || true
|
|
18
18
|
|
|
19
|
+
# Magpie has runtime dependencies (shiki, etc.) declared in package.json.
|
|
20
|
+
# node_modules is not shipped via npm, so we populate it here. Use bun if
|
|
21
|
+
# available; fall back to a clear error otherwise.
|
|
22
|
+
if [ -f "$SOURCE_DIR/package.json" ] && [ ! -d "$SOURCE_DIR/node_modules" ]; then
|
|
23
|
+
if command -v bun >/dev/null 2>&1; then
|
|
24
|
+
echo "Installing magpie runtime dependencies..."
|
|
25
|
+
(cd "$SOURCE_DIR" && bun install --production --silent) || {
|
|
26
|
+
echo "magpie postinstall: bun install failed in $SOURCE_DIR" >&2
|
|
27
|
+
exit 1
|
|
28
|
+
}
|
|
29
|
+
else
|
|
30
|
+
echo "magpie postinstall: bun not found on PATH; install Bun (https://bun.sh) and rerun this script." >&2
|
|
31
|
+
exit 1
|
|
32
|
+
fi
|
|
33
|
+
fi
|
|
34
|
+
|
|
19
35
|
install_link() {
|
|
20
36
|
local dest_dir="$1"
|
|
21
37
|
local dest="$dest_dir/magpie"
|
package/skills/magpie/skill.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "magpie",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"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, 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.",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"bin",
|
|
16
16
|
"scripts",
|
|
17
17
|
"templates",
|
|
18
|
+
"fixtures/example-pr",
|
|
18
19
|
"install.sh",
|
|
19
20
|
"uninstall.sh",
|
|
20
21
|
"package.json",
|