@eltonssouza/development-utility-kit 0.13.0 → 0.14.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 +9 -0
- package/README.npm.md +9 -0
- package/README.repo.md +11 -0
- package/bin/cli.js +32 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,6 +24,15 @@ npx @eltonssouza/development-utility-kit install
|
|
|
24
24
|
|
|
25
25
|
> Run `npx … install` from inside a project folder — not from a drive root.
|
|
26
26
|
|
|
27
|
+
## Recommended companions
|
|
28
|
+
|
|
29
|
+
Stands on the best community skills & plugins — recommended, not bundled (the installer prints this too):
|
|
30
|
+
|
|
31
|
+
- **Impeccable** (frontend design gate) — `npx impeccable skills install`
|
|
32
|
+
- **Caveman** (token-saving output) — `npm install -g @juliusbrussee/caveman-code`
|
|
33
|
+
- **RTK** (token-killer CLI proxy) — `brew install rtk` *(macOS)*
|
|
34
|
+
- **Grill-me** (discovery interview) — `npx skills@latest add mattpocock/skills`
|
|
35
|
+
|
|
27
36
|
## What you get
|
|
28
37
|
|
|
29
38
|
- **18 keyword-triggered skills** + **21 stack-agnostic agents** + stack knowledge packs (Java/Spring, TypeScript/Angular, and more)
|
package/README.npm.md
CHANGED
|
@@ -24,6 +24,15 @@ npx @eltonssouza/development-utility-kit install
|
|
|
24
24
|
|
|
25
25
|
> Run `npx … install` from inside a project folder — not from a drive root.
|
|
26
26
|
|
|
27
|
+
## Recommended companions
|
|
28
|
+
|
|
29
|
+
Stands on the best community skills & plugins — recommended, not bundled (the installer prints this too):
|
|
30
|
+
|
|
31
|
+
- **Impeccable** (frontend design gate) — `npx impeccable skills install`
|
|
32
|
+
- **Caveman** (token-saving output) — `npm install -g @juliusbrussee/caveman-code`
|
|
33
|
+
- **RTK** (token-killer CLI proxy) — `brew install rtk` *(macOS)*
|
|
34
|
+
- **Grill-me** (discovery interview) — `npx skills@latest add mattpocock/skills`
|
|
35
|
+
|
|
27
36
|
## What you get
|
|
28
37
|
|
|
29
38
|
- **18 keyword-triggered skills** + **21 stack-agnostic agents** + stack knowledge packs (Java/Spring, TypeScript/Angular, and more)
|
package/README.repo.md
CHANGED
|
@@ -27,6 +27,17 @@ CLI binary: `duk` · Node `>=18` · License: MIT
|
|
|
27
27
|
npx @eltonssouza/development-utility-kit install
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
+
### Recommended companions
|
|
31
|
+
|
|
32
|
+
development-utility-kit stands on the best community skills & plugins. They are **recommended, not bundled** — install the ones you want separately (the npx installer prints this list too). We use them, credit them ([§Acknowledgements](#acknowledgements)), and never re-distribute them.
|
|
33
|
+
|
|
34
|
+
| Companion | What it adds | Install |
|
|
35
|
+
|---|---|---|
|
|
36
|
+
| **Impeccable** | frontend design gate (polish / audit / critique) — wired into `project-manager` §6.6 | `npx impeccable skills install` |
|
|
37
|
+
| **Caveman** | token-saving telegraphic output (~75% fewer tokens) | `npm install -g @juliusbrussee/caveman-code` |
|
|
38
|
+
| **RTK** | Rust Token Killer CLI proxy (60–90% savings) — powers the dashboard widget | `brew install rtk` *(macOS; see RTK repo for Windows/Linux)* |
|
|
39
|
+
| **Grill-me** | relentless discovery interview (opens the delivery pipeline) | `npx skills@latest add mattpocock/skills` |
|
|
40
|
+
|
|
30
41
|
---
|
|
31
42
|
|
|
32
43
|
## What it is
|
package/bin/cli.js
CHANGED
|
@@ -450,6 +450,38 @@ function adoptProject(opts) {
|
|
|
450
450
|
process.stdout.write(' npm install -g @eltonssouza/development-utility-kit\n');
|
|
451
451
|
}
|
|
452
452
|
}
|
|
453
|
+
|
|
454
|
+
printCompanionsNotice();
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
// ─── companion skills/plugins notice ──────────────────────────────────────────
|
|
458
|
+
|
|
459
|
+
/**
|
|
460
|
+
* The community skills/plugins the harness builds on. Recommended, not bundled —
|
|
461
|
+
* each is installed separately by the user (per ADR-010 / Acknowledgements).
|
|
462
|
+
*/
|
|
463
|
+
const COMPANIONS = [
|
|
464
|
+
{ name: 'Impeccable', what: 'frontend design gate (polish / audit / critique)', cmd: 'npx impeccable skills install' },
|
|
465
|
+
{ name: 'Caveman', what: 'token-saving telegraphic output (~75% fewer tokens)', cmd: 'npm install -g @juliusbrussee/caveman-code' },
|
|
466
|
+
{ name: 'RTK', what: 'Rust Token Killer CLI proxy (60-90% savings)', cmd: 'brew install rtk', note: 'macOS; see the RTK repo for Windows/Linux' },
|
|
467
|
+
{ name: 'Grill-me', what: 'relentless discovery interview', cmd: 'npx skills@latest add mattpocock/skills' },
|
|
468
|
+
];
|
|
469
|
+
|
|
470
|
+
/**
|
|
471
|
+
* Print the recommended-companions notice after an install. Recommendation
|
|
472
|
+
* only — never auto-installs (commands span npx / npm -g / brew and are
|
|
473
|
+
* platform-specific). Credits live in README §Acknowledgements.
|
|
474
|
+
*/
|
|
475
|
+
function printCompanionsNotice() {
|
|
476
|
+
process.stdout.write('\n' + '─'.repeat(70) + '\n');
|
|
477
|
+
process.stdout.write('development-utility-kit stands on the best community skills & plugins.\n');
|
|
478
|
+
process.stdout.write('Recommended companions (install separately, when you want them):\n\n');
|
|
479
|
+
for (const c of COMPANIONS) {
|
|
480
|
+
process.stdout.write(` • ${c.name} — ${c.what}\n`);
|
|
481
|
+
process.stdout.write(` ${c.cmd}${c.note ? ` (${c.note})` : ''}\n`);
|
|
482
|
+
}
|
|
483
|
+
process.stdout.write('\nWe use them, credit them, and never re-distribute them. See README §Acknowledgements.\n');
|
|
484
|
+
process.stdout.write('─'.repeat(70) + '\n');
|
|
453
485
|
}
|
|
454
486
|
|
|
455
487
|
// ─── newProject (duk new <name>) ──────────────────────────────────────────────
|