@iceinvein/agent-skills 0.1.33 → 0.1.35
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 +19 -25
- package/package.json +2 -1
- package/skills/bounded-context-auditor/skill.json +8 -3
- package/skills/codebase-architecture/SKILL.md +2 -2
- package/skills/codebase-architecture/skill.json +10 -3
- package/skills/cognitive-load-auditor/skill.json +8 -3
- package/skills/cohesion-analyzer/skill.json +8 -3
- package/skills/complexity-accountant/skill.json +8 -3
- package/skills/composability-auditor/skill.json +8 -3
- package/skills/contract-enforcer/skill.json +8 -3
- package/skills/coupling-auditor/skill.json +8 -3
- package/skills/cover-letter/skill.json +26 -0
- package/skills/cover-letter-audit/skill.json +26 -0
- package/skills/cover-letter-persona/skill.json +26 -0
- package/skills/cover-letter-rewrite/skill.json +26 -0
- package/skills/cover-letter-write/skill.json +26 -0
- package/skills/cqs-auditor/skill.json +8 -3
- package/skills/demeter-enforcer/skill.json +8 -3
- package/skills/dependency-direction-auditor/skill.json +8 -3
- package/skills/design-review/SKILL.md +1 -1
- package/skills/design-review/skill.json +8 -3
- package/skills/error-strategist/skill.json +8 -3
- package/skills/event-design-reviewer/skill.json +8 -3
- package/skills/evolution-analyzer/skill.json +8 -3
- package/skills/gestalt-reviewer/skill.json +8 -3
- package/skills/idempotency-guardian/skill.json +8 -3
- package/skills/index.json +81 -57
- package/skills/integration-pattern-auditor/skill.json +8 -3
- package/skills/module-secret-auditor/skill.json +8 -3
- package/skills/port-adapter-auditor/skill.json +8 -3
- package/skills/rams-design-audit/skill.json +8 -3
- package/skills/seam-finder/skill.json +8 -3
- package/skills/simplicity-razor/skill.json +8 -3
- package/skills/temporal-coupling-detector/skill.json +8 -3
- package/skills/type-driven-designer/skill.json +8 -3
- package/skills/unidirectional-flow-enforcer/skill.json +8 -3
- package/skills/code-intelligence/skill.json +0 -31
package/README.md
CHANGED
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
[](https://openai.com/codex)
|
|
8
8
|
[](https://github.com/google-gemini/gemini-cli)
|
|
9
9
|
|
|
10
|
-
Thinking frameworks from foundational software engineering texts
|
|
10
|
+
Thinking frameworks from foundational software engineering texts, installed as skills for AI coding agents.
|
|
11
11
|
|
|
12
|
-
Each skill encodes a specific design methodology (Brooks, Parnas, Rams, Feathers, etc.) so your agent doesn't just write code
|
|
12
|
+
Each skill encodes a specific design methodology (Brooks, Parnas, Rams, Feathers, etc.) so your agent doesn't just write code; it reasons about structure, coupling, complexity, and perception the way these authors taught us to.
|
|
13
13
|
|
|
14
14
|
## Install
|
|
15
15
|
|
|
@@ -26,22 +26,22 @@ Auto-detects Claude Code, Cursor, Codex, or Gemini CLI. Use `--tool claude` to t
|
|
|
26
26
|
|
|
27
27
|
### Code Architecture
|
|
28
28
|
|
|
29
|
-
Skills that analyze how code is structured
|
|
29
|
+
Skills that analyze how code is structured: module boundaries, coupling, complexity, contracts, and evolution over time.
|
|
30
30
|
|
|
31
31
|
| Skill | Based on | What it does |
|
|
32
32
|
|-------|----------|--------------|
|
|
33
33
|
| **complexity-accountant** | Ousterhout, *A Philosophy of Software Design* | Treats complexity as a finite budget. Every abstraction must justify itself by being deep (simple interface, rich functionality), not shallow. |
|
|
34
|
-
| **contract-enforcer** | Meyer, *Object-Oriented Software Construction* | Before writing non-trivial functions, articulates preconditions, postconditions, invariants, and failure contracts
|
|
34
|
+
| **contract-enforcer** | Meyer, *Object-Oriented Software Construction* | Before writing non-trivial functions, articulates preconditions, postconditions, invariants, and failure contracts, then verifies the implementation satisfies them. |
|
|
35
35
|
| **module-secret-auditor** | Parnas, *On the Criteria for Decomposing Systems into Modules* | Every module should hide exactly one design decision that's likely to change. Boundaries drawn by change-reason, not by noun or technical layer. |
|
|
36
36
|
| **coupling-auditor** | Constantine & Yourdon, *Structured Design* | Classifies coupling between modules on the spectrum (data > stamp > control > common > content) and recommends one step down. |
|
|
37
37
|
| **simplicity-razor** | Hickey, *Simple Made Easy* | Distinguishes simple (not interleaved) from easy (familiar). Names the strands, detects complecting, and decomplects or justifies. |
|
|
38
38
|
| **error-strategist** | Duffy & Abrahams | Classifies errors (bug/recoverable/fatal), assigns exception safety guarantees (nothrow/strong/basic), and designs recovery boundaries. |
|
|
39
|
-
| **seam-finder** | Feathers, *Working Effectively with Legacy Code* | Before changing existing code, finds seams
|
|
40
|
-
| **evolution-analyzer** | Lehman, *Laws of Software Evolution* | Evaluates changes through the Laws of Software Evolution
|
|
39
|
+
| **seam-finder** | Feathers, *Working Effectively with Legacy Code* | Before changing existing code, finds seams: places where behavior can be altered without editing the code at that point. Minimal incision, preserve the unknown. |
|
|
40
|
+
| **evolution-analyzer** | Lehman, *Laws of Software Evolution* | Evaluates changes through the Laws of Software Evolution: assessing trajectory, debt impact, and whether the system is adapting or accreting. |
|
|
41
41
|
| **cohesion-analyzer** | Constantine & Yourdon, *Structured Design* | Classifies module focus on the 7-level cohesion spectrum (coincidental → functional), identifies mixed responsibilities, and proposes specific split lines. |
|
|
42
42
|
| **demeter-enforcer** | Lieberherr, *Law of Demeter* | Detects chain violations, parameter drilling, and hidden traversal. Fixes with "tell, don't ask" or parameter narrowing to reduce structural coupling. |
|
|
43
43
|
| **dependency-direction-auditor** | Martin, *Clean Architecture* | Traces imports across architectural layers, classifies direction violations by severity (hard/soft/transitive), and recommends specific inversions. |
|
|
44
|
-
| **type-driven-designer** | Wlaschin, *Domain Modeling Made Functional*; Minsky, "Make Illegal States Unrepresentable" | Uses the type system to encode business rules
|
|
44
|
+
| **type-driven-designer** | Wlaschin, *Domain Modeling Made Functional*; Minsky, "Make Illegal States Unrepresentable" | Uses the type system to encode business rules: branded types for validated values, discriminated unions for state machines, elimination of primitive obsession. |
|
|
45
45
|
| **cqs-auditor** | Meyer, *Object-Oriented Software Construction* | Classifies functions as commands (change state) or queries (return data), detects mixed violations, and separates side effects from return values. |
|
|
46
46
|
|
|
47
47
|
### UI & Visual Design
|
|
@@ -50,7 +50,7 @@ Skills that evaluate interfaces through perception, cognition, and design princi
|
|
|
50
50
|
|
|
51
51
|
| Skill | Based on | What it does |
|
|
52
52
|
|-------|----------|--------------|
|
|
53
|
-
| **rams-design-audit** | Dieter Rams, *Ten Principles of Good Design* | Every visual element must earn its presence
|
|
53
|
+
| **rams-design-audit** | Dieter Rams, *Ten Principles of Good Design* | Every visual element must earn its presence. If removing it loses nothing, remove it. Less but better. |
|
|
54
54
|
| **cognitive-load-auditor** | Jeff Johnson, *Designing with the Mind in Mind* | Evaluates UI against Miller's Law (working memory), Hick's Law (decision time), Fitts's Law (target size), and cognitive load theory. |
|
|
55
55
|
| **gestalt-reviewer** | Gestalt psychology | Checks that visual grouping matches logical grouping through proximity, similarity, closure, continuity, and figure-ground analysis. |
|
|
56
56
|
|
|
@@ -61,23 +61,23 @@ Skills for reviewing high-level architecture, messaging patterns, and data flow.
|
|
|
61
61
|
| Skill | Based on | What it does |
|
|
62
62
|
|-------|----------|--------------|
|
|
63
63
|
| **design-review** | Brooks, *The Design of Design* | Interactive interview that tests conceptual integrity, constraint exploitation, removal discipline, and scope control. |
|
|
64
|
-
| **codebase-architecture** |
|
|
64
|
+
| **codebase-architecture** | – | Architecture review for existing codebases or structured design for new projects. Includes a comprehensive patterns reference. |
|
|
65
65
|
| **integration-pattern-auditor** | Hohpe & Woolf, *Enterprise Integration Patterns* | Names the integration pattern (channel, router, transformer, endpoint), verifies delivery guarantees, and identifies missing infrastructure like dead letter queues and idempotency. |
|
|
66
|
-
| **unidirectional-flow-enforcer** | Elm Architecture | Enforces unidirectional state flow in UI applications
|
|
66
|
+
| **unidirectional-flow-enforcer** | Elm Architecture | Enforces unidirectional state flow in UI applications: events up, state down, mutations in one place. Detects bidirectional mutations and cascading effects. |
|
|
67
67
|
| **event-design-reviewer** | Evans, Vernon, Dahan (DDD) | Events should describe what happened in the domain, not what changed in the database. Applies the domain expert test, evaluates payload design, and catches CRUD naming smells. |
|
|
68
68
|
| **bounded-context-auditor** | Evans, *Domain-Driven Design* | Detects linguistic fractures (polysemous terms, contested models), draws context maps with relationship types, and identifies leaking language and shared model pollution. |
|
|
69
69
|
| **port-adapter-auditor** | Cockburn, *Hexagonal Architecture* | Maps driving and driven ports, classifies boundary health (clean/missing/leaking/wrong-language), and ensures core testability and infrastructure swappability. |
|
|
70
|
-
| **idempotency-guardian** | Helland, *Idempotence Is Not a Medical Condition* | Audits mutation endpoints and event handlers for retry safety
|
|
71
|
-
| **composability-auditor** | McIlroy, Pike, Thompson
|
|
72
|
-
| **temporal-coupling-detector** | Beck, Fowler
|
|
70
|
+
| **idempotency-guardian** | Helland, *Idempotence Is Not a Medical Condition* | Audits mutation endpoints and event handlers for retry safety: classifies natural idempotency, checks protection mechanisms, and evaluates side effect safety. |
|
|
71
|
+
| **composability-auditor** | McIlroy, Pike, Thompson (Unix Philosophy) | Identifies reuse blockers (hidden I/O, non-standard interfaces, statefulness) and decomposes self-sufficient units into composable pieces. |
|
|
72
|
+
| **temporal-coupling-detector** | Beck, Fowler (software engineering canon) | Detects hidden ordering dependencies (two-phase init, method order, invisible preconditions) and enforces them through types, parameters, and factory patterns. |
|
|
73
73
|
|
|
74
74
|
### Communication
|
|
75
75
|
|
|
76
|
-
Skills that control how the agent communicates
|
|
76
|
+
Skills that control how the agent communicates: output compression, token efficiency, and response style.
|
|
77
77
|
|
|
78
78
|
| Skill | Based on | What it does |
|
|
79
79
|
|-------|----------|--------------|
|
|
80
|
-
| **terse** | Caveman (refined) | Professional output compression
|
|
80
|
+
| **terse** | Caveman (refined) | Professional output compression: cuts ~20-30% of tokens by eliminating LLM verbosity habits (preambles, hedging, trailing summaries) while keeping proper grammar. Three levels: clean, tight, sharp. |
|
|
81
81
|
|
|
82
82
|
### Career & Writing
|
|
83
83
|
|
|
@@ -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.
|
|
@@ -151,10 +145,10 @@ To pin to the current version, do nothing: skills are not auto-updated. `update`
|
|
|
151
145
|
|
|
152
146
|
## Activation Modes (Claude Code)
|
|
153
147
|
|
|
154
|
-
Some skills
|
|
148
|
+
Some skills (like `terse`) support activation modes. Pick one at install time:
|
|
155
149
|
|
|
156
|
-
- **session** (default)
|
|
157
|
-
- **global
|
|
150
|
+
- **session** (default): invoke the skill manually with `/<skill>` each session
|
|
151
|
+
- **global**: auto-activate every Claude Code session via a `SessionStart` hook in `.claude/settings.json`
|
|
158
152
|
|
|
159
153
|
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.
|
|
160
154
|
|
|
@@ -164,7 +158,7 @@ If a skill declares activation support and you're installing for Claude Code int
|
|
|
164
158
|
|------|:---:|:---:|
|
|
165
159
|
| Claude Code | Yes | Yes |
|
|
166
160
|
| Cursor | Yes | Yes |
|
|
167
|
-
| Codex | Yes |
|
|
161
|
+
| Codex | Yes | – |
|
|
168
162
|
| Gemini CLI | Yes | Yes |
|
|
169
163
|
|
|
170
164
|
## How It Works
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iceinvein/agent-skills",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.35",
|
|
4
4
|
"description": "Install agent skills into AI coding tools",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"skill:bump:all": "bun run src/cli/index.ts bump --all",
|
|
21
21
|
"skill:bump:check": "bun run src/cli/index.ts bump --all --dry-run",
|
|
22
22
|
"build:index": "bun run scripts/build-index.ts",
|
|
23
|
+
"skill:audit": "bun run scripts/audit-skills.ts",
|
|
23
24
|
"release": "bash scripts/release.sh"
|
|
24
25
|
},
|
|
25
26
|
"keywords": [
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bounded-context-auditor",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Evans-inspired bounded context analysis
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Evans-inspired bounded context analysis: detect linguistic fractures, draw context maps, identify leaking language and shared model pollution",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -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 (
|
|
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
|
|
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.
|
|
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": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md",
|
|
10
|
-
"supporting": [
|
|
15
|
+
"supporting": [
|
|
16
|
+
"patterns-reference.md"
|
|
17
|
+
]
|
|
11
18
|
},
|
|
12
19
|
"install": {
|
|
13
20
|
"claude": {
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cognitive-load-auditor",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Jeff Johnson-inspired cognitive load analysis
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Jeff Johnson-inspired cognitive load analysis: evaluate UI against Miller's Law, Hick's Law, Fitts's Law, and working memory limits",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cohesion-analyzer",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Constantine & Yourdon-inspired cohesion analysis
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Constantine & Yourdon-inspired cohesion analysis: classify module focus on the 7-level spectrum, find split lines, reduce mixed responsibilities",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "complexity-accountant",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Ousterhout-inspired complexity analysis
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Ousterhout-inspired complexity analysis: deep vs shallow modules, complexity budget, justified abstractions",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "composability-auditor",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Unix Philosophy-inspired composability analysis
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Unix Philosophy-inspired composability analysis: identify reuse blockers, decompose self-sufficient units into composable pieces with standard interfaces",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contract-enforcer",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Meyer-inspired Design by Contract
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Meyer-inspired Design by Contract: preconditions, postconditions, invariants, and failure contracts for non-trivial functions",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coupling-auditor",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Constantine & Yourdon-inspired coupling analysis
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Constantine & Yourdon-inspired coupling analysis: classify, measure, and reduce interdependence between modules",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cover-letter",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Cover letter suite router. Dispatches to write, audit, rewrite, or persona subcommands and shares file I/O (PDF, DOCX, MD/MDX, URL), output formats, and writing conventions across the suite",
|
|
5
|
+
"author": "iceinvein",
|
|
6
|
+
"type": "prompt",
|
|
7
|
+
"tools": ["claude", "cursor", "codex", "gemini"],
|
|
8
|
+
"files": {
|
|
9
|
+
"prompt": "SKILL.md"
|
|
10
|
+
},
|
|
11
|
+
"install": {
|
|
12
|
+
"claude": {
|
|
13
|
+
"prompt": ".claude/skills/cover-letter/SKILL.md"
|
|
14
|
+
},
|
|
15
|
+
"cursor": {
|
|
16
|
+
"prompt": ".cursor/rules/cover-letter.mdc"
|
|
17
|
+
},
|
|
18
|
+
"codex": {
|
|
19
|
+
"prompt": "AGENTS.md",
|
|
20
|
+
"append": true
|
|
21
|
+
},
|
|
22
|
+
"gemini": {
|
|
23
|
+
"prompt": ".gemini/skills/cover-letter.md"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cover-letter-audit",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Scores a cover letter on 100 points across content/fit, structure, voice/humanness, and correctness; detects AI-generated-content signals and produces a prioritized fix list",
|
|
5
|
+
"author": "iceinvein",
|
|
6
|
+
"type": "prompt",
|
|
7
|
+
"tools": ["claude", "cursor", "codex", "gemini"],
|
|
8
|
+
"files": {
|
|
9
|
+
"prompt": "SKILL.md"
|
|
10
|
+
},
|
|
11
|
+
"install": {
|
|
12
|
+
"claude": {
|
|
13
|
+
"prompt": ".claude/skills/cover-letter-audit/SKILL.md"
|
|
14
|
+
},
|
|
15
|
+
"cursor": {
|
|
16
|
+
"prompt": ".cursor/rules/cover-letter-audit.mdc"
|
|
17
|
+
},
|
|
18
|
+
"codex": {
|
|
19
|
+
"prompt": "AGENTS.md",
|
|
20
|
+
"append": true
|
|
21
|
+
},
|
|
22
|
+
"gemini": {
|
|
23
|
+
"prompt": ".gemini/skills/cover-letter-audit.md"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cover-letter-persona",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Reusable writing personas built on the NNGroup 4-dimension tone framework, adapted for professional correspondence and used by cover-letter-write and cover-letter-rewrite",
|
|
5
|
+
"author": "iceinvein",
|
|
6
|
+
"type": "prompt",
|
|
7
|
+
"tools": ["claude", "cursor", "codex", "gemini"],
|
|
8
|
+
"files": {
|
|
9
|
+
"prompt": "SKILL.md"
|
|
10
|
+
},
|
|
11
|
+
"install": {
|
|
12
|
+
"claude": {
|
|
13
|
+
"prompt": ".claude/skills/cover-letter-persona/SKILL.md"
|
|
14
|
+
},
|
|
15
|
+
"cursor": {
|
|
16
|
+
"prompt": ".cursor/rules/cover-letter-persona.mdc"
|
|
17
|
+
},
|
|
18
|
+
"codex": {
|
|
19
|
+
"prompt": "AGENTS.md",
|
|
20
|
+
"append": true
|
|
21
|
+
},
|
|
22
|
+
"gemini": {
|
|
23
|
+
"prompt": ".gemini/skills/cover-letter-persona.md"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cover-letter-rewrite",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Audit-driven targeted rewrite of an existing cover letter. Focus modes: humanize, align, tighten, structure, tone; preserves voice where it already works",
|
|
5
|
+
"author": "iceinvein",
|
|
6
|
+
"type": "prompt",
|
|
7
|
+
"tools": ["claude", "cursor", "codex", "gemini"],
|
|
8
|
+
"files": {
|
|
9
|
+
"prompt": "SKILL.md"
|
|
10
|
+
},
|
|
11
|
+
"install": {
|
|
12
|
+
"claude": {
|
|
13
|
+
"prompt": ".claude/skills/cover-letter-rewrite/SKILL.md"
|
|
14
|
+
},
|
|
15
|
+
"cursor": {
|
|
16
|
+
"prompt": ".cursor/rules/cover-letter-rewrite.mdc"
|
|
17
|
+
},
|
|
18
|
+
"codex": {
|
|
19
|
+
"prompt": "AGENTS.md",
|
|
20
|
+
"append": true
|
|
21
|
+
},
|
|
22
|
+
"gemini": {
|
|
23
|
+
"prompt": ".gemini/skills/cover-letter-rewrite.md"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cover-letter-write",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Generates a cover letter from a resume and job description. Outputs markdown, DOCX, and PDF; enforces human prose, maps every claim to a resume bullet, and covers top JD requirements without keyword stuffing",
|
|
5
|
+
"author": "iceinvein",
|
|
6
|
+
"type": "prompt",
|
|
7
|
+
"tools": ["claude", "cursor", "codex", "gemini"],
|
|
8
|
+
"files": {
|
|
9
|
+
"prompt": "SKILL.md"
|
|
10
|
+
},
|
|
11
|
+
"install": {
|
|
12
|
+
"claude": {
|
|
13
|
+
"prompt": ".claude/skills/cover-letter-write/SKILL.md"
|
|
14
|
+
},
|
|
15
|
+
"cursor": {
|
|
16
|
+
"prompt": ".cursor/rules/cover-letter-write.mdc"
|
|
17
|
+
},
|
|
18
|
+
"codex": {
|
|
19
|
+
"prompt": "AGENTS.md",
|
|
20
|
+
"append": true
|
|
21
|
+
},
|
|
22
|
+
"gemini": {
|
|
23
|
+
"prompt": ".gemini/skills/cover-letter-write.md"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cqs-auditor",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Meyer-inspired Command-Query Separation
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Meyer-inspired Command-Query Separation: classify functions as commands or queries, detect mixed violations, separate side effects from return values",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "demeter-enforcer",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Lieberherr-inspired Law of Demeter analysis
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Lieberherr-inspired Law of Demeter analysis: detect chain violations, parameter drilling, and hidden traversal; fix with tell-don't-ask or parameter narrowing",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dependency-direction-auditor",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Martin-inspired dependency direction analysis
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Martin-inspired dependency direction analysis: trace imports across layers, classify violations by severity, recommend inversion",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: design-
|
|
2
|
+
name: design-review
|
|
3
3
|
description: Use when reviewing, evaluating, or giving feedback on a design document, technical spec, architecture doc, system design, product spec, API design, or database schema — especially after AI helped write or brainstorm it. Always use this skill when the user shares a design and asks you to review it, check if it holds together, or help scope it down. Trigger on phrases like "review my design", "does this design make sense", "can you look at this spec", "not sure what to cut", "scope this down", "feels like too much", "check if this holds together", "design review", or any request to evaluate a design document. Also trigger when the user describes a design that sounds like a feature list without a unifying idea, mentions AI helped create it, or expresses uncertainty about whether the design is coherent.
|
|
4
4
|
---
|
|
5
5
|
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "design-review",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Brooks-inspired design integrity review
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Brooks-inspired design integrity review: tests conceptual integrity, constraint exploitation, removal discipline, and scope control",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "error-strategist",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Duffy & Abrahams-inspired error handling
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Duffy & Abrahams-inspired error handling: classify errors (bug/recoverable/fatal), assign safety guarantees, design recovery boundaries",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "event-design-reviewer",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Evans/Vernon/Dahan-inspired event design
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Evans/Vernon/Dahan-inspired event design: domain-meaningful naming, fat payloads, schema evolution, and the domain expert test",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "evolution-analyzer",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Lehman-inspired software evolution analysis
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Lehman-inspired software evolution analysis: trajectory assessment, debt visibility, and change impact on system health",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gestalt-reviewer",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Gestalt-inspired visual perception audit
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Gestalt-inspired visual perception audit: proximity, similarity, closure, continuity, and figure-ground analysis for UI layouts",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "idempotency-guardian",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Helland-inspired idempotency analysis
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Helland-inspired idempotency analysis: classify mutation points, check protection mechanisms, evaluate side effect safety for retry-safe systems",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
package/skills/index.json
CHANGED
|
@@ -1,25 +1,19 @@
|
|
|
1
1
|
[
|
|
2
2
|
{
|
|
3
3
|
"name": "bounded-context-auditor",
|
|
4
|
-
"description": "Evans-inspired bounded context analysis
|
|
4
|
+
"description": "Evans-inspired bounded context analysis: detect linguistic fractures, draw context maps, identify leaking language and shared model pollution",
|
|
5
5
|
"type": "prompt",
|
|
6
|
-
"version": "1.0.
|
|
6
|
+
"version": "1.0.1",
|
|
7
7
|
"applies": [
|
|
8
8
|
"domain"
|
|
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.
|
|
16
|
+
"version": "1.0.1",
|
|
23
17
|
"applies": [
|
|
24
18
|
"any",
|
|
25
19
|
"architecture"
|
|
@@ -28,9 +22,9 @@
|
|
|
28
22
|
},
|
|
29
23
|
{
|
|
30
24
|
"name": "cognitive-load-auditor",
|
|
31
|
-
"description": "Jeff Johnson-inspired cognitive load analysis
|
|
25
|
+
"description": "Jeff Johnson-inspired cognitive load analysis: evaluate UI against Miller's Law, Hick's Law, Fitts's Law, and working memory limits",
|
|
32
26
|
"type": "prompt",
|
|
33
|
-
"version": "1.0.
|
|
27
|
+
"version": "1.0.1",
|
|
34
28
|
"applies": [
|
|
35
29
|
"ui"
|
|
36
30
|
],
|
|
@@ -38,9 +32,9 @@
|
|
|
38
32
|
},
|
|
39
33
|
{
|
|
40
34
|
"name": "cohesion-analyzer",
|
|
41
|
-
"description": "Constantine & Yourdon-inspired cohesion analysis
|
|
35
|
+
"description": "Constantine & Yourdon-inspired cohesion analysis: classify module focus on the 7-level spectrum, find split lines, reduce mixed responsibilities",
|
|
42
36
|
"type": "prompt",
|
|
43
|
-
"version": "1.0.
|
|
37
|
+
"version": "1.0.1",
|
|
44
38
|
"applies": [
|
|
45
39
|
"architecture"
|
|
46
40
|
],
|
|
@@ -48,9 +42,9 @@
|
|
|
48
42
|
},
|
|
49
43
|
{
|
|
50
44
|
"name": "complexity-accountant",
|
|
51
|
-
"description": "Ousterhout-inspired complexity analysis
|
|
45
|
+
"description": "Ousterhout-inspired complexity analysis: deep vs shallow modules, complexity budget, justified abstractions",
|
|
52
46
|
"type": "prompt",
|
|
53
|
-
"version": "1.0.
|
|
47
|
+
"version": "1.0.1",
|
|
54
48
|
"applies": [
|
|
55
49
|
"any"
|
|
56
50
|
],
|
|
@@ -58,9 +52,9 @@
|
|
|
58
52
|
},
|
|
59
53
|
{
|
|
60
54
|
"name": "composability-auditor",
|
|
61
|
-
"description": "Unix Philosophy-inspired composability analysis
|
|
55
|
+
"description": "Unix Philosophy-inspired composability analysis: identify reuse blockers, decompose self-sufficient units into composable pieces with standard interfaces",
|
|
62
56
|
"type": "prompt",
|
|
63
|
-
"version": "1.0.
|
|
57
|
+
"version": "1.0.1",
|
|
64
58
|
"applies": [
|
|
65
59
|
"any"
|
|
66
60
|
],
|
|
@@ -68,9 +62,9 @@
|
|
|
68
62
|
},
|
|
69
63
|
{
|
|
70
64
|
"name": "contract-enforcer",
|
|
71
|
-
"description": "Meyer-inspired Design by Contract
|
|
65
|
+
"description": "Meyer-inspired Design by Contract: preconditions, postconditions, invariants, and failure contracts for non-trivial functions",
|
|
72
66
|
"type": "prompt",
|
|
73
|
-
"version": "1.0.
|
|
67
|
+
"version": "1.0.1",
|
|
74
68
|
"applies": [
|
|
75
69
|
"any"
|
|
76
70
|
],
|
|
@@ -78,19 +72,49 @@
|
|
|
78
72
|
},
|
|
79
73
|
{
|
|
80
74
|
"name": "coupling-auditor",
|
|
81
|
-
"description": "Constantine & Yourdon-inspired coupling analysis
|
|
75
|
+
"description": "Constantine & Yourdon-inspired coupling analysis: classify, measure, and reduce interdependence between modules",
|
|
82
76
|
"type": "prompt",
|
|
83
|
-
"version": "1.0.
|
|
77
|
+
"version": "1.0.1",
|
|
84
78
|
"applies": [
|
|
85
79
|
"architecture"
|
|
86
80
|
],
|
|
87
81
|
"quick": true
|
|
88
82
|
},
|
|
83
|
+
{
|
|
84
|
+
"name": "cover-letter",
|
|
85
|
+
"description": "Cover letter suite router. Dispatches to write, audit, rewrite, or persona subcommands and shares file I/O (PDF, DOCX, MD/MDX, URL), output formats, and writing conventions across the suite",
|
|
86
|
+
"type": "prompt",
|
|
87
|
+
"version": "1.0.0"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "cover-letter-audit",
|
|
91
|
+
"description": "Scores a cover letter on 100 points across content/fit, structure, voice/humanness, and correctness; detects AI-generated-content signals and produces a prioritized fix list",
|
|
92
|
+
"type": "prompt",
|
|
93
|
+
"version": "1.0.0"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "cover-letter-persona",
|
|
97
|
+
"description": "Reusable writing personas built on the NNGroup 4-dimension tone framework, adapted for professional correspondence and used by cover-letter-write and cover-letter-rewrite",
|
|
98
|
+
"type": "prompt",
|
|
99
|
+
"version": "1.0.0"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "cover-letter-rewrite",
|
|
103
|
+
"description": "Audit-driven targeted rewrite of an existing cover letter. Focus modes: humanize, align, tighten, structure, tone; preserves voice where it already works",
|
|
104
|
+
"type": "prompt",
|
|
105
|
+
"version": "1.0.0"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "cover-letter-write",
|
|
109
|
+
"description": "Generates a cover letter from a resume and job description. Outputs markdown, DOCX, and PDF; enforces human prose, maps every claim to a resume bullet, and covers top JD requirements without keyword stuffing",
|
|
110
|
+
"type": "prompt",
|
|
111
|
+
"version": "1.0.0"
|
|
112
|
+
},
|
|
89
113
|
{
|
|
90
114
|
"name": "cqs-auditor",
|
|
91
|
-
"description": "Meyer-inspired Command-Query Separation
|
|
115
|
+
"description": "Meyer-inspired Command-Query Separation: classify functions as commands or queries, detect mixed violations, separate side effects from return values",
|
|
92
116
|
"type": "prompt",
|
|
93
|
-
"version": "1.0.
|
|
117
|
+
"version": "1.0.1",
|
|
94
118
|
"applies": [
|
|
95
119
|
"architecture"
|
|
96
120
|
],
|
|
@@ -98,9 +122,9 @@
|
|
|
98
122
|
},
|
|
99
123
|
{
|
|
100
124
|
"name": "demeter-enforcer",
|
|
101
|
-
"description": "Lieberherr-inspired Law of Demeter analysis
|
|
125
|
+
"description": "Lieberherr-inspired Law of Demeter analysis: detect chain violations, parameter drilling, and hidden traversal; fix with tell-don't-ask or parameter narrowing",
|
|
102
126
|
"type": "prompt",
|
|
103
|
-
"version": "1.0.
|
|
127
|
+
"version": "1.0.1",
|
|
104
128
|
"applies": [
|
|
105
129
|
"architecture"
|
|
106
130
|
],
|
|
@@ -108,9 +132,9 @@
|
|
|
108
132
|
},
|
|
109
133
|
{
|
|
110
134
|
"name": "dependency-direction-auditor",
|
|
111
|
-
"description": "Martin-inspired dependency direction analysis
|
|
135
|
+
"description": "Martin-inspired dependency direction analysis: trace imports across layers, classify violations by severity, recommend inversion",
|
|
112
136
|
"type": "prompt",
|
|
113
|
-
"version": "1.0.
|
|
137
|
+
"version": "1.0.1",
|
|
114
138
|
"applies": [
|
|
115
139
|
"architecture"
|
|
116
140
|
],
|
|
@@ -118,9 +142,9 @@
|
|
|
118
142
|
},
|
|
119
143
|
{
|
|
120
144
|
"name": "design-review",
|
|
121
|
-
"description": "Brooks-inspired design integrity review
|
|
145
|
+
"description": "Brooks-inspired design integrity review: tests conceptual integrity, constraint exploitation, removal discipline, and scope control",
|
|
122
146
|
"type": "prompt",
|
|
123
|
-
"version": "1.0.
|
|
147
|
+
"version": "1.0.1",
|
|
124
148
|
"applies": [
|
|
125
149
|
"any"
|
|
126
150
|
],
|
|
@@ -128,9 +152,9 @@
|
|
|
128
152
|
},
|
|
129
153
|
{
|
|
130
154
|
"name": "error-strategist",
|
|
131
|
-
"description": "Duffy & Abrahams-inspired error handling
|
|
155
|
+
"description": "Duffy & Abrahams-inspired error handling: classify errors (bug/recoverable/fatal), assign safety guarantees, design recovery boundaries",
|
|
132
156
|
"type": "prompt",
|
|
133
|
-
"version": "1.0.
|
|
157
|
+
"version": "1.0.1",
|
|
134
158
|
"applies": [
|
|
135
159
|
"errors"
|
|
136
160
|
],
|
|
@@ -138,9 +162,9 @@
|
|
|
138
162
|
},
|
|
139
163
|
{
|
|
140
164
|
"name": "event-design-reviewer",
|
|
141
|
-
"description": "Evans/Vernon/Dahan-inspired event design
|
|
165
|
+
"description": "Evans/Vernon/Dahan-inspired event design: domain-meaningful naming, fat payloads, schema evolution, and the domain expert test",
|
|
142
166
|
"type": "prompt",
|
|
143
|
-
"version": "1.0.
|
|
167
|
+
"version": "1.0.1",
|
|
144
168
|
"applies": [
|
|
145
169
|
"integration",
|
|
146
170
|
"domain"
|
|
@@ -149,9 +173,9 @@
|
|
|
149
173
|
},
|
|
150
174
|
{
|
|
151
175
|
"name": "evolution-analyzer",
|
|
152
|
-
"description": "Lehman-inspired software evolution analysis
|
|
176
|
+
"description": "Lehman-inspired software evolution analysis: trajectory assessment, debt visibility, and change impact on system health",
|
|
153
177
|
"type": "prompt",
|
|
154
|
-
"version": "1.0.
|
|
178
|
+
"version": "1.0.1",
|
|
155
179
|
"applies": [
|
|
156
180
|
"any"
|
|
157
181
|
],
|
|
@@ -159,9 +183,9 @@
|
|
|
159
183
|
},
|
|
160
184
|
{
|
|
161
185
|
"name": "gestalt-reviewer",
|
|
162
|
-
"description": "Gestalt-inspired visual perception audit
|
|
186
|
+
"description": "Gestalt-inspired visual perception audit: proximity, similarity, closure, continuity, and figure-ground analysis for UI layouts",
|
|
163
187
|
"type": "prompt",
|
|
164
|
-
"version": "1.0.
|
|
188
|
+
"version": "1.0.1",
|
|
165
189
|
"applies": [
|
|
166
190
|
"ui"
|
|
167
191
|
],
|
|
@@ -169,9 +193,9 @@
|
|
|
169
193
|
},
|
|
170
194
|
{
|
|
171
195
|
"name": "idempotency-guardian",
|
|
172
|
-
"description": "Helland-inspired idempotency analysis
|
|
196
|
+
"description": "Helland-inspired idempotency analysis: classify mutation points, check protection mechanisms, evaluate side effect safety for retry-safe systems",
|
|
173
197
|
"type": "prompt",
|
|
174
|
-
"version": "1.0.
|
|
198
|
+
"version": "1.0.1",
|
|
175
199
|
"applies": [
|
|
176
200
|
"integration"
|
|
177
201
|
],
|
|
@@ -185,9 +209,9 @@
|
|
|
185
209
|
},
|
|
186
210
|
{
|
|
187
211
|
"name": "integration-pattern-auditor",
|
|
188
|
-
"description": "Hohpe & Woolf-inspired messaging analysis
|
|
212
|
+
"description": "Hohpe & Woolf-inspired messaging analysis: name the integration pattern, verify delivery guarantees, identify missing infrastructure",
|
|
189
213
|
"type": "prompt",
|
|
190
|
-
"version": "1.0.
|
|
214
|
+
"version": "1.0.1",
|
|
191
215
|
"applies": [
|
|
192
216
|
"integration"
|
|
193
217
|
],
|
|
@@ -201,9 +225,9 @@
|
|
|
201
225
|
},
|
|
202
226
|
{
|
|
203
227
|
"name": "module-secret-auditor",
|
|
204
|
-
"description": "Parnas-inspired information hiding analysis
|
|
228
|
+
"description": "Parnas-inspired information hiding analysis: module boundaries drawn by change-reason, not by noun or technical layer",
|
|
205
229
|
"type": "prompt",
|
|
206
|
-
"version": "1.0.
|
|
230
|
+
"version": "1.0.1",
|
|
207
231
|
"applies": [
|
|
208
232
|
"architecture"
|
|
209
233
|
],
|
|
@@ -211,9 +235,9 @@
|
|
|
211
235
|
},
|
|
212
236
|
{
|
|
213
237
|
"name": "port-adapter-auditor",
|
|
214
|
-
"description": "Cockburn-inspired hexagonal architecture analysis
|
|
238
|
+
"description": "Cockburn-inspired hexagonal architecture analysis: identify ports and adapters, classify boundary health, ensure core testability and swappability",
|
|
215
239
|
"type": "prompt",
|
|
216
|
-
"version": "1.0.
|
|
240
|
+
"version": "1.0.1",
|
|
217
241
|
"applies": [
|
|
218
242
|
"architecture"
|
|
219
243
|
],
|
|
@@ -221,9 +245,9 @@
|
|
|
221
245
|
},
|
|
222
246
|
{
|
|
223
247
|
"name": "rams-design-audit",
|
|
224
|
-
"description": "Dieter Rams-inspired design audit
|
|
248
|
+
"description": "Dieter Rams-inspired design audit: every visual element must earn its presence, less but better, clarity through restraint",
|
|
225
249
|
"type": "prompt",
|
|
226
|
-
"version": "1.0.
|
|
250
|
+
"version": "1.0.1",
|
|
227
251
|
"applies": [
|
|
228
252
|
"ui"
|
|
229
253
|
],
|
|
@@ -231,9 +255,9 @@
|
|
|
231
255
|
},
|
|
232
256
|
{
|
|
233
257
|
"name": "seam-finder",
|
|
234
|
-
"description": "Feathers-inspired legacy code modification
|
|
258
|
+
"description": "Feathers-inspired legacy code modification: find seams, make minimal incisions, preserve existing behavior",
|
|
235
259
|
"type": "prompt",
|
|
236
|
-
"version": "1.0.
|
|
260
|
+
"version": "1.0.1",
|
|
237
261
|
"applies": [
|
|
238
262
|
"legacy"
|
|
239
263
|
],
|
|
@@ -241,9 +265,9 @@
|
|
|
241
265
|
},
|
|
242
266
|
{
|
|
243
267
|
"name": "simplicity-razor",
|
|
244
|
-
"description": "Hickey-inspired simplicity analysis
|
|
268
|
+
"description": "Hickey-inspired simplicity analysis: simple vs easy, complecting detection, strand decomposition",
|
|
245
269
|
"type": "prompt",
|
|
246
|
-
"version": "1.0.
|
|
270
|
+
"version": "1.0.1",
|
|
247
271
|
"applies": [
|
|
248
272
|
"any"
|
|
249
273
|
],
|
|
@@ -251,9 +275,9 @@
|
|
|
251
275
|
},
|
|
252
276
|
{
|
|
253
277
|
"name": "temporal-coupling-detector",
|
|
254
|
-
"description": "Hidden ordering dependency analysis
|
|
278
|
+
"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",
|
|
255
279
|
"type": "prompt",
|
|
256
|
-
"version": "1.0.
|
|
280
|
+
"version": "1.0.1",
|
|
257
281
|
"applies": [
|
|
258
282
|
"any"
|
|
259
283
|
],
|
|
@@ -267,9 +291,9 @@
|
|
|
267
291
|
},
|
|
268
292
|
{
|
|
269
293
|
"name": "type-driven-designer",
|
|
270
|
-
"description": "Wlaschin & Minsky-inspired type design
|
|
294
|
+
"description": "Wlaschin & Minsky-inspired type design: make illegal states unrepresentable through branded types, discriminated unions, and domain-encoded constraints",
|
|
271
295
|
"type": "prompt",
|
|
272
|
-
"version": "1.0.
|
|
296
|
+
"version": "1.0.1",
|
|
273
297
|
"applies": [
|
|
274
298
|
"any"
|
|
275
299
|
],
|
|
@@ -277,9 +301,9 @@
|
|
|
277
301
|
},
|
|
278
302
|
{
|
|
279
303
|
"name": "unidirectional-flow-enforcer",
|
|
280
|
-
"description": "Elm Architecture-inspired data flow analysis
|
|
304
|
+
"description": "Elm Architecture-inspired data flow analysis: enforce unidirectional state flow, detect bidirectional mutations, trace state lifecycle in UI applications",
|
|
281
305
|
"type": "prompt",
|
|
282
|
-
"version": "1.0.
|
|
306
|
+
"version": "1.0.1",
|
|
283
307
|
"applies": [
|
|
284
308
|
"ui"
|
|
285
309
|
],
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "integration-pattern-auditor",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Hohpe & Woolf-inspired messaging analysis
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Hohpe & Woolf-inspired messaging analysis: name the integration pattern, verify delivery guarantees, identify missing infrastructure",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "module-secret-auditor",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Parnas-inspired information hiding analysis
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Parnas-inspired information hiding analysis: module boundaries drawn by change-reason, not by noun or technical layer",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "port-adapter-auditor",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Cockburn-inspired hexagonal architecture analysis
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Cockburn-inspired hexagonal architecture analysis: identify ports and adapters, classify boundary health, ensure core testability and swappability",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rams-design-audit",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Dieter Rams-inspired design audit
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Dieter Rams-inspired design audit: every visual element must earn its presence, less but better, clarity through restraint",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "seam-finder",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Feathers-inspired legacy code modification
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Feathers-inspired legacy code modification: find seams, make minimal incisions, preserve existing behavior",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "simplicity-razor",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Hickey-inspired simplicity analysis
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Hickey-inspired simplicity analysis: simple vs easy, complecting detection, strand decomposition",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "temporal-coupling-detector",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Hidden ordering dependency analysis
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"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",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "type-driven-designer",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Wlaschin & Minsky-inspired type design
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Wlaschin & Minsky-inspired type design: make illegal states unrepresentable through branded types, discriminated unions, and domain-encoded constraints",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "unidirectional-flow-enforcer",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Elm Architecture-inspired data flow analysis
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Elm Architecture-inspired data flow analysis: enforce unidirectional state flow, detect bidirectional mutations, trace state lifecycle in UI applications",
|
|
5
5
|
"author": "iceinvein",
|
|
6
6
|
"type": "prompt",
|
|
7
|
-
"tools": [
|
|
7
|
+
"tools": [
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
8
13
|
"files": {
|
|
9
14
|
"prompt": "SKILL.md"
|
|
10
15
|
},
|
|
@@ -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
|
-
}
|