kenmark-skills 1.0.6 → 1.1.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 +25 -1
- package/brain/CHANGELOG.md +19 -0
- package/package.json +3 -1
- package/scripts/cli.js +9 -0
- package/scripts/interactive.js +2 -1
- package/scripts/kenmark-hub.js +612 -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/skills/user-skills/skills-init/SKILL.md +3 -1
- 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 -5
package/README.md
CHANGED
|
@@ -65,6 +65,7 @@ All `kenmark-skills` commands **prompt in the terminal by default** (TTY). For a
|
|
|
65
65
|
| `setup` | `npx kenmark-skills setup` | `npx kenmark-skills setup --global --ide cursor -y` |
|
|
66
66
|
| `install-recommended` | `npx kenmark-skills install-recommended` | `npx kenmark-skills install-recommended --ids impeccable,ecc --global -y` |
|
|
67
67
|
| `update` | `npx kenmark-skills update` | `npx kenmark-skills update --both --global -y` |
|
|
68
|
+
| `adopt` | `npx kenmark-skills adopt` | `npx kenmark-skills adopt --global --ide all -y` |
|
|
68
69
|
| `inventory` | `npx kenmark-skills inventory` | `npx kenmark-skills inventory --markdown ./report.md -y` |
|
|
69
70
|
|
|
70
71
|
### Option A — Global npm install (recommended)
|
|
@@ -74,7 +75,29 @@ npm install -g kenmark-skills
|
|
|
74
75
|
npx kenmark-skills init
|
|
75
76
|
```
|
|
76
77
|
|
|
77
|
-
**`init`** walks through Kenmark skills + optional curated packs. For Kenmark-only
|
|
78
|
+
**`init`** walks through Kenmark skills + optional curated packs. For Kenmark-only install, use **`setup`** (or `kenmark-skills-setup`).
|
|
79
|
+
|
|
80
|
+
### Kenmark skill hub (`~/.kenmark`)
|
|
81
|
+
|
|
82
|
+
Kenmark first-party skills and **curated catalog** skills (Impeccable, ECC skill folders) are stored once under:
|
|
83
|
+
|
|
84
|
+
- **Store:** `~/.kenmark/store/skills/<name>/`
|
|
85
|
+
- **Manifest:** `~/.kenmark/manifest.json`
|
|
86
|
+
|
|
87
|
+
`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, Impeccable, and ECC skills listed in the ECC install profile (`--ecc-profile`, default `core`) — not arbitrary third-party trees such as gstack mirrors.
|
|
88
|
+
|
|
89
|
+
| Flag | Purpose |
|
|
90
|
+
| --- | --- |
|
|
91
|
+
| `--copy` | Force copy into IDE paths instead of symlinks |
|
|
92
|
+
| `--force` | Overwrite store entries when reinstalling |
|
|
93
|
+
| `--keep-store` | On uninstall, remove IDE links but leave `~/.kenmark` |
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
npx kenmark-skills adopt --global --ide all -y # consolidate catalog skills into store
|
|
97
|
+
npx kenmark-skills update --skip-adopt # refresh without adopt pass
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
IDE paths (symlinks point at the store for Kenmark/catalog skills):
|
|
78
101
|
|
|
79
102
|
- Cursor: `~/.cursor/skills`
|
|
80
103
|
- Codex/shared agents: `~/.agents/skills`
|
|
@@ -85,6 +108,7 @@ npx kenmark-skills init
|
|
|
85
108
|
- Trae: `~/.trae/skills` / `~/.trae-cn/skills`
|
|
86
109
|
- Rovo Dev: `~/.rovodev/skills`
|
|
87
110
|
- Qoder: `~/.qoder/skills`
|
|
111
|
+
- MiniMax Code: `~/.minimax/skills`
|
|
88
112
|
|
|
89
113
|
For Claude Code specifically, setup also installs slash-command wrappers in `~/.claude/commands`:
|
|
90
114
|
|
package/brain/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## v1.1.1 — ECC adopt scope fix
|
|
4
|
+
|
|
5
|
+
- **`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`.
|
|
6
|
+
|
|
7
|
+
## v1.1.0 — Kenmark unified skill hub
|
|
8
|
+
|
|
9
|
+
- **`~/.kenmark/store/skills`:** Canonical store for Kenmark bundled skills; IDE paths symlink (or copy on Windows) instead of blind per-IDE copies.
|
|
10
|
+
- **`scripts/kenmark-hub.js`:** Manifest, install-to-store, relink, adopt catalog skills (bundled + Impeccable + ECC skill folders).
|
|
11
|
+
- **`setup-skills.js`:** Store + link; `--copy`, `--force`, `--keep-store` / `--no-keep-store` on uninstall.
|
|
12
|
+
- **`skills-update.js`:** Runs adopt after setup/recommended by default; `--skip-adopt`.
|
|
13
|
+
- **CLI:** `npx kenmark-skills adopt`.
|
|
14
|
+
- **`skills-inventory.js`:** Scans `kenmark-store`; verdict `adopt-candidate`; `issues-*` in `KEEP_ALWAYS`.
|
|
15
|
+
- **Docs:** README hub section; **skills-init**, **skills-update**, **skills-maintain**, **skills-router** (registry merges store + agents).
|
|
16
|
+
|
|
17
|
+
## v2026.06.02-2345-minimax-code-target
|
|
18
|
+
|
|
19
|
+
- **Setup / init / inventory:** Added **MiniMax Code** as an install target (`~/.minimax/skills`, project `.minimax/skills`). Auto-detect when `~/.minimax` exists.
|
|
20
|
+
- **README:** Documented MiniMax Code global skills path.
|
|
21
|
+
|
|
3
22
|
## v2026.06.02-2330-readme-skills-grouped
|
|
4
23
|
|
|
5
24
|
- **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.1",
|
|
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,6 +11,8 @@
|
|
|
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",
|
package/scripts/cli.js
CHANGED
|
@@ -18,6 +18,7 @@ function printUsage() {
|
|
|
18
18
|
console.log(" kenmark-skills inventory [--json path] [--markdown path] [--include-plugins]");
|
|
19
19
|
console.log(" kenmark-skills install-recommended [--list] [--all] [--ids a,b] [--global|--project] [-y]");
|
|
20
20
|
console.log(" kenmark-skills update [--kenmark-only|--recommended-only|--both] [--global|--project] [-y]");
|
|
21
|
+
console.log(" kenmark-skills adopt [--global|--project] [--ide <target>] [--dry-run] [-y]");
|
|
21
22
|
console.log(" kenmark-skills help");
|
|
22
23
|
console.log("");
|
|
23
24
|
console.log("Examples:");
|
|
@@ -82,6 +83,14 @@ if (command === "update") {
|
|
|
82
83
|
process.exit(result.status === null ? 1 : result.status);
|
|
83
84
|
}
|
|
84
85
|
|
|
86
|
+
if (command === "adopt") {
|
|
87
|
+
const scriptPath = path.join(__dirname, "skills-adopt.js");
|
|
88
|
+
const result = spawnSync(process.execPath, [scriptPath, ...args.slice(1)], {
|
|
89
|
+
stdio: "inherit"
|
|
90
|
+
});
|
|
91
|
+
process.exit(result.status === null ? 1 : result.status);
|
|
92
|
+
}
|
|
93
|
+
|
|
85
94
|
console.error(`Unknown command: ${command}`);
|
|
86
95
|
printUsage();
|
|
87
96
|
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() {
|