@iceinvein/agent-skills 0.1.10 → 0.1.11
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 +24 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -60,6 +60,30 @@ Architecture review for existing codebases or structured design for new projects
|
|
|
60
60
|
### code-intelligence
|
|
61
61
|
Semantic code search, call hierarchy, dependency graphs, and impact analysis. MCP server powered by `@iceinvein/code-intelligence-mcp`.
|
|
62
62
|
|
|
63
|
+
### contract-enforcer
|
|
64
|
+
Meyer-inspired Design by Contract. Before writing non-trivial functions, articulates preconditions, postconditions, invariants, and failure contracts — then verifies the implementation satisfies them.
|
|
65
|
+
|
|
66
|
+
### complexity-accountant
|
|
67
|
+
Ousterhout-inspired complexity analysis. Treats complexity as a finite budget — every abstraction must justify itself by being deep (simple interface, rich functionality), not shallow.
|
|
68
|
+
|
|
69
|
+
### module-secret-auditor
|
|
70
|
+
Parnas-inspired information hiding. Every module should hide exactly one design decision that's likely to change. Boundaries drawn by change-reason, not by noun or technical layer.
|
|
71
|
+
|
|
72
|
+
### seam-finder
|
|
73
|
+
Feathers-inspired legacy code modification. Before changing existing code, finds seams — places where behavior can be altered without editing the code at that point. Minimal incision, preserve the unknown.
|
|
74
|
+
|
|
75
|
+
### simplicity-razor
|
|
76
|
+
Hickey-inspired simplicity analysis. Distinguishes simple (not interleaved) from easy (familiar). Names the strands, detects complecting, and decomplects or justifies.
|
|
77
|
+
|
|
78
|
+
### coupling-auditor
|
|
79
|
+
Constantine & Yourdon-inspired coupling analysis. Classifies coupling between modules on the spectrum (data → stamp → control → common → content) and recommends one step down.
|
|
80
|
+
|
|
81
|
+
### evolution-analyzer
|
|
82
|
+
Lehman-inspired software evolution analysis. Evaluates changes through the Laws of Software Evolution — assessing trajectory, debt impact, and whether the system is adapting or accreting.
|
|
83
|
+
|
|
84
|
+
### error-strategist
|
|
85
|
+
Duffy & Abrahams-inspired error handling. Classifies errors (bug/recoverable/fatal), assigns exception safety guarantees (nothrow/strong/basic), and designs recovery boundaries.
|
|
86
|
+
|
|
63
87
|
## Supported Tools
|
|
64
88
|
|
|
65
89
|
| Tool | Prompt Skills | MCP/Code Skills |
|