@1aboveio/skills 0.12.0 → 0.13.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 CHANGED
@@ -16,6 +16,26 @@ for packages built from a private source repository.
16
16
  - Installed content is canonical under `~/.agents/skills`, with per-skill links under
17
17
  `~/.claude/skills`. No copied store is created under any other agent directory.
18
18
 
19
+ ### External prerequisites
20
+
21
+ External skills are not package members: this package never installs, updates, or removes them.
22
+ Run the reviewed shell prerequisites separately when you need their capabilities:
23
+
24
+ #### Matt Pocock Toolkit
25
+
26
+ ```sh
27
+ SKILLS_DOWNLOAD_MAX_BYTES=33554432 SKILLS_EXTRACT_MAX_FILES=4096 SKILLS_EXTRACT_MAX_BYTES=67108864 npx skills@1.5.22 add https://codeload.github.com/mattpocock/skills/tar.gz/ed37663cc5fbef691ddfecd080dff42f7e7e350d --global --agent universal claude-code --skill batch-grill-me code-review codebase-design diagnosing-bugs domain-modeling grill-me grill-with-docs grilling handoff improve-codebase-architecture prototype research resolving-merge-conflicts setup-matt-pocock-skills tdd to-spec to-tickets triage wayfinder
28
+ ```
29
+
30
+ #### Impeccable
31
+
32
+ ```sh
33
+ IMPECCABLE_BUNDLE="$(mktemp "${TMPDIR:-/tmp}/impeccable-skill-v4.1.1.XXXXXX")"
34
+ curl --fail --location --output "$IMPECCABLE_BUNDLE" https://github.com/pbakaus/impeccable/releases/download/skill-v4.1.1/universal.zip
35
+ printf '%s %s\n' 'e16133fcf240c042e5b6bdc20ac9f3a996a3ab9652723c6d9d1291dd1760dab4' "$IMPECCABLE_BUNDLE" | shasum -a 256 --check -
36
+ IMPECCABLE_BUNDLE_PATH="$IMPECCABLE_BUNDLE" npx --yes impeccable@3.6.0 install --yes --force --providers=claude,codex --scope=global --no-hooks
37
+ ```
38
+
19
39
  ## Usage
20
40
 
21
41
  ```
@@ -25,16 +45,18 @@ npx @1aboveio/skills install --group engineering-workflow
25
45
  npx @1aboveio/skills update --group engineering-workflow
26
46
  ```
27
47
 
28
- Running `install` with no `--group` opens the interactive bundle picker. The automation flags:
48
+ Running `install` with no `--group` opens the interactive bundle picker; `update` with no
49
+ `--group` replays the remembered selection instead (see Updating). The automation flags:
29
50
 
30
51
  - `--group <id>` — select one group; repeat the flag, or pass a comma-separated list, for several.
31
52
  - `--all` — select every group in the catalog below. Mutually exclusive with `--group`.
32
- - `--dry-run` — print the planned native commands, in order, and run none of them.
33
- - `--yes` — answer the native CLI's prompts, including the overwrite prompt, with yes.
53
+ - `--dry-run` — print the planned buckets and native commands, in order, and run none of them.
54
+ - `--yes` — answer the native CLI's prompts, including the overwrite prompt, with yes, and accept
55
+ every newly declared group member without prompting.
34
56
 
35
- Selecting several groups (interactive picker, repeated `--group`, or `--all`) coalesces to one
36
- native `skills add` per upstream source, so the installation-method prompt appears once per
37
- source rather than once per group.
57
+ Selecting several groups (interactive picker, repeated `--group`, or `--all`) installs their
58
+ members as one native `skills add` per skill from the unpacked package, so one skill's failure is
59
+ reported by name and never aborts the rest of the selection.
38
60
 
39
61
  Without `--yes`, an existing same-named skill produces the native overwrite summary and a prompt.
40
62
  Declining leaves the existing content and its links exactly as they were.
@@ -44,8 +66,7 @@ Declining leaves the existing content and its links exactly as they were.
44
66
  - `engineering-workflow` — Engineering Workflow: e2e-test, ensure-coverage, implement-and-pr, resolve-issues, resolve-release, review-pr, smoke, engineering-runtime
45
67
  - `delivery-infrastructure` — Delivery Infrastructure: cloud-build, cloud-debug, cloud-deploy, docker, google-cloud, mergify, podman
46
68
  - `backend` — Backend: airflow-dag-develop, app-debug, pyspark, python-backend
47
- - `fullstack` — Fullstack: better-auth, monorepo, nextjs-fullstack, prisma-setup, shadcn, zod-v4, impeccable — impeccable is fetched from its upstream owner and not included in this package
48
- - `matt-pocock-toolkit` — Matt Pocock Toolkit: batch-grill-me, code-review, codebase-design, diagnosing-bugs, domain-modeling, grill-me, grill-with-docs, grilling, handoff, improve-codebase-architecture, prototype, research, resolving-merge-conflicts, setup-matt-pocock-skills, tdd, to-spec, to-tickets, triage, wayfinder — every member is fetched from its upstream owner and is not included in this package
69
+ - `fullstack` — Fullstack: better-auth, monorepo, nextjs-fullstack, prisma-setup, shadcn, zod-v4
49
70
 
50
71
  Internal dependencies, installed with the groups above and not selectable on their own: `harness-runtime`.
51
72
  They are an implementation detail of those groups, so `list` and the picker do not offer them and
@@ -53,7 +74,34 @@ They are an implementation detail of those groups, so `list` and the picker do n
53
74
 
54
75
  ## Updating
55
76
 
56
- `update` reruns the selected group's install recipe from the @1aboveio/skills version you
77
+ `update` with no `--group` replays the selection remembered in
78
+ `${XDG_STATE_HOME:-~/.local/state}/1aboveio-skills/selection.json` from the last run that
79
+ recorded one. A repository checkout and this
80
+ package share that one file, so switching transports keeps the same groups. Missing or corrupt memory
81
+ is an error — the coordinator never infers groups from the filesystem — and remembered groups that are
82
+ no longer selectable are dropped with a warning.
83
+
84
+ An accepted skill whose installed content already matches this package version's published digest is
85
+ skipped entirely: no native add, no overwrite prompt. When everything remembered is unchanged and no
86
+ new skill is accepted, the run exits 0 as an explicit no-op. `--dry-run` prints the unchanged,
87
+ would-refresh, and would-add buckets without writing state or invoking the native CLI.
88
+
89
+ When the version you invoke declares a member your remembered group has not accepted — a skill that
90
+ joined the group after your remembered acceptance was last recorded — update asks about that skill
91
+ by name before adding it. Each new-member prompt defaults to No; `--yes` accepts every new member
92
+ non-interactively.
93
+ Declined skills are never uninstalled by the coordinator and stay out of the remembered acceptance,
94
+ so the next update asks again.
95
+
96
+ Install and update are best-effort per skill: they continue after a single skill failure, summarize
97
+ every skill as succeeded, unchanged, declined, or failed, and exit non-zero if anything failed. There
98
+ is no rollback or transactional group update; the native CLI remains the sole write and
99
+ overwrite-consent authority. Selection memory follows the same per-skill rule: it is rewritten when
100
+ at least one user-facing member succeeded or was already unchanged, holding exactly those members —
101
+ failed and declined members are omitted — and a run with no user-facing success leaves the prior
102
+ file untouched.
103
+
104
+ `update --group ...` refreshes an explicit selection from the @1aboveio/skills version you
57
105
  invoke, so the installed result is whatever that exact version carries. Public first-party
58
106
  content follows the package version you select, not a branch: pin a version and rerunning it
59
107
  reproduces the same installation.
@@ -71,24 +119,20 @@ npx skills@1.5.22 remove --global --agent universal claude-code --skill cloud-bu
71
119
  # Backend
72
120
  npx skills@1.5.22 remove --global --agent universal claude-code --skill airflow-dag-develop app-debug pyspark python-backend
73
121
  # Fullstack
74
- npx skills@1.5.22 remove --global --agent universal claude-code --skill better-auth monorepo nextjs-fullstack prisma-setup shadcn zod-v4 impeccable
75
- # Matt Pocock Toolkit
76
- npx skills@1.5.22 remove --global --agent universal claude-code --skill batch-grill-me code-review codebase-design diagnosing-bugs domain-modeling grill-me grill-with-docs grilling handoff improve-codebase-architecture prototype research resolving-merge-conflicts setup-matt-pocock-skills tdd to-spec to-tickets triage wayfinder
122
+ npx skills@1.5.22 remove --global --agent universal claude-code --skill better-auth monorepo nextjs-fullstack prisma-setup shadcn zod-v4
77
123
  ```
78
124
 
79
125
  Removing a group leaves its dependency groups and every unrelated skill installed.
80
126
 
81
127
  ## Lifecycle
82
128
 
83
- `skills@1.5.22` is the only lifecycle authority. This package plans and orders
84
- commands; the native CLI owns installation, linking, overwrite consent, update and removal.
85
- Multi-source writes are sequential and non-transactional: there is no rollback and no atomic
86
- installation, an approved overwrite is destructive, and a failed source stops the recipe before
87
- the next source runs rather than continuing past an incomplete prerequisite.
129
+ `skills@1.5.22` is the only lifecycle authority for this package. The package
130
+ plans first-party commands; the native CLI owns installation, linking, overwrite consent, update
131
+ and removal. External prerequisites have separate upstream lifecycle and are never package steps.
88
132
 
89
133
  ## Licensing
90
134
 
91
135
  First-party skills in this package are MIT, and each installed skill carries its `LICENSE`.
92
- Externally owned skills are not republished, mirrored or relicensed here: they are fetched from
93
- their own upstream repositories at the reviewed immutable revisions printed by `--dry-run`, and
94
- their licensing stays with their authors.
136
+ Externally owned skills are not republished, mirrored, installed, updated, or removed by this
137
+ package. Their reviewed standalone shell commands pin upstream identities, and their licensing
138
+ and lifecycle stay with their authors.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1aboveio/skills",
3
- "version": "0.12.0",
3
+ "version": "0.13.0",
4
4
  "description": "Install the 1AboveIO first-party skill groups through the native Skills CLI.",
5
5
  "license": "MIT",
6
6
  "type": "module",