@iceinvein/agent-skills 0.1.34 → 0.1.36
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 +82 -52
- package/skills/integration-pattern-auditor/skill.json +8 -3
- package/skills/magpie/README.md +2 -2
- package/skills/magpie/SKILL.md +26 -12
- package/skills/magpie/scripts/__tests__/preflight.test.ts +15 -3
- package/skills/magpie/scripts/__tests__/render-progress.test.ts +1 -1
- package/skills/magpie/scripts/preflight.ts +13 -2
- package/skills/magpie/scripts/render-progress.ts +2 -2
- package/skills/magpie/scripts/setup-cmd.ts +12 -1
- package/skills/magpie/skill.json +2 -2
- 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.36",
|
|
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
|
},
|