kenmark-skills 1.0.5 → 1.0.6

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.

Potentially problematic release.


This version of kenmark-skills might be problematic. Click here for more details.

package/README.md CHANGED
@@ -6,22 +6,47 @@ Created by **Tanooj Mehra** and **Adwait Date**.
6
6
 
7
7
  ## What's included
8
8
 
9
+ Skills are grouped by **use case**. Within each group, rows are in the order most teams run them.
10
+
11
+ ### Onboard a project (start here)
12
+
9
13
  | Skill | Purpose |
10
14
  | --- | --- |
11
15
  | [`init-brain`](skills/user-skills/init-brain/SKILL.md) | Bootstrap `brain/` and sync project standards to `CLAUDE.md`, `AGENTS.md`, `.cursorrules`, and `.cursor/rules/` |
16
+ | [`skills-init`](skills/user-skills/skills-init/SKILL.md) | First-time CLI wizard: Kenmark skills + optional curated packs (interactive; use `npx kenmark-skills init`) |
12
17
  | [`skills-router`](skills/user-skills/skills-router/SKILL.md) | Pick the best installed user skill from intent and keywords |
18
+
19
+ ### Ship changes
20
+
21
+ | Skill | Purpose |
22
+ | --- | --- |
13
23
  | [`commit-push`](skills/user-skills/commit-push/SKILL.md) | Group changes by feature, write conventional commits, push (no co-author trailers) |
24
+
25
+ ### Issue tracking (`issues-*`)
26
+
27
+ Requires **`init-brain`** (or at least `brain/issues/` from **`issues-setup`**).
28
+
29
+ | Skill | Purpose |
30
+ | --- | --- |
14
31
  | [`issues-setup`](skills/user-skills/issues-setup/SKILL.md) | Create `brain/issues/` layout and `INDEX.md` |
15
32
  | [`issues-list`](skills/user-skills/issues-list/SKILL.md) | Dashboard of open issues by area and priority |
16
33
  | [`issues-check`](skills/user-skills/issues-check/SKILL.md) | Move resolved issues to `completed/` and refresh the index |
17
34
  | [`issues-scan`](skills/user-skills/issues-scan/SKILL.md) | Discover new issues in the codebase and file them under `brain/issues/` |
18
35
  | [`issues-maintenance`](skills/user-skills/issues-maintenance/SKILL.md) | Audit issue tracker health (duplicates, stale index, missing files) |
19
- | [`skills-maintain`](skills/user-skills/skills-maintain/SKILL.md) | Inventory 1,000+ installed skills, group duplicates, recommend keep vs remove |
20
- | [`skills-install-recommended`](skills/user-skills/skills-install-recommended/SKILL.md) | Install curated third-party skill packs (Impeccable, ECC, more later) with user selection |
21
- | [`skills-init`](skills/user-skills/skills-init/SKILL.md) | First-time wizard: Kenmark skills + optional curated packs (interactive CLI) |
22
- | [`skills-update`](skills/user-skills/skills-update/SKILL.md) | Refresh Kenmark skills and optionally reinstall recommended packs (interactive) |
23
36
 
24
- These skills assume a **`brain/`** knowledge base (standards, changelog, optional issue tracker). Use **`init-brain`** first on a new repo, then the issues and git workflow skills as needed.
37
+ ### Skills library (`skills-*`)
38
+
39
+ For installing, updating, and cleaning up skills on your machine (pairs with **`npx kenmark-skills`** commands).
40
+
41
+ | Skill | Purpose |
42
+ | --- | --- |
43
+ | [`skills-install-recommended`](skills/user-skills/skills-install-recommended/SKILL.md) | Install curated third-party packs (Impeccable, ECC, …) with scope and pack selection |
44
+ | [`skills-update`](skills/user-skills/skills-update/SKILL.md) | Refresh Kenmark skills and optionally reinstall recommended packs |
45
+ | [`skills-maintain`](skills/user-skills/skills-maintain/SKILL.md) | Inventory installed skills, group duplicates, recommend keep vs remove (no auto-delete) |
46
+
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
+
49
+ 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.
25
50
 
26
51
  ## Requirements
27
52
 
@@ -193,8 +218,12 @@ Manual fallback (Claude global):
193
218
 
194
219
  ```bash
195
220
  rm -rf ~/.claude/skills/init-brain \
196
- ~/.claude/skills/skills-router \
197
221
  ~/.claude/skills/commit-push \
222
+ ~/.claude/skills/skills-router \
223
+ ~/.claude/skills/skills-init \
224
+ ~/.claude/skills/skills-install-recommended \
225
+ ~/.claude/skills/skills-update \
226
+ ~/.claude/skills/skills-maintain \
198
227
  ~/.claude/skills/issues-setup \
199
228
  ~/.claude/skills/issues-list \
200
229
  ~/.claude/skills/issues-check \
@@ -1,5 +1,10 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v2026.06.02-2330-readme-skills-grouped
4
+
5
+ - **README:** Reorganized "What's included" by use case — onboard, ship, `issues-*`, `skills-*` — with workflow order within each group.
6
+ - **README:** Extended manual Claude uninstall `rm` list to include all `skills-*` skill folders.
7
+
3
8
  ## v2026.06.02-2320-skills-maintain-interactive-docs
4
9
 
5
10
  - **skills-maintain:** document `skills-init`, interactive-first CLI, inventory TTY prompts, and `-y` for agents.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kenmark-skills",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
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,