kenmark-skills 1.0.6 → 1.1.4
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 +47 -8
- package/brain/CHANGELOG.md +36 -0
- package/package.json +5 -1
- package/scripts/cli.js +18 -0
- package/scripts/interactive.js +2 -1
- package/scripts/kenmark-hub.js +660 -0
- package/scripts/setup-skills.js +142 -95
- package/scripts/skills-adopt.js +180 -0
- package/scripts/skills-init.js +4 -2
- package/scripts/skills-inventory.js +66 -34
- package/scripts/skills-update.js +22 -0
- package/scripts/subagents-inventory.js +580 -0
- package/skills/user-skills/recommended-catalog.json +117 -40
- package/skills/user-skills/skills-init/SKILL.md +4 -2
- package/skills/user-skills/skills-install-recommended/SKILL.md +28 -28
- package/skills/user-skills/skills-maintain/SKILL.md +16 -4
- package/skills/user-skills/skills-router/SKILL.md +33 -19
- package/skills/user-skills/skills-update/SKILL.md +17 -8
- package/skills/user-skills/subagents-maintain/SKILL.md +127 -0
package/README.md
CHANGED
|
@@ -40,11 +40,12 @@ For installing, updating, and cleaning up skills on your machine (pairs with **`
|
|
|
40
40
|
|
|
41
41
|
| Skill | Purpose |
|
|
42
42
|
| --- | --- |
|
|
43
|
-
| [`skills-install-recommended`](skills/user-skills/skills-install-recommended/SKILL.md) | Install curated third-party packs (Impeccable, ECC,
|
|
43
|
+
| [`skills-install-recommended`](skills/user-skills/skills-install-recommended/SKILL.md) | Install curated third-party packs (Impeccable, ECC, Graphify, code review, SEO/GEO) with scope and pack selection |
|
|
44
44
|
| [`skills-update`](skills/user-skills/skills-update/SKILL.md) | Refresh Kenmark skills and optionally reinstall recommended packs |
|
|
45
45
|
| [`skills-maintain`](skills/user-skills/skills-maintain/SKILL.md) | Inventory installed skills, group duplicates, recommend keep vs remove (no auto-delete) |
|
|
46
|
+
| [`subagents-maintain`](skills/user-skills/subagents-maintain/SKILL.md) | Inventory installed sub-agents across Claude, Cursor, Codex, Gemini, OpenCode, MiniMax; recommend keep vs remove (no auto-delete) |
|
|
46
47
|
|
|
47
|
-
**Typical path:** `skills-init` or `npx kenmark-skills setup` → **`skills-install-recommended`** for curated packs → day-to-day **`skills-router`** → periodic **`skills-update`** / **`skills-maintain`**.
|
|
48
|
+
**Typical path:** `skills-init` or `npx kenmark-skills setup` → **`skills-install-recommended`** for curated packs → day-to-day **`skills-router`** → periodic **`skills-update`** / **`skills-maintain`** / **`subagents-maintain`**.
|
|
48
49
|
|
|
49
50
|
These skills assume a **`brain/`** knowledge base (standards, changelog, optional issue tracker). On a new repo: **`init-brain`** → **`issues-setup`** if you track work in `brain/issues/` → **`commit-push`** when shipping.
|
|
50
51
|
|
|
@@ -63,9 +64,11 @@ All `kenmark-skills` commands **prompt in the terminal by default** (TTY). For a
|
|
|
63
64
|
| --- | --- | --- |
|
|
64
65
|
| `init` | `npx kenmark-skills init` | `npx kenmark-skills init --global --ide all -y` |
|
|
65
66
|
| `setup` | `npx kenmark-skills setup` | `npx kenmark-skills setup --global --ide cursor -y` |
|
|
66
|
-
| `install-recommended` | `npx kenmark-skills install-recommended` | `npx kenmark-skills install-recommended --ids impeccable
|
|
67
|
+
| `install-recommended` | `npx kenmark-skills install-recommended` | `npx kenmark-skills install-recommended --ids impeccable --global -y` |
|
|
67
68
|
| `update` | `npx kenmark-skills update` | `npx kenmark-skills update --both --global -y` |
|
|
69
|
+
| `adopt` | `npx kenmark-skills adopt` | `npx kenmark-skills adopt --global --ide all -y` |
|
|
68
70
|
| `inventory` | `npx kenmark-skills inventory` | `npx kenmark-skills inventory --markdown ./report.md -y` |
|
|
71
|
+
| `subagents-inventory` | `npx kenmark-skills subagents-inventory` | `npx kenmark-skills subagents-inventory --markdown ./agents.md --include-marketplaces -y` |
|
|
69
72
|
|
|
70
73
|
### Option A — Global npm install (recommended)
|
|
71
74
|
|
|
@@ -74,7 +77,29 @@ npm install -g kenmark-skills
|
|
|
74
77
|
npx kenmark-skills init
|
|
75
78
|
```
|
|
76
79
|
|
|
77
|
-
**`init`** walks through Kenmark skills + optional curated packs. For Kenmark-only
|
|
80
|
+
**`init`** walks through Kenmark skills + optional curated packs. For Kenmark-only install, use **`setup`** (or `kenmark-skills-setup`).
|
|
81
|
+
|
|
82
|
+
### Kenmark skill hub (`~/.kenmark`)
|
|
83
|
+
|
|
84
|
+
Kenmark first-party skills and **curated catalog** skills (Impeccable, ECC, Graphify, code review, SEO/GEO, and more) are stored once under:
|
|
85
|
+
|
|
86
|
+
- **Store:** `~/.kenmark/store/skills/<name>/`
|
|
87
|
+
- **Manifest:** `~/.kenmark/manifest.json`
|
|
88
|
+
|
|
89
|
+
`setup` copies bundled skills into the store, then **symlinks** (or copies on Windows when symlinks are unavailable) into each IDE path. **`update`** refreshes the store and runs **`adopt`** by default to consolidate catalog skills into the store and relink IDEs. **Adopt** includes Kenmark bundled skills and adoptable catalog packs (Impeccable, ECC, and more) when present on disk.
|
|
90
|
+
|
|
91
|
+
| Flag | Purpose |
|
|
92
|
+
| --- | --- |
|
|
93
|
+
| `--copy` | Force copy into IDE paths instead of symlinks |
|
|
94
|
+
| `--force` | Overwrite store entries when reinstalling |
|
|
95
|
+
| `--keep-store` | On uninstall, remove IDE links but leave `~/.kenmark` |
|
|
96
|
+
|
|
97
|
+
```bash
|
|
98
|
+
npx kenmark-skills adopt --global --ide all -y # consolidate catalog skills into store
|
|
99
|
+
npx kenmark-skills update --skip-adopt # refresh without adopt pass
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
IDE paths (symlinks point at the store for Kenmark/catalog skills):
|
|
78
103
|
|
|
79
104
|
- Cursor: `~/.cursor/skills`
|
|
80
105
|
- Codex/shared agents: `~/.agents/skills`
|
|
@@ -85,6 +110,7 @@ npx kenmark-skills init
|
|
|
85
110
|
- Trae: `~/.trae/skills` / `~/.trae-cn/skills`
|
|
86
111
|
- Rovo Dev: `~/.rovodev/skills`
|
|
87
112
|
- Qoder: `~/.qoder/skills`
|
|
113
|
+
- MiniMax Code: `~/.minimax/skills`
|
|
88
114
|
|
|
89
115
|
For Claude Code specifically, setup also installs slash-command wrappers in `~/.claude/commands`:
|
|
90
116
|
|
|
@@ -133,18 +159,30 @@ npx kenmark-skills inventory --markdown ~/Desktop/skills-report.md --json ~/Desk
|
|
|
133
159
|
npx kenmark-skills inventory --include-plugins
|
|
134
160
|
```
|
|
135
161
|
|
|
136
|
-
|
|
162
|
+
### Sub-agents inventory
|
|
163
|
+
|
|
164
|
+
Scan installed sub-agents (Claude, Cursor, Codex, Gemini, OpenCode, MiniMax) and get a keep / dedupe / remove report. Same output layout as the skills inventory, but walks `agents/` directories and reads YAML frontmatter (`name`, `description`, `tools`, `model`).
|
|
165
|
+
|
|
166
|
+
```bash
|
|
167
|
+
npx kenmark-skills subagents-inventory
|
|
168
|
+
npx kenmark-skills subagents-inventory --markdown ~/Desktop/subagents-report.md --json ~/Desktop/subagents-inventory.json
|
|
169
|
+
npx kenmark-skills subagents-inventory --include-marketplaces
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
For guided chat cleanup (no auto-delete), use the **`subagents-maintain`** skill — it pairs with **`skills-maintain`** for the full library audit.
|
|
173
|
+
|
|
174
|
+
Install curated packs from [`recommended-catalog.json`](skills/user-skills/recommended-catalog.json) — Impeccable, ECC, Graphify, code review, SEO/GEO, and more. Install methods vary by pack: npx, git clone, uv/pipx, or `npx ecc-install` with a profile. Default is **global** install; use **project** for the current repo only.
|
|
137
175
|
|
|
138
176
|
```bash
|
|
139
177
|
npx kenmark-skills install-recommended --list
|
|
140
178
|
|
|
141
|
-
# Interactive: scope → packs
|
|
179
|
+
# Interactive: scope → packs
|
|
142
180
|
npx kenmark-skills install-recommended
|
|
143
181
|
|
|
144
182
|
# Non-interactive
|
|
145
183
|
npx kenmark-skills install-recommended --all --global -y
|
|
146
184
|
npx kenmark-skills install-recommended --all --project -y
|
|
147
|
-
npx kenmark-skills install-recommended --ids impeccable
|
|
185
|
+
npx kenmark-skills install-recommended --ids impeccable --global -y
|
|
148
186
|
npx kenmark-skills install-recommended --dry-run --all --project
|
|
149
187
|
```
|
|
150
188
|
|
|
@@ -160,7 +198,7 @@ npx kenmark-skills update
|
|
|
160
198
|
# Non-interactive
|
|
161
199
|
npx kenmark-skills update --both --global -y
|
|
162
200
|
npx kenmark-skills update --kenmark-only --global --ide all -y
|
|
163
|
-
npx kenmark-skills update --recommended-only --global --ids impeccable
|
|
201
|
+
npx kenmark-skills update --recommended-only --global --ids impeccable -y
|
|
164
202
|
npx kenmark-skills update --npm-only -y
|
|
165
203
|
```
|
|
166
204
|
|
|
@@ -273,6 +311,7 @@ kenmark-skills/
|
|
|
273
311
|
├── issues-*/
|
|
274
312
|
├── skills-maintain/
|
|
275
313
|
├── skills-install-recommended/
|
|
314
|
+
├── subagents-maintain/
|
|
276
315
|
└── recommended-catalog.json
|
|
277
316
|
```
|
|
278
317
|
|
package/brain/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## v1.1.4 — Multi-pack recommended catalog
|
|
4
|
+
|
|
5
|
+
- **recommended-catalog.json (v3):** Catalog expanded from 1 to 5 packs: `impeccable` (default), `ecc` (minimal/core/full profiles, default `minimal`), `graphify` (Python via uv/pipx), `code-review-skill` (git clone), `seo-geo-claude-skills` (npx). Dropped `defaults.eccProfile`; the profile now lives on the `ecc` pack itself.
|
|
6
|
+
- **scripts/skills-install-recommended.js:** Reused existing `id === "ecc"` special-casing to wire up the ECC profile prompt and `{{profile}}` placeholder substitution. CLI now accepts `--ecc-profile minimal|core|full` (e.g. `npx kenmark-skills install-recommended --ids ecc --ecc-profile minimal --global -y`).
|
|
7
|
+
- **skills-install-recommended, skills-init, skills-update, README:** Docs and examples updated to reflect the multi-pack catalog. The "ECC, gstack not in this catalog" note is gone; the Impeccable-only pack table now lists all 5 packs with their install methods.
|
|
8
|
+
- **Removed:** `compound-engineering` pack entry (replaced by `ecc` as the preferred harness pack).
|
|
9
|
+
|
|
10
|
+
## v1.1.3 — Impeccable-only recommended catalog
|
|
11
|
+
|
|
12
|
+
- **recommended-catalog.json (v3):** Removed `ecc` and `gstack` packs; only **Impeccable** remains (`defaultSelected: true`). Dropped `defaults.eccProfile`.
|
|
13
|
+
- **skills-install-recommended, skills-init, skills-update, README:** Docs and examples updated for Impeccable-only curated installs. ECC/gstack can still be installed separately outside the catalog.
|
|
14
|
+
|
|
15
|
+
## v1.1.2 — gstack in recommended catalog
|
|
16
|
+
|
|
17
|
+
- **recommended-catalog.json:** Added [gstack](https://github.com/garrytan/gstack) pack (`id: gstack`) with global `git clone` + `./setup` and project team-mode via `gstack-team-init optional`; `defaultSelected: false`.
|
|
18
|
+
- **skills-install-recommended:** Documented gstack install commands, requirements (Git, Bun), and overlap note with ECC.
|
|
19
|
+
|
|
20
|
+
## v1.1.1 — ECC adopt scope fix
|
|
21
|
+
|
|
22
|
+
- **`kenmark-hub.js`:** ECC adopt names come from ECC `install-profiles.json` / `install-modules.json` (profile from catalog, default `core`), not every skill under `~/.claude/skills`. Optional pack-level `adoptSkillNames` override in `recommended-catalog.json`.
|
|
23
|
+
|
|
24
|
+
## v1.1.0 — Kenmark unified skill hub
|
|
25
|
+
|
|
26
|
+
- **`~/.kenmark/store/skills`:** Canonical store for Kenmark bundled skills; IDE paths symlink (or copy on Windows) instead of blind per-IDE copies.
|
|
27
|
+
- **`scripts/kenmark-hub.js`:** Manifest, install-to-store, relink, adopt catalog skills (bundled + Impeccable + ECC skill folders).
|
|
28
|
+
- **`setup-skills.js`:** Store + link; `--copy`, `--force`, `--keep-store` / `--no-keep-store` on uninstall.
|
|
29
|
+
- **`skills-update.js`:** Runs adopt after setup/recommended by default; `--skip-adopt`.
|
|
30
|
+
- **CLI:** `npx kenmark-skills adopt`.
|
|
31
|
+
- **`skills-inventory.js`:** Scans `kenmark-store`; verdict `adopt-candidate`; `issues-*` in `KEEP_ALWAYS`.
|
|
32
|
+
- **Docs:** README hub section; **skills-init**, **skills-update**, **skills-maintain**, **skills-router** (registry merges store + agents).
|
|
33
|
+
|
|
34
|
+
## v2026.06.02-2345-minimax-code-target
|
|
35
|
+
|
|
36
|
+
- **Setup / init / inventory:** Added **MiniMax Code** as an install target (`~/.minimax/skills`, project `.minimax/skills`). Auto-detect when `~/.minimax` exists.
|
|
37
|
+
- **README:** Documented MiniMax Code global skills path.
|
|
38
|
+
|
|
3
39
|
## v2026.06.02-2330-readme-skills-grouped
|
|
4
40
|
|
|
5
41
|
- **README:** Reorganized "What's included" by use case — onboard, ship, `issues-*`, `skills-*` — with workflow order within each group.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kenmark-skills",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "Skills by Kenmark ITan Solutions — Cursor/Codex agent skills from our development workflows. Created by Tanooj Mehra & Adwait Date.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|
|
@@ -11,12 +11,15 @@
|
|
|
11
11
|
"skills/COPIED_SKILLS.md",
|
|
12
12
|
"brain/CHANGELOG.md",
|
|
13
13
|
"scripts/setup-skills.js",
|
|
14
|
+
"scripts/kenmark-hub.js",
|
|
15
|
+
"scripts/skills-adopt.js",
|
|
14
16
|
"scripts/cli.js",
|
|
15
17
|
"scripts/interactive.js",
|
|
16
18
|
"scripts/skills-init.js",
|
|
17
19
|
"scripts/skills-inventory.js",
|
|
18
20
|
"scripts/skills-install-recommended.js",
|
|
19
21
|
"scripts/skills-update.js",
|
|
22
|
+
"scripts/subagents-inventory.js",
|
|
20
23
|
"skills/user-skills/recommended-catalog.json"
|
|
21
24
|
],
|
|
22
25
|
"scripts": {
|
|
@@ -24,6 +27,7 @@
|
|
|
24
27
|
"setup": "node scripts/cli.js setup",
|
|
25
28
|
"uninstall:skills": "node scripts/cli.js uninstall",
|
|
26
29
|
"inventory": "node scripts/cli.js inventory",
|
|
30
|
+
"subagents-inventory": "node scripts/cli.js subagents-inventory",
|
|
27
31
|
"install-recommended": "node scripts/cli.js install-recommended",
|
|
28
32
|
"update": "node scripts/cli.js update",
|
|
29
33
|
"setup:skills": "node scripts/setup-skills.js",
|
package/scripts/cli.js
CHANGED
|
@@ -16,8 +16,10 @@ function printUsage() {
|
|
|
16
16
|
console.log(" kenmark-skills setup [--global|--project] [--ide <target>] [-y]");
|
|
17
17
|
console.log(" kenmark-skills uninstall [--global|--project] [--ide <target>] [-y]");
|
|
18
18
|
console.log(" kenmark-skills inventory [--json path] [--markdown path] [--include-plugins]");
|
|
19
|
+
console.log(" kenmark-skills subagents-inventory [--json path] [--markdown path] [--include-plugins] [--include-marketplaces]");
|
|
19
20
|
console.log(" kenmark-skills install-recommended [--list] [--all] [--ids a,b] [--global|--project] [-y]");
|
|
20
21
|
console.log(" kenmark-skills update [--kenmark-only|--recommended-only|--both] [--global|--project] [-y]");
|
|
22
|
+
console.log(" kenmark-skills adopt [--global|--project] [--ide <target>] [--dry-run] [-y]");
|
|
21
23
|
console.log(" kenmark-skills help");
|
|
22
24
|
console.log("");
|
|
23
25
|
console.log("Examples:");
|
|
@@ -66,6 +68,14 @@ if (command === "inventory") {
|
|
|
66
68
|
process.exit(result.status === null ? 1 : result.status);
|
|
67
69
|
}
|
|
68
70
|
|
|
71
|
+
if (command === "subagents-inventory" || command === "agents-inventory") {
|
|
72
|
+
const scriptPath = path.join(__dirname, "subagents-inventory.js");
|
|
73
|
+
const result = spawnSync(process.execPath, [scriptPath, ...args.slice(1)], {
|
|
74
|
+
stdio: "inherit"
|
|
75
|
+
});
|
|
76
|
+
process.exit(result.status === null ? 1 : result.status);
|
|
77
|
+
}
|
|
78
|
+
|
|
69
79
|
if (command === "install-recommended") {
|
|
70
80
|
const scriptPath = path.join(__dirname, "skills-install-recommended.js");
|
|
71
81
|
const result = spawnSync(process.execPath, [scriptPath, ...args.slice(1)], {
|
|
@@ -82,6 +92,14 @@ if (command === "update") {
|
|
|
82
92
|
process.exit(result.status === null ? 1 : result.status);
|
|
83
93
|
}
|
|
84
94
|
|
|
95
|
+
if (command === "adopt") {
|
|
96
|
+
const scriptPath = path.join(__dirname, "skills-adopt.js");
|
|
97
|
+
const result = spawnSync(process.execPath, [scriptPath, ...args.slice(1)], {
|
|
98
|
+
stdio: "inherit"
|
|
99
|
+
});
|
|
100
|
+
process.exit(result.status === null ? 1 : result.status);
|
|
101
|
+
}
|
|
102
|
+
|
|
85
103
|
console.error(`Unknown command: ${command}`);
|
|
86
104
|
printUsage();
|
|
87
105
|
process.exit(1);
|
package/scripts/interactive.js
CHANGED
|
@@ -17,7 +17,8 @@ const IDE_LABELS = {
|
|
|
17
17
|
trae: "Trae (.trae/skills)",
|
|
18
18
|
"trae-cn": "Trae CN (.trae-cn/skills)",
|
|
19
19
|
rovo: "Rovo Dev (.rovodev/skills)",
|
|
20
|
-
qoder: "Qoder (.qoder/skills)"
|
|
20
|
+
qoder: "Qoder (.qoder/skills)",
|
|
21
|
+
minimax: "MiniMax Code (~/.minimax/skills)"
|
|
21
22
|
};
|
|
22
23
|
|
|
23
24
|
function createRl() {
|