@iceinvein/agent-skills 0.1.0
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 +58 -0
- package/dist/cli/index.js +819 -0
- package/package.json +27 -0
- package/skills/code-intelligence/skill.json +31 -0
- package/skills/codebase-architecture/SKILL.md +183 -0
- package/skills/codebase-architecture/patterns-reference.md +168 -0
- package/skills/codebase-architecture/skill.json +36 -0
- package/skills/design-review/SKILL.md +150 -0
- package/skills/design-review/skill.json +26 -0
- package/skills/index.json +20 -0
package/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# @iceinvein/agent-skills
|
|
2
|
+
|
|
3
|
+
Install agent skills into AI coding tools — Claude Code, Cursor, Codex, Gemini CLI.
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# Install a skill (auto-detects your tools)
|
|
9
|
+
npx @iceinvein/agent-skills install design-review
|
|
10
|
+
|
|
11
|
+
# Install for a specific tool
|
|
12
|
+
npx @iceinvein/agent-skills install design-review --tool claude
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Commands
|
|
16
|
+
|
|
17
|
+
| Command | Description |
|
|
18
|
+
|---------|-------------|
|
|
19
|
+
| `install <skill> [--tool <tool>]` | Install a skill |
|
|
20
|
+
| `remove <skill>` | Remove a skill |
|
|
21
|
+
| `update <skill>` | Update to latest version |
|
|
22
|
+
| `list` | List all available skills |
|
|
23
|
+
| `info <skill>` | Show skill details |
|
|
24
|
+
|
|
25
|
+
## Available Skills
|
|
26
|
+
|
|
27
|
+
### design-review
|
|
28
|
+
Brooks-inspired design integrity review. Interactive interview that tests conceptual integrity, constraint exploitation, removal discipline, and scope control.
|
|
29
|
+
|
|
30
|
+
### codebase-architecture
|
|
31
|
+
Architecture review for existing codebases or structured design for new projects. Includes a comprehensive patterns reference.
|
|
32
|
+
|
|
33
|
+
### code-intelligence
|
|
34
|
+
Semantic code search, call hierarchy, dependency graphs, and impact analysis. MCP server powered by `@iceinvein/code-intelligence-mcp`.
|
|
35
|
+
|
|
36
|
+
## Supported Tools
|
|
37
|
+
|
|
38
|
+
| Tool | Prompt Skills | MCP/Code Skills |
|
|
39
|
+
|------|:---:|:---:|
|
|
40
|
+
| Claude Code | Yes | Yes |
|
|
41
|
+
| Cursor | Yes | Yes |
|
|
42
|
+
| Codex | Yes | — |
|
|
43
|
+
| Gemini CLI | Yes | Yes |
|
|
44
|
+
|
|
45
|
+
## How It Works
|
|
46
|
+
|
|
47
|
+
Skills live in this repo under `skills/`. The CLI fetches them from GitHub and installs them into the right locations for your tool:
|
|
48
|
+
|
|
49
|
+
- **Claude Code**: `.claude/skills/` + `.claude/settings.json`
|
|
50
|
+
- **Cursor**: `.cursor/rules/` + `.cursor/mcp.json`
|
|
51
|
+
- **Codex**: Appended to `AGENTS.md`
|
|
52
|
+
- **Gemini CLI**: `.gemini/skills/` + `.gemini/settings.json`
|
|
53
|
+
|
|
54
|
+
A `.agent-skills.lock` file tracks installations for update and remove.
|
|
55
|
+
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
MIT
|