@iceinvein/agent-skills 0.1.32 → 0.1.34

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 CHANGED
@@ -91,12 +91,6 @@ Skills for producing job application materials that read like a human wrote them
91
91
  | **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
92
  | **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
93
 
94
- ### Tooling
95
-
96
- | Skill | Type | What it does |
97
- |-------|------|--------------|
98
- | **code-intelligence** | MCP server | Semantic code search, call hierarchy, dependency graphs, and impact analysis. Powered by `@iceinvein/code-intelligence-mcp`. |
99
-
100
94
  ### Orchestration
101
95
 
102
96
  Skills that compose the other audit skills into higher-level workflows.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iceinvein/agent-skills",
3
- "version": "0.1.32",
3
+ "version": "0.1.34",
4
4
  "description": "Install agent skills into AI coding tools",
5
5
  "author": "iceinvein",
6
6
  "license": "MIT",
@@ -106,7 +106,7 @@ Scan-first, dialogue-second. **Read code before forming opinions.**
106
106
 
107
107
  ### Phase 1: Codebase Scan
108
108
 
109
- Use available tools (code-intelligence MCP, grep, glob, file reads):
109
+ Use available tools (grep, glob, file reads):
110
110
  - **Dependency mapping** — trace imports/requires to build module dependency graph. Note direction and cycles.
111
111
  - **Structure mapping** — directory layout, module boundaries, entry points
112
112
  - **Size analysis** — identify oversized files/modules (signal of unclear responsibilities)
@@ -158,7 +158,7 @@ Present prescriptions and ask:
158
158
 
159
159
  ## Guard Rails
160
160
 
161
- **Evidence before opinion.** Read code before diagnosing. Use code-intelligence MCP tools, grep, glob whatever is available.
161
+ **Evidence before opinion.** Read code before diagnosing. Use grep, glob, and file reads; whatever is available.
162
162
 
163
163
  **Name the pattern, cite the location.** "Strategy pattern in `src/providers/types.ts:24`" — not "you seem to use a strategy-like approach."
164
164
 
@@ -1,13 +1,20 @@
1
1
  {
2
2
  "name": "codebase-architecture",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Architecture review for existing codebases or structured design for new projects, with patterns reference",
5
5
  "author": "iceinvein",
6
6
  "type": "prompt",
7
- "tools": ["claude", "cursor", "codex", "gemini"],
7
+ "tools": [
8
+ "claude",
9
+ "cursor",
10
+ "codex",
11
+ "gemini"
12
+ ],
8
13
  "files": {
9
14
  "prompt": "SKILL.md",
10
- "supporting": ["patterns-reference.md"]
15
+ "supporting": [
16
+ "patterns-reference.md"
17
+ ]
11
18
  },
12
19
  "install": {
13
20
  "claude": {
package/skills/index.json CHANGED
@@ -9,17 +9,11 @@
9
9
  ],
10
10
  "quick": false
11
11
  },
12
- {
13
- "name": "code-intelligence",
14
- "description": "Semantic code search, call hierarchy, dependency graphs, and impact analysis via MCP",
15
- "type": "code",
16
- "version": "1.0.0"
17
- },
18
12
  {
19
13
  "name": "codebase-architecture",
20
14
  "description": "Architecture review for existing codebases or structured design for new projects, with patterns reference",
21
15
  "type": "prompt",
22
- "version": "1.0.0",
16
+ "version": "1.0.1",
23
17
  "applies": [
24
18
  "any",
25
19
  "architecture"
@@ -197,7 +191,7 @@
197
191
  "name": "magpie",
198
192
  "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
193
  "type": "prompt",
200
- "version": "0.5.0"
194
+ "version": "0.5.1"
201
195
  },
202
196
  {
203
197
  "name": "module-secret-auditor",
@@ -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"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "magpie",
3
- "version": "0.5.0",
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",
@@ -1,31 +0,0 @@
1
- {
2
- "name": "code-intelligence",
3
- "version": "1.0.0",
4
- "description": "Semantic code search, call hierarchy, dependency graphs, and impact analysis via MCP",
5
- "author": "iceinvein",
6
- "type": "code",
7
- "tools": ["claude", "cursor"],
8
- "mcp": {
9
- "package": "@iceinvein/code-intelligence-mcp",
10
- "command": "npx",
11
- "args": ["-y", "@iceinvein/code-intelligence-mcp"]
12
- },
13
- "install": {
14
- "claude": {
15
- "mcpServers": {
16
- "code-intelligence": {
17
- "command": "npx",
18
- "args": ["-y", "@iceinvein/code-intelligence-mcp"]
19
- }
20
- }
21
- },
22
- "cursor": {
23
- "mcpServers": {
24
- "code-intelligence": {
25
- "command": "npx",
26
- "args": ["-y", "@iceinvein/code-intelligence-mcp"]
27
- }
28
- }
29
- }
30
- }
31
- }