@iceinvein/agent-skills 0.1.39 → 0.2.0
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/README.md +18 -2
- package/dist/cli/index.js +105 -28
- package/package.json +1 -1
- package/skills/index.json +14 -2
- package/skills/magpie/README.md +2 -1
- package/skills/magpie/SKILL.md +138 -45
- package/skills/magpie/bin/magpie.ts +43 -0
- package/skills/magpie/fixtures/example-pr/brief.json +18 -0
- package/skills/magpie/fixtures/fake-gh-nodiff.sh +38 -0
- package/skills/magpie/fixtures/fake-gh.sh +14 -0
- package/skills/magpie/package.json +1 -1
- package/skills/magpie/references/peer-review.md +7 -2
- package/skills/magpie/references/scout.md +90 -0
- package/skills/magpie/references/specialists.md +117 -6
- package/skills/magpie/scripts/__tests__/cli.test.ts +101 -1
- package/skills/magpie/scripts/__tests__/dedupe-cmd.test.ts +187 -0
- package/skills/magpie/scripts/__tests__/diff-chunks.test.ts +51 -0
- package/skills/magpie/scripts/__tests__/filter-diff-preservation.test.ts +54 -0
- package/skills/magpie/scripts/__tests__/findings-files.test.ts +35 -0
- package/skills/magpie/scripts/__tests__/gh.test.ts +90 -0
- package/skills/magpie/scripts/__tests__/git-diff.test.ts +83 -0
- package/skills/magpie/scripts/__tests__/helpers/git-fixture.ts +47 -0
- package/skills/magpie/scripts/__tests__/path-filter.test.ts +27 -0
- package/skills/magpie/scripts/__tests__/preview-cmd.test.ts +16 -0
- package/skills/magpie/scripts/__tests__/refresh.test.ts +45 -0
- package/skills/magpie/scripts/__tests__/render-cmd.test.ts +173 -1
- package/skills/magpie/scripts/__tests__/render-findings.test.ts +151 -1
- package/skills/magpie/scripts/__tests__/render-progress.test.ts +42 -0
- package/skills/magpie/scripts/__tests__/setup-cmd.test.ts +83 -1
- package/skills/magpie/scripts/__tests__/shard.test.ts +165 -0
- package/skills/magpie/scripts/__tests__/skill-lint.test.ts +207 -7
- package/skills/magpie/scripts/__tests__/types.test.ts +47 -0
- package/skills/magpie/scripts/dedupe-cmd.ts +58 -3
- package/skills/magpie/scripts/diff-chunks.ts +28 -0
- package/skills/magpie/scripts/findings-files.ts +32 -0
- package/skills/magpie/scripts/gh.ts +68 -14
- package/skills/magpie/scripts/git-diff.ts +111 -0
- package/skills/magpie/scripts/path-filter.ts +9 -5
- package/skills/magpie/scripts/preview-cmd.ts +11 -1
- package/skills/magpie/scripts/refresh.ts +32 -3
- package/skills/magpie/scripts/render-cmd.ts +35 -11
- package/skills/magpie/scripts/render-findings.ts +78 -2
- package/skills/magpie/scripts/render-progress.ts +6 -1
- package/skills/magpie/scripts/setup-cmd.ts +38 -1
- package/skills/magpie/scripts/shard.ts +171 -0
- package/skills/magpie/scripts/status-cmd.ts +7 -4
- package/skills/magpie/scripts/types.ts +50 -0
- package/skills/magpie/skill.json +2 -2
- package/skills/magpie/templates/styles.css +66 -0
- package/skills/migrate/README.md +194 -0
- package/skills/migrate/SKILL.md +197 -0
- package/skills/migrate/bin/migrate +15 -0
- package/skills/migrate/bin/migrate.ts +309 -0
- package/skills/migrate/biome.json +35 -0
- package/skills/migrate/bun.lock +24 -0
- package/skills/migrate/docs/architecture.md +294 -0
- package/skills/migrate/docs/reference.md +590 -0
- package/skills/migrate/fixtures/tiny-express/GROUND-TRUTH.md +39 -0
- package/skills/migrate/fixtures/tiny-express/app.js +29 -0
- package/skills/migrate/fixtures/tiny-express/cron.js +6 -0
- package/skills/migrate/fixtures/tiny-express/reports/daily-users.json +6 -0
- package/skills/migrate/fixtures/tiny-express/schema.sql +12 -0
- package/skills/migrate/fixtures/tiny-express/settings.json +4 -0
- package/skills/migrate/fixtures/tiny-express/views/users.html +9 -0
- package/skills/migrate/fixtures/tiny-webforms/Controllers/UsersController.cs +68 -0
- package/skills/migrate/fixtures/tiny-webforms/Default.aspx +7 -0
- package/skills/migrate/fixtures/tiny-webforms/Default.aspx.cs +14 -0
- package/skills/migrate/fixtures/tiny-webforms/GROUND-TRUTH.md +50 -0
- package/skills/migrate/fixtures/tiny-webforms/Integrations/BillingClient.cs +16 -0
- package/skills/migrate/fixtures/tiny-webforms/Jobs/NightlyDigestJob.cs +33 -0
- package/skills/migrate/fixtures/tiny-webforms/Reports/DailyUsers.rdl +11 -0
- package/skills/migrate/fixtures/tiny-webforms/Schema.sql +12 -0
- package/skills/migrate/fixtures/tiny-webforms/Site.master +16 -0
- package/skills/migrate/fixtures/tiny-webforms/Users.aspx +8 -0
- package/skills/migrate/fixtures/tiny-webforms/Users.aspx.cs +14 -0
- package/skills/migrate/fixtures/tiny-webforms/web.config +10 -0
- package/skills/migrate/install.sh +68 -0
- package/skills/migrate/package.json +17 -0
- package/skills/migrate/references/phases/enumerate.md +291 -0
- package/skills/migrate/references/phases/extract.md +652 -0
- package/skills/migrate/references/phases/parity.md +275 -0
- package/skills/migrate/references/phases/probe.md +135 -0
- package/skills/migrate/references/phases/queue.md +242 -0
- package/skills/migrate/references/phases/seam.md +416 -0
- package/skills/migrate/references/recipes/README.md +116 -0
- package/skills/migrate/references/recipes/aspnet.md +287 -0
- package/skills/migrate/references/run-ops.md +280 -0
- package/skills/migrate/scripts/__tests__/census.test.ts +775 -0
- package/skills/migrate/scripts/__tests__/check.test.ts +458 -0
- package/skills/migrate/scripts/__tests__/citations.test.ts +156 -0
- package/skills/migrate/scripts/__tests__/cli.test.ts +183 -0
- package/skills/migrate/scripts/__tests__/concurrency.test.ts +164 -0
- package/skills/migrate/scripts/__tests__/config.test.ts +112 -0
- package/skills/migrate/scripts/__tests__/e2e-express.test.ts +1093 -0
- package/skills/migrate/scripts/__tests__/e2e-webforms.test.ts +1276 -0
- package/skills/migrate/scripts/__tests__/e2e.test.ts +320 -0
- package/skills/migrate/scripts/__tests__/ids.test.ts +38 -0
- package/skills/migrate/scripts/__tests__/import.test.ts +155 -0
- package/skills/migrate/scripts/__tests__/init.test.ts +192 -0
- package/skills/migrate/scripts/__tests__/leaks.test.ts +176 -0
- package/skills/migrate/scripts/__tests__/lock.test.ts +183 -0
- package/skills/migrate/scripts/__tests__/paths.test.ts +129 -0
- package/skills/migrate/scripts/__tests__/phase-cmd.test.ts +151 -0
- package/skills/migrate/scripts/__tests__/phases.test.ts +70 -0
- package/skills/migrate/scripts/__tests__/queue.test.ts +475 -0
- package/skills/migrate/scripts/__tests__/report.test.ts +150 -0
- package/skills/migrate/scripts/__tests__/run-state.test.ts +136 -0
- package/skills/migrate/scripts/__tests__/status-reset.test.ts +318 -0
- package/skills/migrate/scripts/__tests__/store.test.ts +132 -0
- package/skills/migrate/scripts/__tests__/validate.test.ts +54 -0
- package/skills/migrate/scripts/census-cmd.ts +109 -0
- package/skills/migrate/scripts/census.ts +342 -0
- package/skills/migrate/scripts/check-cmd.ts +24 -0
- package/skills/migrate/scripts/check.ts +376 -0
- package/skills/migrate/scripts/citations.ts +92 -0
- package/skills/migrate/scripts/config.ts +237 -0
- package/skills/migrate/scripts/ids.ts +31 -0
- package/skills/migrate/scripts/import-cmd.ts +141 -0
- package/skills/migrate/scripts/init-cmd.ts +118 -0
- package/skills/migrate/scripts/leaks.ts +184 -0
- package/skills/migrate/scripts/lock.ts +188 -0
- package/skills/migrate/scripts/paths.ts +103 -0
- package/skills/migrate/scripts/phase-cmd.ts +63 -0
- package/skills/migrate/scripts/phases.ts +113 -0
- package/skills/migrate/scripts/queue-cmd.ts +98 -0
- package/skills/migrate/scripts/queue.ts +258 -0
- package/skills/migrate/scripts/report-cmd.ts +47 -0
- package/skills/migrate/scripts/report.ts +131 -0
- package/skills/migrate/scripts/reset-cmd.ts +120 -0
- package/skills/migrate/scripts/status-cmd.ts +52 -0
- package/skills/migrate/scripts/store.ts +159 -0
- package/skills/migrate/scripts/types.ts +137 -0
- package/skills/migrate/scripts/validate.ts +221 -0
- package/skills/migrate/skill.json +33 -0
- package/skills/migrate/templates/config.toml +27 -0
- package/skills/migrate/templates/queue-item.md +17 -0
- package/skills/migrate/tsconfig.json +18 -0
- package/skills/migrate/uninstall.sh +31 -0
- package/skills/sluice/SKILL.md +82 -0
- package/skills/sluice/references/deep-channel.md +94 -0
- package/skills/sluice/references/finish.md +35 -0
- package/skills/sluice/references/intent.md +29 -0
- package/skills/sluice/references/review.md +42 -0
- package/skills/sluice/references/root-cause.md +38 -0
- package/skills/sluice/references/show-or-say.md +36 -0
- package/skills/sluice/references/test-first.md +35 -0
- package/skills/sluice/references/verify.md +26 -0
- package/skills/sluice/skill.json +32 -0
package/README.md
CHANGED
|
@@ -24,6 +24,12 @@ Auto-detects Claude Code, Cursor, Codex, or Gemini CLI. Use `--tool claude` to t
|
|
|
24
24
|
|
|
25
25
|
## Skills
|
|
26
26
|
|
|
27
|
+
### Migration
|
|
28
|
+
|
|
29
|
+
| Skill | What it does |
|
|
30
|
+
|-------|--------------|
|
|
31
|
+
| **migrate** | Walks a legacy codebase through probe, enumerate, seam, extract, parity, and queue: measured surface coverage, an empirically derived capability seam, cited requirements, a parity plan, and a batch decision queue. Bundles a Bun CLI that enforces the coverage arithmetic and phase ordering instead of trusting it. |
|
|
32
|
+
|
|
27
33
|
### Code Architecture
|
|
28
34
|
|
|
29
35
|
Skills that analyze how code is structured: module boundaries, coupling, complexity, contracts, and evolution over time.
|
|
@@ -91,6 +97,14 @@ Skills for producing job application materials that read like a human wrote them
|
|
|
91
97
|
| **cover-letter-rewrite** | Reviser | Audit-driven targeted rewrite of an existing letter. Focus modes: humanize, align, tighten, structure, tone. Preserves voice where it already works. |
|
|
92
98
|
| **cover-letter-persona** | Voice profile | Reusable writing personas using the NNGroup 4-dimension tone framework (funny-serious, formal-casual, respectful-irreverent, enthusiastic-matter-of-fact) adapted for professional correspondence. |
|
|
93
99
|
|
|
100
|
+
### Workflow
|
|
101
|
+
|
|
102
|
+
Skills that shape how work gets done rather than analyzing code.
|
|
103
|
+
|
|
104
|
+
| Skill | What it does |
|
|
105
|
+
|-------|--------------|
|
|
106
|
+
| **sluice** | Routes work by change shape into four channels (`bypass`, `fast`, `main`, `deep`) and applies only the rules each channel needs, so a one-line fix does not pay the cost of a multi-subsystem build. Six rules live as one-liners in the router; the full treatment sits in references read only on friction. Claude Code only. Conflicts with the superpowers plugin, which requires its own fixed pipeline up front for anything that adds to or changes what the software does, not just code edits; disable superpowers before installing. |
|
|
107
|
+
|
|
94
108
|
### Orchestration
|
|
95
109
|
|
|
96
110
|
Skills that compose the other audit skills into higher-level workflows.
|
|
@@ -145,11 +159,13 @@ To pin to the current version, do nothing: skills are not auto-updated. `update`
|
|
|
145
159
|
|
|
146
160
|
## Activation Modes (Claude Code)
|
|
147
161
|
|
|
148
|
-
Some skills (like `terse`) support activation modes. Pick one at install time:
|
|
162
|
+
Some skills (like `terse` and `sluice`) support activation modes. Pick one at install time:
|
|
149
163
|
|
|
150
|
-
- **session
|
|
164
|
+
- **session**: invoke the skill manually with `/<skill>` each session
|
|
151
165
|
- **global**: auto-activate every Claude Code session via a `SessionStart` hook in `.claude/settings.json`
|
|
152
166
|
|
|
167
|
+
Each skill declares its own default: `terse` defaults to session, `sluice` defaults to global because a router that is not always on does not route.
|
|
168
|
+
|
|
153
169
|
If a skill declares activation support and you're installing for Claude Code interactively, the CLI prompts you. Use `--activation session` or `--activation global` for scripted installs. `remove` strips the hook cleanly; `update` preserves your choice across version bumps.
|
|
154
170
|
|
|
155
171
|
## Supported Tools
|
package/dist/cli/index.js
CHANGED
|
@@ -423,8 +423,10 @@ function runScript(scriptPath, cwd) {
|
|
|
423
423
|
});
|
|
424
424
|
return { ok: result.exitCode === 0, code: result.exitCode ?? 1 };
|
|
425
425
|
}
|
|
426
|
-
function matchesSkillDirective(
|
|
427
|
-
|
|
426
|
+
function matchesSkillDirective(hook, skillName) {
|
|
427
|
+
if (hook.skill !== undefined)
|
|
428
|
+
return hook.skill === skillName;
|
|
429
|
+
return hook.command.includes(`Activate ${skillName} skill`);
|
|
428
430
|
}
|
|
429
431
|
async function wireSessionStartHook(settingsPath, skillName, directive) {
|
|
430
432
|
let settings = {};
|
|
@@ -438,12 +440,12 @@ async function wireSessionStartHook(settingsPath, skillName, directive) {
|
|
|
438
440
|
const command = `echo '${directive}'`;
|
|
439
441
|
for (const group of settings.hooks.SessionStart) {
|
|
440
442
|
for (const hook of group.hooks ?? []) {
|
|
441
|
-
if (matchesSkillDirective(hook
|
|
443
|
+
if (matchesSkillDirective(hook, skillName))
|
|
442
444
|
return;
|
|
443
445
|
}
|
|
444
446
|
}
|
|
445
447
|
settings.hooks.SessionStart.push({
|
|
446
|
-
hooks: [{ type: "command", command }]
|
|
448
|
+
hooks: [{ type: "command", command, skill: skillName }]
|
|
447
449
|
});
|
|
448
450
|
mkdirSync(dirname(settingsPath), { recursive: true });
|
|
449
451
|
await Bun.write(settingsPath, JSON.stringify(settings, null, 2) + `
|
|
@@ -457,7 +459,7 @@ async function unwireSessionStartHook(settingsPath, skillName) {
|
|
|
457
459
|
if (!sessionStart)
|
|
458
460
|
return;
|
|
459
461
|
const filteredGroups = sessionStart.map((group) => ({
|
|
460
|
-
hooks: (group.hooks ?? []).filter((h) => !matchesSkillDirective(h
|
|
462
|
+
hooks: (group.hooks ?? []).filter((h) => !matchesSkillDirective(h, skillName))
|
|
461
463
|
})).filter((group) => group.hooks.length > 0);
|
|
462
464
|
if (filteredGroups.length === 0) {
|
|
463
465
|
delete settings.hooks.SessionStart;
|
|
@@ -865,6 +867,10 @@ async function installSkill(cwd, manifest, files, targetTools, activation) {
|
|
|
865
867
|
return { ok: true, installed, skipped };
|
|
866
868
|
}
|
|
867
869
|
|
|
870
|
+
// src/cli/commands/remove.ts
|
|
871
|
+
import { existsSync as existsSync6, statSync as statSync2, unlinkSync as unlinkSync4, rmSync as rmSync4 } from "node:fs";
|
|
872
|
+
import { basename, join as join7 } from "node:path";
|
|
873
|
+
|
|
868
874
|
// src/cli/github.ts
|
|
869
875
|
var REPO2 = "iceinvein/agent-skills";
|
|
870
876
|
var BRANCH2 = "master";
|
|
@@ -969,6 +975,28 @@ function resolveBundlePaths2(entries, bundle) {
|
|
|
969
975
|
}
|
|
970
976
|
|
|
971
977
|
// src/cli/commands/remove.ts
|
|
978
|
+
var SHARED_CONFIG_FILES = new Set([
|
|
979
|
+
".claude/settings.json",
|
|
980
|
+
".claude/settings.local.json",
|
|
981
|
+
".cursor/mcp.json",
|
|
982
|
+
".gemini/settings.json"
|
|
983
|
+
]);
|
|
984
|
+
function isSharedConfigFile(relPath) {
|
|
985
|
+
if (SHARED_CONFIG_FILES.has(relPath))
|
|
986
|
+
return true;
|
|
987
|
+
const parts = relPath.split("/");
|
|
988
|
+
const name = basename(relPath);
|
|
989
|
+
const isConfigName = name === "settings.json" || name === "settings.local.json" || name === "mcp.json";
|
|
990
|
+
return parts.length === 2 && parts[0].startsWith(".") && isConfigName;
|
|
991
|
+
}
|
|
992
|
+
function removeFileOrDir(fullPath) {
|
|
993
|
+
const stat = statSync2(fullPath);
|
|
994
|
+
if (stat.isDirectory()) {
|
|
995
|
+
rmSync4(fullPath, { recursive: true, force: true });
|
|
996
|
+
} else {
|
|
997
|
+
unlinkSync4(fullPath);
|
|
998
|
+
}
|
|
999
|
+
}
|
|
972
1000
|
async function removeSkill(cwd, skillName) {
|
|
973
1001
|
const lockfile = await readLockfile(cwd);
|
|
974
1002
|
const entry = lockfile.skills[skillName];
|
|
@@ -993,18 +1021,28 @@ async function removeSkill(cwd, skillName) {
|
|
|
993
1021
|
});
|
|
994
1022
|
await adapter.remove(cwd, manifestResult.manifest, toolFiles);
|
|
995
1023
|
}
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1024
|
+
await removeSkillFromLockfile(cwd, skillName);
|
|
1025
|
+
return { ok: true, removed: entry.files };
|
|
1026
|
+
}
|
|
1027
|
+
const removed = [];
|
|
1028
|
+
const warnings = [];
|
|
1029
|
+
for (const file of entry.files) {
|
|
1030
|
+
if (isSharedConfigFile(file)) {
|
|
1031
|
+
const fullPath2 = join7(cwd, file);
|
|
1032
|
+
if (existsSync6(fullPath2)) {
|
|
1033
|
+
await unwireSessionStartHook(fullPath2, skillName);
|
|
1003
1034
|
}
|
|
1035
|
+
warnings.push(`Manifest unavailable (${manifestResult.error}). Left '${file}' in place, only removing '${skillName}'s SessionStart hook from it; any MCP server entries it owns were not touched.`);
|
|
1036
|
+
continue;
|
|
1004
1037
|
}
|
|
1038
|
+
const fullPath = join7(cwd, file);
|
|
1039
|
+
if (!existsSync6(fullPath))
|
|
1040
|
+
continue;
|
|
1041
|
+
removeFileOrDir(fullPath);
|
|
1042
|
+
removed.push(file);
|
|
1005
1043
|
}
|
|
1006
1044
|
await removeSkillFromLockfile(cwd, skillName);
|
|
1007
|
-
return { ok: true, removed
|
|
1045
|
+
return { ok: true, removed, ...warnings.length > 0 ? { warnings } : {} };
|
|
1008
1046
|
}
|
|
1009
1047
|
|
|
1010
1048
|
// src/cli/commands/list.ts
|
|
@@ -1026,6 +1064,30 @@ async function infoSkill(skillName) {
|
|
|
1026
1064
|
}
|
|
1027
1065
|
|
|
1028
1066
|
// src/cli/commands/remove.ts
|
|
1067
|
+
import { existsSync as existsSync7, statSync as statSync3, unlinkSync as unlinkSync5, rmSync as rmSync5 } from "node:fs";
|
|
1068
|
+
import { basename as basename2, join as join8 } from "node:path";
|
|
1069
|
+
var SHARED_CONFIG_FILES2 = new Set([
|
|
1070
|
+
".claude/settings.json",
|
|
1071
|
+
".claude/settings.local.json",
|
|
1072
|
+
".cursor/mcp.json",
|
|
1073
|
+
".gemini/settings.json"
|
|
1074
|
+
]);
|
|
1075
|
+
function isSharedConfigFile2(relPath) {
|
|
1076
|
+
if (SHARED_CONFIG_FILES2.has(relPath))
|
|
1077
|
+
return true;
|
|
1078
|
+
const parts = relPath.split("/");
|
|
1079
|
+
const name = basename2(relPath);
|
|
1080
|
+
const isConfigName = name === "settings.json" || name === "settings.local.json" || name === "mcp.json";
|
|
1081
|
+
return parts.length === 2 && parts[0].startsWith(".") && isConfigName;
|
|
1082
|
+
}
|
|
1083
|
+
function removeFileOrDir2(fullPath) {
|
|
1084
|
+
const stat = statSync3(fullPath);
|
|
1085
|
+
if (stat.isDirectory()) {
|
|
1086
|
+
rmSync5(fullPath, { recursive: true, force: true });
|
|
1087
|
+
} else {
|
|
1088
|
+
unlinkSync5(fullPath);
|
|
1089
|
+
}
|
|
1090
|
+
}
|
|
1029
1091
|
async function removeSkill2(cwd, skillName) {
|
|
1030
1092
|
const lockfile = await readLockfile(cwd);
|
|
1031
1093
|
const entry = lockfile.skills[skillName];
|
|
@@ -1050,18 +1112,28 @@ async function removeSkill2(cwd, skillName) {
|
|
|
1050
1112
|
});
|
|
1051
1113
|
await adapter.remove(cwd, manifestResult.manifest, toolFiles);
|
|
1052
1114
|
}
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1115
|
+
await removeSkillFromLockfile(cwd, skillName);
|
|
1116
|
+
return { ok: true, removed: entry.files };
|
|
1117
|
+
}
|
|
1118
|
+
const removed = [];
|
|
1119
|
+
const warnings = [];
|
|
1120
|
+
for (const file of entry.files) {
|
|
1121
|
+
if (isSharedConfigFile2(file)) {
|
|
1122
|
+
const fullPath2 = join8(cwd, file);
|
|
1123
|
+
if (existsSync7(fullPath2)) {
|
|
1124
|
+
await unwireSessionStartHook(fullPath2, skillName);
|
|
1060
1125
|
}
|
|
1126
|
+
warnings.push(`Manifest unavailable (${manifestResult.error}). Left '${file}' in place, only removing '${skillName}'s SessionStart hook from it; any MCP server entries it owns were not touched.`);
|
|
1127
|
+
continue;
|
|
1061
1128
|
}
|
|
1129
|
+
const fullPath = join8(cwd, file);
|
|
1130
|
+
if (!existsSync7(fullPath))
|
|
1131
|
+
continue;
|
|
1132
|
+
removeFileOrDir2(fullPath);
|
|
1133
|
+
removed.push(file);
|
|
1062
1134
|
}
|
|
1063
1135
|
await removeSkillFromLockfile(cwd, skillName);
|
|
1064
|
-
return { ok: true, removed
|
|
1136
|
+
return { ok: true, removed, ...warnings.length > 0 ? { warnings } : {} };
|
|
1065
1137
|
}
|
|
1066
1138
|
|
|
1067
1139
|
// src/cli/commands/install.ts
|
|
@@ -1131,7 +1203,7 @@ async function updateAllSkills(cwd) {
|
|
|
1131
1203
|
}
|
|
1132
1204
|
|
|
1133
1205
|
// src/cli/commands/bump.ts
|
|
1134
|
-
import { join as
|
|
1206
|
+
import { join as join9 } from "node:path";
|
|
1135
1207
|
|
|
1136
1208
|
// src/cli/semver.ts
|
|
1137
1209
|
function bumpVersion(current, level) {
|
|
@@ -1152,7 +1224,7 @@ function bumpVersion(current, level) {
|
|
|
1152
1224
|
|
|
1153
1225
|
// src/cli/commands/bump.ts
|
|
1154
1226
|
async function bumpSkill(repoRoot, skillName, level) {
|
|
1155
|
-
const manifestPath =
|
|
1227
|
+
const manifestPath = join9(repoRoot, "skills", skillName, "skill.json");
|
|
1156
1228
|
const file = Bun.file(manifestPath);
|
|
1157
1229
|
if (!await file.exists()) {
|
|
1158
1230
|
return { ok: false, error: `Skill '${skillName}' not found at skills/${skillName}/skill.json` };
|
|
@@ -1223,7 +1295,7 @@ async function bumpAllChanged(repoRoot, level, dryRun) {
|
|
|
1223
1295
|
if (skillVersionChanged(repoRoot, skillName, tag))
|
|
1224
1296
|
continue;
|
|
1225
1297
|
if (dryRun) {
|
|
1226
|
-
const manifestPath =
|
|
1298
|
+
const manifestPath = join9(repoRoot, "skills", skillName, "skill.json");
|
|
1227
1299
|
const file = Bun.file(manifestPath);
|
|
1228
1300
|
if (!await file.exists())
|
|
1229
1301
|
continue;
|
|
@@ -1279,10 +1351,10 @@ async function checkForUpdates(cwd) {
|
|
|
1279
1351
|
}
|
|
1280
1352
|
|
|
1281
1353
|
// src/cli/lockfile.ts
|
|
1282
|
-
import { join as
|
|
1354
|
+
import { join as join10 } from "node:path";
|
|
1283
1355
|
var LOCKFILE_NAME2 = ".agent-skills.lock";
|
|
1284
1356
|
async function readLockfile2(cwd) {
|
|
1285
|
-
const path =
|
|
1357
|
+
const path = join10(cwd, LOCKFILE_NAME2);
|
|
1286
1358
|
const file = Bun.file(path);
|
|
1287
1359
|
if (!await file.exists()) {
|
|
1288
1360
|
return { skills: {} };
|
|
@@ -3162,7 +3234,7 @@ async function pickActivation(skillName, modes) {
|
|
|
3162
3234
|
|
|
3163
3235
|
// src/cli/index.ts
|
|
3164
3236
|
import { mkdirSync as mkdirSync4 } from "fs";
|
|
3165
|
-
import { join as
|
|
3237
|
+
import { join as join11 } from "path";
|
|
3166
3238
|
import { homedir } from "os";
|
|
3167
3239
|
async function otherScopeSkillCount(currentDir) {
|
|
3168
3240
|
const home = homedir();
|
|
@@ -3266,7 +3338,7 @@ async function resolveTargetTools(installDir, isGlobal, flags) {
|
|
|
3266
3338
|
for (const tool of picked) {
|
|
3267
3339
|
const dir = TOOL_DIRS[tool];
|
|
3268
3340
|
if (dir)
|
|
3269
|
-
mkdirSync4(
|
|
3341
|
+
mkdirSync4(join11(installDir, dir), { recursive: true });
|
|
3270
3342
|
}
|
|
3271
3343
|
return picked;
|
|
3272
3344
|
}
|
|
@@ -3370,6 +3442,11 @@ Installing ${names.length} skills...
|
|
|
3370
3442
|
console.error(`Error: ${result.error}`);
|
|
3371
3443
|
process.exit(1);
|
|
3372
3444
|
}
|
|
3445
|
+
if (result.warnings) {
|
|
3446
|
+
for (const warning of result.warnings) {
|
|
3447
|
+
console.warn(`\u26A0 ${warning}`);
|
|
3448
|
+
}
|
|
3449
|
+
}
|
|
3373
3450
|
console.log(`\u2713 Removed '${skillName}'`);
|
|
3374
3451
|
break;
|
|
3375
3452
|
}
|
package/package.json
CHANGED
package/skills/index.json
CHANGED
|
@@ -219,9 +219,15 @@
|
|
|
219
219
|
},
|
|
220
220
|
{
|
|
221
221
|
"name": "magpie",
|
|
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.",
|
|
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. Splits oversized diffs into budgeted shards and rebuilds the diff from the local clone when gh pr diff refuses it.",
|
|
223
223
|
"type": "prompt",
|
|
224
|
-
"version": "0.
|
|
224
|
+
"version": "0.10.0"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"name": "migrate",
|
|
228
|
+
"description": "Source-agnostic legacy migration mapping. Walks a legacy codebase through probe, enumerate, seam, extract, parity, and queue, building an auditable requirements ledger with mandatory citations and a `migrate check` gate in place of self-reported completeness. Use when the user asks to migrate, re-specify, replatform, or map a legacy system onto a new stack, or to resume, check, or report on a mapping run already under way.",
|
|
229
|
+
"type": "prompt",
|
|
230
|
+
"version": "0.2.0"
|
|
225
231
|
},
|
|
226
232
|
{
|
|
227
233
|
"name": "module-secret-auditor",
|
|
@@ -273,6 +279,12 @@
|
|
|
273
279
|
],
|
|
274
280
|
"quick": false
|
|
275
281
|
},
|
|
282
|
+
{
|
|
283
|
+
"name": "sluice",
|
|
284
|
+
"description": "Routes work by change shape into four channels (bypass, fast, main, deep) and applies only the rules each channel needs, so a one-line fix does not pay the cost of a multi-subsystem build. Carries six rules as one-liners in the router and the full treatment in references read only on friction. Claude Code only; conflicts with the superpowers plugin.",
|
|
285
|
+
"type": "prompt",
|
|
286
|
+
"version": "1.0.0"
|
|
287
|
+
},
|
|
276
288
|
{
|
|
277
289
|
"name": "temporal-coupling-detector",
|
|
278
290
|
"description": "Hidden ordering dependency analysis: detect two-phase init, method order dependencies, invisible preconditions, and resource lifecycle violations; fix with types, parameters, and factory patterns",
|
package/skills/magpie/README.md
CHANGED
|
@@ -12,6 +12,7 @@ Given a GitHub PR number, dispatches five specialist subagents in parallel (secu
|
|
|
12
12
|
- `gh` on PATH, authenticated (`gh auth status`)
|
|
13
13
|
- `git` on PATH
|
|
14
14
|
- `codex` on PATH, authenticated (optional; if absent the peer-review stage falls back to a Claude second-opinion subagent)
|
|
15
|
+
- the code-intelligence MCP server, with a completed index for the repo under review (optional; if absent the specialists review from the diff and worktree alone)
|
|
15
16
|
|
|
16
17
|
## Install
|
|
17
18
|
|
|
@@ -54,7 +55,7 @@ The fixture lives at `fixtures/example-pr/` (pr.json + findings.final.json + pos
|
|
|
54
55
|
## Layout
|
|
55
56
|
|
|
56
57
|
- `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: `
|
|
58
|
+
- `references/` holds the prompt bodies the walkthrough loads on demand, one file per stage that needs one: `scout.md` (stage 3, the PR-brief prompt and the `brief.json` contract), `specialists.md` (stage 4, the five focus blocks plus the shared output contract and the codebase-intelligence block), `critic.md` (stage 6), `peer-review.md` (stage 7, including the Claude-fallback preamble). They ship in the bundle and sit next to `SKILL.md` once installed.
|
|
58
59
|
- `skill.json` is the agent-skills manifest.
|
|
59
60
|
- `bin/magpie` is the CLI invoked by the agent during stages; symlinked onto PATH by `install.sh`.
|
|
60
61
|
- `scripts/` holds the implementation (server, dedupe, render, setup, cleanup, etc.).
|