aiblueprint-cli 1.4.39 → 1.4.40
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 +32 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -136,6 +136,38 @@ npx aiblueprint-cli@latest claude-code symlink
|
|
|
136
136
|
- `cc` - Claude Code with permissions skipped
|
|
137
137
|
- `ccc` - Claude Code with continue mode
|
|
138
138
|
|
|
139
|
+
### Skills
|
|
140
|
+
|
|
141
|
+
Install individual skills directly into `~/.claude/skills/`:
|
|
142
|
+
|
|
143
|
+
```bash
|
|
144
|
+
# Install a single skill
|
|
145
|
+
npx skills add Melvynx/aiblueprint --skill ultrathink
|
|
146
|
+
|
|
147
|
+
# Install multiple skills
|
|
148
|
+
npx skills add Melvynx/aiblueprint --skill claude-memory
|
|
149
|
+
npx skills add Melvynx/aiblueprint --skill fix-errors
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
**Available skills:**
|
|
153
|
+
|
|
154
|
+
| Skill | Description |
|
|
155
|
+
|-------|-------------|
|
|
156
|
+
| `commit` | Quick commit and push with clean messages |
|
|
157
|
+
| `create-pr` | Auto-generated pull requests |
|
|
158
|
+
| `fix-pr-comments` | Resolve PR review comments |
|
|
159
|
+
| `merge` | Context-aware branch merging |
|
|
160
|
+
| `claude-memory` | CLAUDE.md and .claude/rules management |
|
|
161
|
+
| `prompt-creator` | Expert prompt engineering |
|
|
162
|
+
| `skill-creator` | Guide for creating Claude Code skills |
|
|
163
|
+
| `subagent-creator` | Guide for building subagents |
|
|
164
|
+
| `ralph-loop` | Autonomous AI coding loop |
|
|
165
|
+
| `fix-errors` | Fix ESLint and TypeScript errors |
|
|
166
|
+
| `fix-grammar` | Fix grammar and spelling |
|
|
167
|
+
| `oneshot` | Ultra-fast feature implementation |
|
|
168
|
+
| `ultrathink` | Deep thinking mode for elegant solutions |
|
|
169
|
+
| `apex-free` | APEX methodology (Analyze-Plan-Execute-eXamine) |
|
|
170
|
+
|
|
139
171
|
## 💎 Premium
|
|
140
172
|
|
|
141
173
|
Unlock advanced features at [mlv.sh/claude-cli](https://mlv.sh/claude-cli)
|