@iceinvein/agent-skills 0.1.34 → 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 -19
- package/package.json +2 -1
- package/skills/bounded-context-auditor/skill.json +8 -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 +80 -50
- 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/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
|
|
|
@@ -145,10 +145,10 @@ To pin to the current version, do nothing: skills are not auto-updated. `update`
|
|
|
145
145
|
|
|
146
146
|
## Activation Modes (Claude Code)
|
|
147
147
|
|
|
148
|
-
Some skills
|
|
148
|
+
Some skills (like `terse`) support activation modes. Pick one at install time:
|
|
149
149
|
|
|
150
|
-
- **session** (default)
|
|
151
|
-
- **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`
|
|
152
152
|
|
|
153
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.
|
|
154
154
|
|
|
@@ -158,7 +158,7 @@ If a skill declares activation support and you're installing for Claude Code int
|
|
|
158
158
|
|------|:---:|:---:|
|
|
159
159
|
| Claude Code | Yes | Yes |
|
|
160
160
|
| Cursor | Yes | Yes |
|
|
161
|
-
| Codex | Yes |
|
|
161
|
+
| Codex | Yes | – |
|
|
162
162
|
| Gemini CLI | Yes | Yes |
|
|
163
163
|
|
|
164
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
|
},
|
|
@@ -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,9 +1,9 @@
|
|
|
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
|
],
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"name": "cognitive-load-auditor",
|
|
25
|
-
"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",
|
|
26
26
|
"type": "prompt",
|
|
27
|
-
"version": "1.0.
|
|
27
|
+
"version": "1.0.1",
|
|
28
28
|
"applies": [
|
|
29
29
|
"ui"
|
|
30
30
|
],
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
34
|
"name": "cohesion-analyzer",
|
|
35
|
-
"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",
|
|
36
36
|
"type": "prompt",
|
|
37
|
-
"version": "1.0.
|
|
37
|
+
"version": "1.0.1",
|
|
38
38
|
"applies": [
|
|
39
39
|
"architecture"
|
|
40
40
|
],
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
44
|
"name": "complexity-accountant",
|
|
45
|
-
"description": "Ousterhout-inspired complexity analysis
|
|
45
|
+
"description": "Ousterhout-inspired complexity analysis: deep vs shallow modules, complexity budget, justified abstractions",
|
|
46
46
|
"type": "prompt",
|
|
47
|
-
"version": "1.0.
|
|
47
|
+
"version": "1.0.1",
|
|
48
48
|
"applies": [
|
|
49
49
|
"any"
|
|
50
50
|
],
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
},
|
|
53
53
|
{
|
|
54
54
|
"name": "composability-auditor",
|
|
55
|
-
"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",
|
|
56
56
|
"type": "prompt",
|
|
57
|
-
"version": "1.0.
|
|
57
|
+
"version": "1.0.1",
|
|
58
58
|
"applies": [
|
|
59
59
|
"any"
|
|
60
60
|
],
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
64
|
"name": "contract-enforcer",
|
|
65
|
-
"description": "Meyer-inspired Design by Contract
|
|
65
|
+
"description": "Meyer-inspired Design by Contract: preconditions, postconditions, invariants, and failure contracts for non-trivial functions",
|
|
66
66
|
"type": "prompt",
|
|
67
|
-
"version": "1.0.
|
|
67
|
+
"version": "1.0.1",
|
|
68
68
|
"applies": [
|
|
69
69
|
"any"
|
|
70
70
|
],
|
|
@@ -72,19 +72,49 @@
|
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
74
|
"name": "coupling-auditor",
|
|
75
|
-
"description": "Constantine & Yourdon-inspired coupling analysis
|
|
75
|
+
"description": "Constantine & Yourdon-inspired coupling analysis: classify, measure, and reduce interdependence between modules",
|
|
76
76
|
"type": "prompt",
|
|
77
|
-
"version": "1.0.
|
|
77
|
+
"version": "1.0.1",
|
|
78
78
|
"applies": [
|
|
79
79
|
"architecture"
|
|
80
80
|
],
|
|
81
81
|
"quick": true
|
|
82
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
|
+
},
|
|
83
113
|
{
|
|
84
114
|
"name": "cqs-auditor",
|
|
85
|
-
"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",
|
|
86
116
|
"type": "prompt",
|
|
87
|
-
"version": "1.0.
|
|
117
|
+
"version": "1.0.1",
|
|
88
118
|
"applies": [
|
|
89
119
|
"architecture"
|
|
90
120
|
],
|
|
@@ -92,9 +122,9 @@
|
|
|
92
122
|
},
|
|
93
123
|
{
|
|
94
124
|
"name": "demeter-enforcer",
|
|
95
|
-
"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",
|
|
96
126
|
"type": "prompt",
|
|
97
|
-
"version": "1.0.
|
|
127
|
+
"version": "1.0.1",
|
|
98
128
|
"applies": [
|
|
99
129
|
"architecture"
|
|
100
130
|
],
|
|
@@ -102,9 +132,9 @@
|
|
|
102
132
|
},
|
|
103
133
|
{
|
|
104
134
|
"name": "dependency-direction-auditor",
|
|
105
|
-
"description": "Martin-inspired dependency direction analysis
|
|
135
|
+
"description": "Martin-inspired dependency direction analysis: trace imports across layers, classify violations by severity, recommend inversion",
|
|
106
136
|
"type": "prompt",
|
|
107
|
-
"version": "1.0.
|
|
137
|
+
"version": "1.0.1",
|
|
108
138
|
"applies": [
|
|
109
139
|
"architecture"
|
|
110
140
|
],
|
|
@@ -112,9 +142,9 @@
|
|
|
112
142
|
},
|
|
113
143
|
{
|
|
114
144
|
"name": "design-review",
|
|
115
|
-
"description": "Brooks-inspired design integrity review
|
|
145
|
+
"description": "Brooks-inspired design integrity review: tests conceptual integrity, constraint exploitation, removal discipline, and scope control",
|
|
116
146
|
"type": "prompt",
|
|
117
|
-
"version": "1.0.
|
|
147
|
+
"version": "1.0.1",
|
|
118
148
|
"applies": [
|
|
119
149
|
"any"
|
|
120
150
|
],
|
|
@@ -122,9 +152,9 @@
|
|
|
122
152
|
},
|
|
123
153
|
{
|
|
124
154
|
"name": "error-strategist",
|
|
125
|
-
"description": "Duffy & Abrahams-inspired error handling
|
|
155
|
+
"description": "Duffy & Abrahams-inspired error handling: classify errors (bug/recoverable/fatal), assign safety guarantees, design recovery boundaries",
|
|
126
156
|
"type": "prompt",
|
|
127
|
-
"version": "1.0.
|
|
157
|
+
"version": "1.0.1",
|
|
128
158
|
"applies": [
|
|
129
159
|
"errors"
|
|
130
160
|
],
|
|
@@ -132,9 +162,9 @@
|
|
|
132
162
|
},
|
|
133
163
|
{
|
|
134
164
|
"name": "event-design-reviewer",
|
|
135
|
-
"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",
|
|
136
166
|
"type": "prompt",
|
|
137
|
-
"version": "1.0.
|
|
167
|
+
"version": "1.0.1",
|
|
138
168
|
"applies": [
|
|
139
169
|
"integration",
|
|
140
170
|
"domain"
|
|
@@ -143,9 +173,9 @@
|
|
|
143
173
|
},
|
|
144
174
|
{
|
|
145
175
|
"name": "evolution-analyzer",
|
|
146
|
-
"description": "Lehman-inspired software evolution analysis
|
|
176
|
+
"description": "Lehman-inspired software evolution analysis: trajectory assessment, debt visibility, and change impact on system health",
|
|
147
177
|
"type": "prompt",
|
|
148
|
-
"version": "1.0.
|
|
178
|
+
"version": "1.0.1",
|
|
149
179
|
"applies": [
|
|
150
180
|
"any"
|
|
151
181
|
],
|
|
@@ -153,9 +183,9 @@
|
|
|
153
183
|
},
|
|
154
184
|
{
|
|
155
185
|
"name": "gestalt-reviewer",
|
|
156
|
-
"description": "Gestalt-inspired visual perception audit
|
|
186
|
+
"description": "Gestalt-inspired visual perception audit: proximity, similarity, closure, continuity, and figure-ground analysis for UI layouts",
|
|
157
187
|
"type": "prompt",
|
|
158
|
-
"version": "1.0.
|
|
188
|
+
"version": "1.0.1",
|
|
159
189
|
"applies": [
|
|
160
190
|
"ui"
|
|
161
191
|
],
|
|
@@ -163,9 +193,9 @@
|
|
|
163
193
|
},
|
|
164
194
|
{
|
|
165
195
|
"name": "idempotency-guardian",
|
|
166
|
-
"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",
|
|
167
197
|
"type": "prompt",
|
|
168
|
-
"version": "1.0.
|
|
198
|
+
"version": "1.0.1",
|
|
169
199
|
"applies": [
|
|
170
200
|
"integration"
|
|
171
201
|
],
|
|
@@ -179,9 +209,9 @@
|
|
|
179
209
|
},
|
|
180
210
|
{
|
|
181
211
|
"name": "integration-pattern-auditor",
|
|
182
|
-
"description": "Hohpe & Woolf-inspired messaging analysis
|
|
212
|
+
"description": "Hohpe & Woolf-inspired messaging analysis: name the integration pattern, verify delivery guarantees, identify missing infrastructure",
|
|
183
213
|
"type": "prompt",
|
|
184
|
-
"version": "1.0.
|
|
214
|
+
"version": "1.0.1",
|
|
185
215
|
"applies": [
|
|
186
216
|
"integration"
|
|
187
217
|
],
|
|
@@ -195,9 +225,9 @@
|
|
|
195
225
|
},
|
|
196
226
|
{
|
|
197
227
|
"name": "module-secret-auditor",
|
|
198
|
-
"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",
|
|
199
229
|
"type": "prompt",
|
|
200
|
-
"version": "1.0.
|
|
230
|
+
"version": "1.0.1",
|
|
201
231
|
"applies": [
|
|
202
232
|
"architecture"
|
|
203
233
|
],
|
|
@@ -205,9 +235,9 @@
|
|
|
205
235
|
},
|
|
206
236
|
{
|
|
207
237
|
"name": "port-adapter-auditor",
|
|
208
|
-
"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",
|
|
209
239
|
"type": "prompt",
|
|
210
|
-
"version": "1.0.
|
|
240
|
+
"version": "1.0.1",
|
|
211
241
|
"applies": [
|
|
212
242
|
"architecture"
|
|
213
243
|
],
|
|
@@ -215,9 +245,9 @@
|
|
|
215
245
|
},
|
|
216
246
|
{
|
|
217
247
|
"name": "rams-design-audit",
|
|
218
|
-
"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",
|
|
219
249
|
"type": "prompt",
|
|
220
|
-
"version": "1.0.
|
|
250
|
+
"version": "1.0.1",
|
|
221
251
|
"applies": [
|
|
222
252
|
"ui"
|
|
223
253
|
],
|
|
@@ -225,9 +255,9 @@
|
|
|
225
255
|
},
|
|
226
256
|
{
|
|
227
257
|
"name": "seam-finder",
|
|
228
|
-
"description": "Feathers-inspired legacy code modification
|
|
258
|
+
"description": "Feathers-inspired legacy code modification: find seams, make minimal incisions, preserve existing behavior",
|
|
229
259
|
"type": "prompt",
|
|
230
|
-
"version": "1.0.
|
|
260
|
+
"version": "1.0.1",
|
|
231
261
|
"applies": [
|
|
232
262
|
"legacy"
|
|
233
263
|
],
|
|
@@ -235,9 +265,9 @@
|
|
|
235
265
|
},
|
|
236
266
|
{
|
|
237
267
|
"name": "simplicity-razor",
|
|
238
|
-
"description": "Hickey-inspired simplicity analysis
|
|
268
|
+
"description": "Hickey-inspired simplicity analysis: simple vs easy, complecting detection, strand decomposition",
|
|
239
269
|
"type": "prompt",
|
|
240
|
-
"version": "1.0.
|
|
270
|
+
"version": "1.0.1",
|
|
241
271
|
"applies": [
|
|
242
272
|
"any"
|
|
243
273
|
],
|
|
@@ -245,9 +275,9 @@
|
|
|
245
275
|
},
|
|
246
276
|
{
|
|
247
277
|
"name": "temporal-coupling-detector",
|
|
248
|
-
"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",
|
|
249
279
|
"type": "prompt",
|
|
250
|
-
"version": "1.0.
|
|
280
|
+
"version": "1.0.1",
|
|
251
281
|
"applies": [
|
|
252
282
|
"any"
|
|
253
283
|
],
|
|
@@ -261,9 +291,9 @@
|
|
|
261
291
|
},
|
|
262
292
|
{
|
|
263
293
|
"name": "type-driven-designer",
|
|
264
|
-
"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",
|
|
265
295
|
"type": "prompt",
|
|
266
|
-
"version": "1.0.
|
|
296
|
+
"version": "1.0.1",
|
|
267
297
|
"applies": [
|
|
268
298
|
"any"
|
|
269
299
|
],
|
|
@@ -271,9 +301,9 @@
|
|
|
271
301
|
},
|
|
272
302
|
{
|
|
273
303
|
"name": "unidirectional-flow-enforcer",
|
|
274
|
-
"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",
|
|
275
305
|
"type": "prompt",
|
|
276
|
-
"version": "1.0.
|
|
306
|
+
"version": "1.0.1",
|
|
277
307
|
"applies": [
|
|
278
308
|
"ui"
|
|
279
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
|
},
|