@iceinvein/agent-skills 0.1.20 → 0.1.22
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 +11 -0
- package/dist/cli/index.js +2149 -59
- package/package.json +4 -1
- package/skills/improve-my-codebase/CATALOGUE-FIELDS.md +26 -0
- package/skills/improve-my-codebase/SKILL.md +516 -0
- package/skills/index.json +84 -26
package/README.md
CHANGED
|
@@ -96,16 +96,27 @@ Skills for producing job application materials that read like a human wrote them
|
|
|
96
96
|
|-------|------|--------------|
|
|
97
97
|
| **code-intelligence** | MCP server | Semantic code search, call hierarchy, dependency graphs, and impact analysis. Powered by `@iceinvein/code-intelligence-mcp`. |
|
|
98
98
|
|
|
99
|
+
### Orchestration
|
|
100
|
+
|
|
101
|
+
Skills that compose the other audit skills into higher-level workflows.
|
|
102
|
+
|
|
103
|
+
| Skill | What it does |
|
|
104
|
+
|-------|--------------|
|
|
105
|
+
| **improve-my-codebase** | Runs every applicable audit skill in parallel against your codebase, ranks findings by convergence (multiple audits agreeing) and per-file rollup, and writes a prioritized improvement report. Default sweeps everything; positional args switch modes (`quick`, `diff`, `interactive`) or narrow scope (`focus <area>`, `module <path>`). |
|
|
106
|
+
|
|
99
107
|
## Commands
|
|
100
108
|
|
|
101
109
|
```
|
|
102
110
|
bunx @iceinvein/agent-skills install <skill> [--tool <tool>] [--activation <mode>] [-g]
|
|
111
|
+
bunx @iceinvein/agent-skills browse [--tool <tool>] [--activation <mode>] [-g]
|
|
103
112
|
bunx @iceinvein/agent-skills remove <skill> [-g]
|
|
104
113
|
bunx @iceinvein/agent-skills update <skill> [-g]
|
|
105
114
|
bunx @iceinvein/agent-skills list
|
|
106
115
|
bunx @iceinvein/agent-skills info <skill>
|
|
107
116
|
```
|
|
108
117
|
|
|
118
|
+
`browse` opens an interactive picker: type a substring to filter, then space-toggle multiple skills and press enter to install them all at once.
|
|
119
|
+
|
|
109
120
|
| Flag | |
|
|
110
121
|
|------|---|
|
|
111
122
|
| `--tool <tool>` | Target a specific tool: `claude`, `cursor`, `codex`, `gemini` |
|