devlyn-cli 1.6.0 → 1.7.1
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 +109 -226
- package/bin/devlyn.js +6 -10
- package/package.json +14 -4
package/README.md
CHANGED
|
@@ -11,319 +11,202 @@
|
|
|
11
11
|
**Structured prompts, agent orchestration, and automated pipelines — debugging, code review, UI design, product specs, and more.**
|
|
12
12
|
|
|
13
13
|
[](https://www.npmjs.com/package/devlyn-cli)
|
|
14
|
+
[](https://www.npmjs.com/package/devlyn-cli)
|
|
14
15
|
[](https://opensource.org/licenses/MIT)
|
|
15
16
|
[](https://docs.anthropic.com/en/docs/claude-code)
|
|
16
17
|
|
|
17
|
-
|
|
18
|
+
If devlyn-cli saved you time, [give it a star](https://github.com/fysoul17/devlyn-cli) — it helps others find it too.
|
|
18
19
|
|
|
19
20
|
</div>
|
|
20
21
|
|
|
21
22
|
---
|
|
22
23
|
|
|
23
|
-
##
|
|
24
|
-
|
|
25
|
-
[Claude Code](https://docs.anthropic.com/en/docs/claude-code) is powerful out of the box — but teams need **consistent, repeatable workflows**. Without shared conventions, every developer prompts differently, reviews differently, and debugs differently.
|
|
26
|
-
|
|
27
|
-
devlyn-cli solves this with two complementary engineering approaches:
|
|
28
|
-
|
|
29
|
-
### Context Engineering
|
|
30
|
-
|
|
31
|
-
Structured prompts and role-based instructions that shape _what the AI knows and how it thinks_ for each task.
|
|
32
|
-
|
|
33
|
-
- **17 slash commands** for ideation, debugging, code review, UI design, documentation, and more
|
|
34
|
-
- **5 core skills** that activate automatically based on conversation context
|
|
35
|
-
- **Agent team workflows** that spawn specialized AI teammates with role-specific expertise
|
|
36
|
-
- **Product & feature spec templates** for structured planning
|
|
37
|
-
|
|
38
|
-
### Harness Engineering
|
|
39
|
-
|
|
40
|
-
Pipeline orchestration that controls _how agents execute_ — permissions, state management, multi-phase workflows, and cross-model evaluation.
|
|
41
|
-
|
|
42
|
-
- **`/devlyn:auto-resolve`** — 9-phase automated pipeline (build → browser validate → evaluate → fix loop → simplify → review → security → clean → docs)
|
|
43
|
-
- **`/devlyn:browser-validate`** — feature verification in a real browser with tiered fallback (Chrome MCP → Playwright → curl)
|
|
44
|
-
- **`bypassPermissions` mode** for autonomous subagent execution
|
|
45
|
-
- **File-based state machine** — agents communicate via `.devlyn/done-criteria.md`, `EVAL-FINDINGS.md`, and `BROWSER-RESULTS.md`
|
|
46
|
-
- **Git checkpoints** at each phase for rollback safety
|
|
47
|
-
- **Cross-model evaluation** via `--with-codex` flag (OpenAI Codex as independent evaluator)
|
|
48
|
-
|
|
49
|
-
**Zero dependencies. One command. Works with any project.**
|
|
50
|
-
|
|
51
|
-
## Get Started
|
|
24
|
+
## Install
|
|
52
25
|
|
|
53
26
|
```bash
|
|
54
27
|
npx devlyn-cli
|
|
55
28
|
```
|
|
56
29
|
|
|
57
|
-
The interactive installer
|
|
58
|
-
|
|
59
|
-
```bash
|
|
60
|
-
# Non-interactive install (CI/CD friendly)
|
|
61
|
-
npx devlyn-cli -y
|
|
30
|
+
That's it. The interactive installer handles everything. Run it again anytime to update.
|
|
62
31
|
|
|
63
|
-
|
|
64
|
-
npx devlyn-cli@latest
|
|
32
|
+
---
|
|
65
33
|
|
|
66
|
-
|
|
67
|
-
npx devlyn-cli list
|
|
68
|
-
```
|
|
34
|
+
## How It Works — Two Commands, Full Cycle
|
|
69
35
|
|
|
70
|
-
|
|
36
|
+
devlyn-cli turns Claude Code into an autonomous development pipeline. The core loop is simple:
|
|
71
37
|
|
|
72
38
|
```
|
|
73
|
-
|
|
74
|
-
├── .claude/
|
|
75
|
-
│ ├── commands/ # 16 slash commands
|
|
76
|
-
│ ├── skills/ # 5 core skills + any optional addons
|
|
77
|
-
│ ├── templates/ # Product spec, feature spec, prompt templates
|
|
78
|
-
│ ├── commit-conventions.md # Commit message standards
|
|
79
|
-
│ └── settings.json # Agent teams enabled
|
|
80
|
-
└── CLAUDE.md # Project-level AI instructions
|
|
39
|
+
ideate → auto-resolve → ship → repeat
|
|
81
40
|
```
|
|
82
41
|
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
Slash commands are invoked directly in Claude Code conversations (e.g., type `/devlyn:resolve`).
|
|
86
|
-
|
|
87
|
-
### Debugging & Resolution
|
|
88
|
-
|
|
89
|
-
| Command | Description |
|
|
90
|
-
|---|---|
|
|
91
|
-
| `/devlyn:resolve` | Systematic bug fixing with root-cause analysis and test-driven validation |
|
|
92
|
-
| `/devlyn:team-resolve` | Spawns a full agent team — root cause analyst, test engineer, security auditor — to investigate complex issues |
|
|
93
|
-
| `/devlyn:auto-resolve` | Fully automated pipeline for any task — bugs, features, refactors, chores. Build → browser validate → evaluate → fix loop → simplify → review → clean → docs. One command, zero human intervention. Supports `--with-codex` for cross-model evaluation via OpenAI Codex |
|
|
94
|
-
| `/devlyn:browser-validate` | Verify implemented features work in a real browser — starts dev server, tests the feature end-to-end (clicks, forms, verification), with tiered fallback (Chrome MCP → Playwright → curl) |
|
|
95
|
-
|
|
96
|
-
### Code Review & Quality
|
|
97
|
-
|
|
98
|
-
| Command | Description |
|
|
99
|
-
|---|---|
|
|
100
|
-
| `/devlyn:review` | Post-implementation review — security, quality, best practices checklist |
|
|
101
|
-
| `/devlyn:team-review` | Multi-perspective team review with specialized reviewers (security, quality, testing, performance, product) |
|
|
102
|
-
| `/devlyn:evaluate` | Independent quality evaluation — assembles evaluator team to grade work against done criteria with calibrated, skeptical grading |
|
|
103
|
-
| `/devlyn:clean` | Detect and remove dead code, unused dependencies, complexity hotspots, and tech debt |
|
|
42
|
+
### Step 1 — Plan with `/devlyn:ideate`
|
|
104
43
|
|
|
105
|
-
|
|
44
|
+
Turn a raw idea into structured, implementation-ready specs.
|
|
106
45
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
| `/devlyn:team-design-ui` | Spawns a design team — creative director, product designer, visual designer, interaction designer, accessibility designer |
|
|
111
|
-
| `/devlyn:design-system` | Extract design system tokens from a chosen style for exact reproduction |
|
|
112
|
-
| `/devlyn:implement-ui` | Team-based UI build — component architect, UX engineer, accessibility engineer, responsive engineer, visual QA |
|
|
113
|
-
|
|
114
|
-
### Ideation & Planning
|
|
115
|
-
|
|
116
|
-
| Command | Description |
|
|
117
|
-
|---|---|
|
|
118
|
-
| `/devlyn:ideate` | Transform unstructured ideas into auto-resolve-ready planning documents through structured brainstorming, research, and multi-perspective synthesis. Produces a three-layer document architecture (Vision → Roadmap → per-item specs) that feeds directly into `auto-resolve` |
|
|
119
|
-
| `/devlyn:product-spec` | Generate or incrementally update product spec documents |
|
|
120
|
-
| `/devlyn:feature-spec` | Transform product specs into implementable feature specifications |
|
|
121
|
-
| `/devlyn:discover-product` | Scan codebase to generate feature-oriented product documentation |
|
|
122
|
-
| `/devlyn:recommend-features` | Prioritize top 5 features to build next based on value and readiness |
|
|
46
|
+
```
|
|
47
|
+
/devlyn:ideate "I want to build a habit tracking app with AI nudges"
|
|
48
|
+
```
|
|
123
49
|
|
|
124
|
-
|
|
50
|
+
This produces three documents through interactive brainstorming:
|
|
125
51
|
|
|
126
|
-
|
|
|
52
|
+
| Document | What It Contains |
|
|
127
53
|
|---|---|
|
|
128
|
-
|
|
|
129
|
-
|
|
130
|
-
|
|
54
|
+
| `docs/VISION.md` | North star, principles, anti-goals |
|
|
55
|
+
| `docs/ROADMAP.md` | Phased roadmap with links to each spec |
|
|
56
|
+
| `docs/roadmap/phase-N/*.md` | Self-contained spec per feature — ready for auto-resolve |
|
|
131
57
|
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
| Skill | When It Activates | What It Does |
|
|
135
|
-
|---|---|---|
|
|
136
|
-
| `root-cause-analysis` | Debugging conversations | Enforces 5 Whys methodology, evidence standards, and no-workaround rules |
|
|
137
|
-
| `code-review-standards` | Code review tasks | Applies severity framework, quality bar, and approval criteria |
|
|
138
|
-
| `ui-implementation-standards` | UI/frontend work | Ensures design fidelity, accessibility, animation quality, and responsive standards |
|
|
139
|
-
| `code-health-standards` | Code maintenance | Enforces dead code prevention, dependency discipline, and complexity thresholds |
|
|
140
|
-
| `workflow-routing` | Any task | SDLC phase map — guides you to the right command for your current task |
|
|
58
|
+
Need to add features later? Run ideate again — it expands the existing roadmap.
|
|
141
59
|
|
|
142
|
-
|
|
60
|
+
### Step 2 — Build with `/devlyn:auto-resolve`
|
|
143
61
|
|
|
144
|
-
|
|
62
|
+
Point it at a spec (or just describe what you want) and walk away.
|
|
145
63
|
|
|
146
|
-
|
|
64
|
+
```
|
|
65
|
+
/devlyn:auto-resolve "Implement per spec at docs/roadmap/phase-1/1.1-user-auth.md"
|
|
66
|
+
```
|
|
147
67
|
|
|
148
|
-
|
|
68
|
+
It runs a **9-phase pipeline** autonomously:
|
|
149
69
|
|
|
150
|
-
```
|
|
151
|
-
|
|
70
|
+
```
|
|
71
|
+
Build → Browser Test → Evaluate → Fix Loop → Simplify → Review → Security → Clean → Docs
|
|
152
72
|
```
|
|
153
73
|
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
| **Evaluate** | Independent evaluator grades against done criteria with calibrated skepticism |
|
|
159
|
-
| **Fix Loop** | If evaluation fails, fixes findings and re-evaluates (up to N rounds) |
|
|
160
|
-
| **Simplify** | Quick cleanup pass for reuse and efficiency |
|
|
161
|
-
| **Review** | Multi-perspective team review |
|
|
162
|
-
| **Security** | Dedicated OWASP-focused audit (auto-detects when changes touch auth, secrets, APIs) |
|
|
163
|
-
| **Clean** | Remove dead code and unused dependencies |
|
|
164
|
-
| **Docs** | Sync documentation with changes |
|
|
165
|
-
|
|
166
|
-
Each phase runs as a separate subagent (fresh context), communicates via files, and commits a git checkpoint for rollback safety. Skip phases with flags: `--skip-browser`, `--skip-review`, `--skip-clean`, `--skip-docs`, `--max-rounds 3`, `--with-codex` (cross-model evaluation via OpenAI Codex).
|
|
74
|
+
- Each phase runs as a separate agent with fresh context
|
|
75
|
+
- Git checkpoints at every phase for safe rollback
|
|
76
|
+
- Browser validation tests your feature end-to-end (clicks, forms, verification)
|
|
77
|
+
- Evaluation grades against done-criteria — if it fails, auto-fix and re-evaluate
|
|
167
78
|
|
|
168
|
-
|
|
79
|
+
Skip phases you don't need: `--skip-browser`, `--skip-review`, `--skip-clean`, `--skip-docs`, `--max-rounds 6`
|
|
169
80
|
|
|
170
|
-
|
|
81
|
+
### Bonus — Dual-Model Mode with Codex
|
|
171
82
|
|
|
172
|
-
|
|
173
|
-
|---|---|---|
|
|
174
|
-
| 1. **Resolve** | `/devlyn:resolve` or `/devlyn:team-resolve` | Fix the issue — solo for focused bugs (1-2 modules), team for complex issues (3+ modules) |
|
|
175
|
-
| 2. **Evaluate** | `/devlyn:evaluate` | Independent quality evaluation — grades against done criteria written in step 1 |
|
|
176
|
-
| | | *If the evaluation finds issues: `/devlyn:team-resolve "Fix issues in .devlyn/EVAL-FINDINGS.md"`* |
|
|
177
|
-
| 3. **Simplify** | `/simplify` | Quick cleanup pass for reuse, quality, and efficiency *(built-in Claude Code command)* |
|
|
178
|
-
| 4. **Review** | `/devlyn:review` or `/devlyn:team-review` | Audit the changes — solo for small PRs (< 10 files), team for large PRs (10+ files) |
|
|
179
|
-
| 5. **Clean** | `/devlyn:clean` | Remove dead code, unused dependencies, and complexity hotspots |
|
|
180
|
-
| 6. **Document** | `/devlyn:update-docs` | Sync project documentation with the current codebase |
|
|
83
|
+
Install the Codex MCP server during setup, then:
|
|
181
84
|
|
|
182
|
-
|
|
85
|
+
```
|
|
86
|
+
/devlyn:auto-resolve "fix the auth bug" --with-codex
|
|
87
|
+
```
|
|
183
88
|
|
|
184
|
-
|
|
89
|
+
Claude builds, **OpenAI Codex evaluates independently** — two models collaborating, catching what a single model misses.
|
|
185
90
|
|
|
186
|
-
|
|
91
|
+
> `--with-codex evaluate` (default) · `--with-codex review` · `--with-codex both`
|
|
187
92
|
|
|
188
|
-
|
|
93
|
+
---
|
|
189
94
|
|
|
190
|
-
|
|
191
|
-
# 1. Brainstorm and plan — interactive back-and-forth
|
|
192
|
-
/devlyn:ideate "I want to build a habit tracking app with AI nudges..."
|
|
95
|
+
## Manual Commands
|
|
193
96
|
|
|
194
|
-
|
|
195
|
-
# docs/VISION.md — strategic north star
|
|
196
|
-
# docs/ROADMAP.md — indexed roadmap with links
|
|
197
|
-
# docs/roadmap/phase-1/ — auto-resolve-ready specs per item
|
|
97
|
+
When you want step-by-step control instead of the full pipeline.
|
|
198
98
|
|
|
199
|
-
|
|
200
|
-
/devlyn:auto-resolve "Implement per spec at docs/roadmap/phase-1/1.1-user-auth.md"
|
|
201
|
-
/devlyn:auto-resolve "Implement per spec at docs/roadmap/phase-1/1.2-dashboard.md"
|
|
202
|
-
```
|
|
99
|
+
### Debugging & Resolution
|
|
203
100
|
|
|
204
|
-
|
|
101
|
+
| Command | Use When |
|
|
102
|
+
|---|---|
|
|
103
|
+
| `/devlyn:resolve` | Simple bugs (1-2 files) |
|
|
104
|
+
| `/devlyn:team-resolve` | Complex issues — spawns root-cause analyst, test engineer, security auditor |
|
|
105
|
+
| `/devlyn:browser-validate` | Test a web feature in a real browser (Chrome MCP → Playwright → curl fallback) |
|
|
205
106
|
|
|
206
|
-
|
|
207
|
-
|---|---|---|---|
|
|
208
|
-
| Strategic | `VISION.md` | North star, principles, anti-goals | Humans, ideation skill |
|
|
209
|
-
| Tactical | `ROADMAP.md` | Indexed table linking to per-item specs | Humans, ideation skill |
|
|
210
|
-
| Operational | `roadmap/phase-N/item.md` | Self-contained spec with requirements, constraints, out-of-scope | `auto-resolve` |
|
|
107
|
+
### Code Review & Quality
|
|
211
108
|
|
|
212
|
-
|
|
109
|
+
| Command | Use When |
|
|
110
|
+
|---|---|
|
|
111
|
+
| `/devlyn:review` | Solo review — security, quality, best practices checklist |
|
|
112
|
+
| `/devlyn:team-review` | Multi-reviewer team — security, testing, performance, product perspectives |
|
|
113
|
+
| `/devlyn:evaluate` | Grade work against done-criteria with calibrated skepticism |
|
|
114
|
+
| `/devlyn:clean` | Remove dead code, unused deps, complexity hotspots |
|
|
213
115
|
|
|
214
116
|
### UI Design Pipeline
|
|
215
117
|
|
|
216
|
-
A full explore → extract → build pipeline:
|
|
217
|
-
|
|
218
118
|
| Step | Command | What It Does |
|
|
219
119
|
|---|---|---|
|
|
220
|
-
| 1
|
|
221
|
-
| 2
|
|
222
|
-
| 3
|
|
223
|
-
|
|
224
|
-
> For design exploration with a full creative team, use `/devlyn:team-design-ui` instead of step 1.
|
|
225
|
-
|
|
226
|
-
After building, follow the [recommended workflow](#recommended-workflow) starting from step 2 (simplify) to review and polish the implementation.
|
|
120
|
+
| 1 | `/devlyn:design-ui` | Generate 5 distinct style explorations |
|
|
121
|
+
| 2 | `/devlyn:design-system` | Extract design tokens from chosen style |
|
|
122
|
+
| 3 | `/devlyn:implement-ui` | Team builds it — component architect, UX, accessibility, responsive, visual QA |
|
|
227
123
|
|
|
228
|
-
|
|
124
|
+
> Use `/devlyn:team-design-ui` for step 1 with a full creative team.
|
|
229
125
|
|
|
230
|
-
|
|
126
|
+
### Planning & Docs
|
|
231
127
|
|
|
232
128
|
| Command | What It Does |
|
|
233
129
|
|---|---|
|
|
234
|
-
| `/devlyn:
|
|
235
|
-
| `/devlyn:
|
|
236
|
-
| `/devlyn:product
|
|
237
|
-
| `/devlyn:feature-spec` | Transform a product spec into an implementable feature spec |
|
|
238
|
-
| `/devlyn:discover-product` | Scan codebase to auto-generate product documentation |
|
|
130
|
+
| `/devlyn:product-spec` | Generate or update product specs |
|
|
131
|
+
| `/devlyn:feature-spec` | Turn product spec → implementable feature spec |
|
|
132
|
+
| `/devlyn:discover-product` | Scan codebase → auto-generate product docs |
|
|
239
133
|
| `/devlyn:recommend-features` | Prioritize top 5 features to build next |
|
|
134
|
+
| `/devlyn:update-docs` | Sync all docs with current codebase |
|
|
240
135
|
|
|
241
|
-
|
|
136
|
+
---
|
|
137
|
+
|
|
138
|
+
## Auto-Activated Skills
|
|
242
139
|
|
|
243
|
-
|
|
140
|
+
These activate automatically — no commands needed. They shape how Claude thinks during relevant tasks.
|
|
244
141
|
|
|
245
|
-
|
|
142
|
+
| Skill | Activates During |
|
|
143
|
+
|---|---|
|
|
144
|
+
| `root-cause-analysis` | Debugging — enforces 5 Whys, evidence standards |
|
|
145
|
+
| `code-review-standards` | Reviews — severity framework, approval criteria |
|
|
146
|
+
| `ui-implementation-standards` | UI work — design fidelity, accessibility, responsiveness |
|
|
147
|
+
| `code-health-standards` | Maintenance — dead code prevention, complexity thresholds |
|
|
148
|
+
| `workflow-routing` | Any task — guides you to the right command |
|
|
149
|
+
|
|
150
|
+
---
|
|
246
151
|
|
|
247
|
-
|
|
152
|
+
## Optional Add-ons
|
|
153
|
+
|
|
154
|
+
Selected during install. Run `npx devlyn-cli` again to add more.
|
|
155
|
+
|
|
156
|
+
<details>
|
|
157
|
+
<summary><strong>Skills</strong> — copied to <code>.claude/skills/</code></summary>
|
|
248
158
|
|
|
249
159
|
| Skill | Description |
|
|
250
160
|
|---|---|
|
|
251
|
-
| `cloudflare-nextjs-setup` | Cloudflare Workers + Next.js
|
|
252
|
-
| `generate-skill` | Create
|
|
253
|
-
| `prompt-engineering` | Claude 4 prompt optimization
|
|
254
|
-
| `better-auth-setup` |
|
|
255
|
-
| `pyx-scan` | Check
|
|
256
|
-
| `dokkit` | Document template filling for DOCX/HWPX
|
|
257
|
-
| `devlyn:pencil-pull` | Pull Pencil designs into code
|
|
258
|
-
| `devlyn:pencil-push` | Push codebase UI to Pencil canvas
|
|
161
|
+
| `cloudflare-nextjs-setup` | Cloudflare Workers + Next.js with OpenNext |
|
|
162
|
+
| `generate-skill` | Create Claude Code skills following Anthropic best practices |
|
|
163
|
+
| `prompt-engineering` | Claude 4 prompt optimization |
|
|
164
|
+
| `better-auth-setup` | Better Auth + Hono + Drizzle + PostgreSQL |
|
|
165
|
+
| `pyx-scan` | Check if an AI agent skill is safe before installing |
|
|
166
|
+
| `dokkit` | Document template filling for DOCX/HWPX |
|
|
167
|
+
| `devlyn:pencil-pull` | Pull Pencil designs into code |
|
|
168
|
+
| `devlyn:pencil-push` | Push codebase UI to Pencil canvas |
|
|
259
169
|
|
|
260
|
-
|
|
170
|
+
</details>
|
|
261
171
|
|
|
262
|
-
|
|
172
|
+
<details>
|
|
173
|
+
<summary><strong>Community Packs</strong> — installed via <a href="https://github.com/anthropics/skills">skills CLI</a></summary>
|
|
263
174
|
|
|
264
175
|
| Pack | Description |
|
|
265
176
|
|---|---|
|
|
266
177
|
| `vercel-labs/agent-skills` | React, Next.js, React Native best practices |
|
|
267
178
|
| `supabase/agent-skills` | Supabase integration patterns |
|
|
268
179
|
| `coreyhaines31/marketingskills` | Marketing automation and content skills |
|
|
269
|
-
| `anthropics/skills` | Official Anthropic skill-creator with eval framework
|
|
270
|
-
| `Leonxlnx/taste-skill` | Premium frontend design skills
|
|
180
|
+
| `anthropics/skills` | Official Anthropic skill-creator with eval framework |
|
|
181
|
+
| `Leonxlnx/taste-skill` | Premium frontend design skills |
|
|
271
182
|
|
|
272
|
-
|
|
183
|
+
</details>
|
|
273
184
|
|
|
274
|
-
|
|
185
|
+
<details>
|
|
186
|
+
<summary><strong>MCP Servers</strong> — installed via <code>claude mcp add</code></summary>
|
|
275
187
|
|
|
276
188
|
| Server | Description |
|
|
277
189
|
|---|---|
|
|
278
|
-
| `codex-cli` | Codex MCP server
|
|
279
|
-
| `playwright` | Playwright MCP
|
|
280
|
-
|
|
281
|
-
> **Want to add a pack?** Open a PR adding your pack to the `OPTIONAL_ADDONS` array in [`bin/devlyn.js`](bin/devlyn.js).
|
|
282
|
-
|
|
283
|
-
## How It Works
|
|
190
|
+
| `codex-cli` | Codex MCP server — enables `--with-codex` dual-model mode |
|
|
191
|
+
| `playwright` | Playwright MCP — powers browser-validate Tier 2 |
|
|
284
192
|
|
|
285
|
-
|
|
286
|
-
2. The CLI copies config files into `.claude/` and `CLAUDE.md` to the project root
|
|
287
|
-
3. Claude Code automatically reads `.claude/commands/` and `.claude/skills/` on startup
|
|
288
|
-
4. Invoke commands like `/devlyn:resolve` in your Claude Code session — skills activate on their own
|
|
193
|
+
</details>
|
|
289
194
|
|
|
290
|
-
|
|
195
|
+
> **Want to add a pack?** Open a PR adding it to the `OPTIONAL_ADDONS` array in [`bin/devlyn.js`](bin/devlyn.js).
|
|
291
196
|
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
Want to author custom skills for your team or the community?
|
|
295
|
-
|
|
296
|
-
1. **During install**, select the `generate-skill` optional skill — or —
|
|
297
|
-
2. **Install the official Anthropic skill-creator** pack:
|
|
298
|
-
```bash
|
|
299
|
-
npx skills add anthropics/skills
|
|
300
|
-
```
|
|
301
|
-
|
|
302
|
-
Both provide structured templates, best practices, and eval frameworks for writing high-quality Claude Code skills.
|
|
303
|
-
|
|
304
|
-
See the [Claude Code skills documentation](https://docs.anthropic.com/en/docs/claude-code/skills) for the full specification.
|
|
197
|
+
---
|
|
305
198
|
|
|
306
199
|
## Requirements
|
|
307
200
|
|
|
308
201
|
- **Node.js 18+**
|
|
309
|
-
- **[Claude Code](https://docs.anthropic.com/en/docs/claude-code)**
|
|
202
|
+
- **[Claude Code](https://docs.anthropic.com/en/docs/claude-code)** installed and configured
|
|
310
203
|
|
|
311
204
|
## Contributing
|
|
312
205
|
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
- **Add
|
|
316
|
-
- **
|
|
317
|
-
- **Add an optional skill** — Add to `optional-skills/` and the `OPTIONAL_ADDONS` array
|
|
318
|
-
- **Suggest a community pack** — Open a PR to add it to the pack list
|
|
319
|
-
|
|
320
|
-
### Development
|
|
321
|
-
|
|
322
|
-
1. Fork the repository
|
|
323
|
-
2. Create your branch (`git checkout -b feat/my-feature`)
|
|
324
|
-
3. Commit your changes following the included [commit conventions](config/commit-conventions.md)
|
|
325
|
-
4. Push to the branch (`git push origin feat/my-feature`)
|
|
326
|
-
5. Open a Pull Request
|
|
206
|
+
- **Add a command** — `.md` file in `config/commands/`
|
|
207
|
+
- **Add a skill** — directory in `config/skills/` with `SKILL.md`
|
|
208
|
+
- **Add optional skill** — add to `optional-skills/` and `OPTIONAL_ADDONS`
|
|
209
|
+
- **Suggest a pack** — PR to the pack list
|
|
327
210
|
|
|
328
211
|
## Star History
|
|
329
212
|
|
package/bin/devlyn.js
CHANGED
|
@@ -594,15 +594,9 @@ async function init(skipPrompts = false) {
|
|
|
594
594
|
|
|
595
595
|
// Skip prompts if -y flag or non-interactive
|
|
596
596
|
if (skipPrompts || !process.stdin.isTTY) {
|
|
597
|
-
log('\n💡 Add optional addons later:', 'dim');
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
log(` npx devlyn-cli (select "${addon.name}" during install)`, 'dim');
|
|
601
|
-
} else {
|
|
602
|
-
log(` npx skills add ${addon.name}`, 'dim');
|
|
603
|
-
}
|
|
604
|
-
});
|
|
605
|
-
log('');
|
|
597
|
+
log('\n💡 Add optional addons later: run `npx devlyn-cli` without -y', 'dim');
|
|
598
|
+
log(`\n${COLORS.dim} Enjoying devlyn? Star it on GitHub — it helps others find it:${COLORS.reset}`);
|
|
599
|
+
log(` ${COLORS.purple}→ https://github.com/fysoul17/devlyn-cli${COLORS.reset}\n`);
|
|
606
600
|
return;
|
|
607
601
|
}
|
|
608
602
|
|
|
@@ -621,7 +615,9 @@ async function init(skipPrompts = false) {
|
|
|
621
615
|
}
|
|
622
616
|
|
|
623
617
|
log('\n✨ All done!', 'green');
|
|
624
|
-
log(' Run `npx devlyn-cli` again to update
|
|
618
|
+
log(' Run `npx devlyn-cli` again to update', 'dim');
|
|
619
|
+
log(`\n${COLORS.dim} Enjoying devlyn? Star it on GitHub — it helps others find it:${COLORS.reset}`);
|
|
620
|
+
log(` ${COLORS.purple}→ https://github.com/fysoul17/devlyn-cli${COLORS.reset}\n`);
|
|
625
621
|
}
|
|
626
622
|
|
|
627
623
|
function showHelp() {
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devlyn-cli",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Claude Code
|
|
3
|
+
"version": "1.7.1",
|
|
4
|
+
"description": "AI development toolkit for Claude Code — ideate, auto-resolve, and ship with context engineering and agent orchestration",
|
|
5
|
+
"homepage": "https://github.com/fysoul17/devlyn-cli#readme",
|
|
5
6
|
"bin": {
|
|
6
7
|
"devlyn": "bin/devlyn.js"
|
|
7
8
|
},
|
|
@@ -16,8 +17,17 @@
|
|
|
16
17
|
"claude",
|
|
17
18
|
"claude-code",
|
|
18
19
|
"ai",
|
|
19
|
-
"
|
|
20
|
-
"
|
|
20
|
+
"ai-agent",
|
|
21
|
+
"ai-tools",
|
|
22
|
+
"context-engineering",
|
|
23
|
+
"harness-engineering",
|
|
24
|
+
"agent-orchestration",
|
|
25
|
+
"prompt-engineering",
|
|
26
|
+
"code-review",
|
|
27
|
+
"devlyn",
|
|
28
|
+
"developer-tools",
|
|
29
|
+
"automation",
|
|
30
|
+
"cli"
|
|
21
31
|
],
|
|
22
32
|
"author": "",
|
|
23
33
|
"license": "MIT",
|