@1aboveio/skills 0.11.0 → 0.12.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.
Files changed (23) hide show
  1. package/README.md +30 -16
  2. package/package.json +1 -1
  3. package/runtime/skills/distribution/generated/recipes.json +15 -575
  4. package/skills/backend/pyspark/SKILL.md +1 -1
  5. package/skills/cicd-pipeline/mergify/SKILL.md +1 -0
  6. package/skills/cicd-pipeline/mergify/references/configuration.md +12 -6
  7. package/skills/cicd-pipeline/mergify/references/traps.md +28 -0
  8. package/skills/engineering/engineering-runtime/coherence/workflow.json +17 -17
  9. package/skills/engineering/engineering-runtime/scripts/workflow-policy.mjs +1 -1
  10. package/skills/engineering/implement-and-pr/SKILL.md +4 -3
  11. package/skills/engineering/implement-and-pr/agents/openai.yaml +9 -0
  12. package/skills/engineering/resolve-issues/SKILL.md +4 -3
  13. package/skills/engineering/resolve-issues/agents/openai.yaml +9 -0
  14. package/skills/engineering/resolve-issues/generated/workflow-repair-policy.json +11 -11
  15. package/skills/engineering/resolve-issues/references/pre-flight-model-slots.md +2 -2
  16. package/skills/engineering/resolve-issues/references/pre-flight-recording-and-checkout.md +1 -1
  17. package/skills/engineering/resolve-issues/references/pre-flight.md +1 -1
  18. package/skills/engineering/resolve-issues/scripts/preflight-questions.mjs +32 -9
  19. package/skills/engineering/resolve-issues/scripts/run-state.mjs +1 -1
  20. package/skills/engineering/resolve-release/references/preflight.md +3 -2
  21. package/skills/engineering/resolve-release/scripts/preflight-probes.mjs +13 -1
  22. package/skills/engineering/review-pr/SKILL.md +2 -1
  23. package/skills/engineering/review-pr/agents/openai.yaml +9 -0
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
  ```
@@ -32,9 +52,8 @@ Running `install` with no `--group` opens the interactive bundle picker. The aut
32
52
  - `--dry-run` — print the planned native commands, in order, and run none of them.
33
53
  - `--yes` — answer the native CLI's prompts, including the overwrite prompt, with yes.
34
54
 
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.
55
+ Selecting several groups (interactive picker, repeated `--group`, or `--all`) coalesces their
56
+ first-party members into one native `skills add` from the unpacked package.
38
57
 
39
58
  Without `--yes`, an existing same-named skill produces the native overwrite summary and a prompt.
40
59
  Declining leaves the existing content and its links exactly as they were.
@@ -44,8 +63,7 @@ Declining leaves the existing content and its links exactly as they were.
44
63
  - `engineering-workflow` — Engineering Workflow: e2e-test, ensure-coverage, implement-and-pr, resolve-issues, resolve-release, review-pr, smoke, engineering-runtime
45
64
  - `delivery-infrastructure` — Delivery Infrastructure: cloud-build, cloud-debug, cloud-deploy, docker, google-cloud, mergify, podman
46
65
  - `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
66
+ - `fullstack` — Fullstack: better-auth, monorepo, nextjs-fullstack, prisma-setup, shadcn, zod-v4
49
67
 
50
68
  Internal dependencies, installed with the groups above and not selectable on their own: `harness-runtime`.
51
69
  They are an implementation detail of those groups, so `list` and the picker do not offer them and
@@ -71,24 +89,20 @@ npx skills@1.5.22 remove --global --agent universal claude-code --skill cloud-bu
71
89
  # Backend
72
90
  npx skills@1.5.22 remove --global --agent universal claude-code --skill airflow-dag-develop app-debug pyspark python-backend
73
91
  # 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
92
+ npx skills@1.5.22 remove --global --agent universal claude-code --skill better-auth monorepo nextjs-fullstack prisma-setup shadcn zod-v4
77
93
  ```
78
94
 
79
95
  Removing a group leaves its dependency groups and every unrelated skill installed.
80
96
 
81
97
  ## Lifecycle
82
98
 
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.
99
+ `skills@1.5.22` is the only lifecycle authority for this package. The package
100
+ plans first-party commands; the native CLI owns installation, linking, overwrite consent, update
101
+ and removal. External prerequisites have separate upstream lifecycle and are never package steps.
88
102
 
89
103
  ## Licensing
90
104
 
91
105
  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.
106
+ Externally owned skills are not republished, mirrored, installed, updated, or removed by this
107
+ package. Their reviewed standalone shell commands pin upstream identities, and their licensing
108
+ and lifecycle stay with their authors.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1aboveio/skills",
3
- "version": "0.11.0",
3
+ "version": "0.12.1",
4
4
  "description": "Install the 1AboveIO first-party skill groups through the native Skills CLI.",
5
5
  "license": "MIT",
6
6
  "type": "module",