devlyn-cli 2.3.1 → 2.3.2
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 +3 -1
- package/bin/devlyn.js +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ If devlyn-cli saved you time, [give it a star](https://github.com/fysoul17/devly
|
|
|
27
27
|
npx devlyn-cli
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
That's it. The interactive installer handles everything. Claude Code config is installed by default; optional AI CLI instructions can be selected during install. Choose **Codex CLI (OpenAI)** to install `AGENTS.md`
|
|
30
|
+
That's it. The interactive installer handles everything. Claude Code config is installed by default; optional AI CLI instructions can be selected during install. Choose **Codex CLI (OpenAI)** to install `AGENTS.md` and the `devlyn:resolve`, `devlyn:ideate`, and `devlyn:design-ui` skills into `~/.codex/skills/`. In Codex, invoke them as skills with `$devlyn:resolve`, `$devlyn:ideate`, or `$devlyn:design-ui` rather than Claude Code slash commands. Run it again anytime to update.
|
|
31
31
|
|
|
32
32
|
---
|
|
33
33
|
|
|
@@ -39,6 +39,8 @@ devlyn-cli turns Claude Code into a hands-free development pipeline. The pipelin
|
|
|
39
39
|
ideate (optional) → resolve → ship
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
+
Codex note: when the optional Codex install is selected, these workflows are installed as Codex skills. Use `$devlyn:ideate`, `$devlyn:resolve`, or `$devlyn:design-ui` in Codex; the `/devlyn:*` slash-command form is for Claude Code.
|
|
43
|
+
|
|
42
44
|
### Step 1 (optional) — Plan with `/devlyn:ideate`
|
|
43
45
|
|
|
44
46
|
Turn a raw idea into a verifiable spec — single-feature, multi-feature, or "normalize this external doc".
|
package/bin/devlyn.js
CHANGED
|
@@ -523,7 +523,7 @@ function detectOtherCLIs() {
|
|
|
523
523
|
return detected;
|
|
524
524
|
}
|
|
525
525
|
|
|
526
|
-
// Install
|
|
526
|
+
// Install devlyn:resolve + devlyn:ideate + devlyn:design-ui + _shared skills into a CLI's
|
|
527
527
|
// global skills directory (e.g. ~/.codex/skills/). Returns count of skills
|
|
528
528
|
// copied. Skipped silently for CLIs without a skillsDir (e.g. cursor, copilot
|
|
529
529
|
// at the time of writing — they don't have an analogous skill-loader).
|
|
@@ -607,8 +607,8 @@ function installAgentsForCLI(cliKey) {
|
|
|
607
607
|
}
|
|
608
608
|
|
|
609
609
|
// If this CLI also supports a global skill-loader (currently Codex), install
|
|
610
|
-
//
|
|
611
|
-
//
|
|
610
|
+
// devlyn:resolve + devlyn:ideate + devlyn:design-ui + _shared. Codex invokes
|
|
611
|
+
// these as skills (for example `$devlyn:resolve`), not Claude slash commands.
|
|
612
612
|
const skillsCopied = installSkillsForCLI(cliKey);
|
|
613
613
|
if (skillsCopied > 0) {
|
|
614
614
|
log(` → ${skillsCopied} skill${skillsCopied > 1 ? 's' : ''} installed (devlyn:resolve / devlyn:ideate / devlyn:design-ui / _shared)`, 'dim');
|
|
@@ -761,7 +761,7 @@ async function init(skipPrompts = false) {
|
|
|
761
761
|
if (cli.configDir) {
|
|
762
762
|
desc = `Install agents into ${cli.configDir}/`;
|
|
763
763
|
} else if (cli.skillsDir) {
|
|
764
|
-
desc = `Install ${cli.instructionsFile} +
|
|
764
|
+
desc = `Install ${cli.instructionsFile} + devlyn:resolve/devlyn:ideate/devlyn:design-ui skills (~/.codex/skills/; use $devlyn:* in Codex)`;
|
|
765
765
|
} else {
|
|
766
766
|
desc = `Install ${cli.instructionsFile}`;
|
|
767
767
|
}
|
|
@@ -776,7 +776,7 @@ async function init(skipPrompts = false) {
|
|
|
776
776
|
log(` ✅ Agent instructions installed for ${agentsInstalled} CLI${agentsInstalled !== 1 ? 's' : ''}`, 'green');
|
|
777
777
|
} else {
|
|
778
778
|
log('💡 No additional CLI instructions selected', 'dim');
|
|
779
|
-
log(' Run `npx devlyn-cli agents codex` later to install Codex AGENTS.md +
|
|
779
|
+
log(' Run `npx devlyn-cli agents codex` later to install Codex AGENTS.md + devlyn skills', 'dim');
|
|
780
780
|
}
|
|
781
781
|
|
|
782
782
|
// Ask about optional addons (local skills + external packs)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devlyn-cli",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.2",
|
|
4
4
|
"description": "AI development toolkit for Claude Code — ideate, resolve, and ship with context engineering and agent orchestration",
|
|
5
5
|
"homepage": "https://github.com/fysoul17/devlyn-cli#readme",
|
|
6
6
|
"bin": {
|