@iceinvein/agent-skills 0.1.33 → 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.33",
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"
@@ -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
- }