@acidicsoil/portable-capabilities 0.1.9 → 0.1.13
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/CHANGELOG.md +24 -0
- package/README.md +13 -9
- package/dist-release/cli.js +346 -250
- package/dist-release/cli.js.map +4 -4
- package/dist-release/index.js +344 -188
- package/dist-release/index.js.map +4 -4
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#83](https://github.com/AcidicSoil/portable-capabilities/pull/83) [`5522b53`](https://github.com/AcidicSoil/portable-capabilities/commit/5522b53f41a26d327441f5d68ccefb4656309230) Thanks [@AcidicSoil](https://github.com/AcidicSoil)! - "chore: add patch changeset"
|
|
8
|
+
|
|
9
|
+
## 0.1.12
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#81](https://github.com/AcidicSoil/portable-capabilities/pull/81) [`e8c8632`](https://github.com/AcidicSoil/portable-capabilities/commit/e8c863228f9cfa84a2aa532752695458643988f7) Thanks [@AcidicSoil](https://github.com/AcidicSoil)! - chore bump
|
|
14
|
+
|
|
15
|
+
## 0.1.11
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- [#79](https://github.com/AcidicSoil/portable-capabilities/pull/79) [`5e90763`](https://github.com/AcidicSoil/portable-capabilities/commit/5e907634b4f48cf8aeee87202ff6912d1a65ba26) Thanks [@AcidicSoil](https://github.com/AcidicSoil)! - chore bump 0.1.11
|
|
20
|
+
|
|
21
|
+
## 0.1.10
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- [#75](https://github.com/AcidicSoil/portable-capabilities/pull/75) [`169d407`](https://github.com/AcidicSoil/portable-capabilities/commit/169d407d8b7e544db6f9b71f1521bac87df0d459) Thanks [@AcidicSoil](https://github.com/AcidicSoil)! - ● @acidicsoil/portable-capabilities@0.1.9
|
|
26
|
+
|
|
3
27
|
## 0.1.9
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -69,15 +69,15 @@ Every generated package retains a `SKILL.md` behavioral core plus its required r
|
|
|
69
69
|
|
|
70
70
|
The project generates packages for seven clients. Package generation is not the same as authoritative behavioral certification: the runtime descriptor and retained execution evidence determine whether a client is currently supported, unavailable, unsupported, or covered by an approved exception.
|
|
71
71
|
|
|
72
|
-
| Runtime | Native primitives
|
|
73
|
-
| ------------------ |
|
|
74
|
-
| oh-my-pi | Skill
|
|
75
|
-
| OpenCode | Skill, command, agent
|
|
76
|
-
| Pi | Skill, extension
|
|
77
|
-
| Claude Code | Skill, command, agent
|
|
78
|
-
| Codex | Skill, agent
|
|
79
|
-
| Google Antigravity | Skill
|
|
80
|
-
| Deep Agents Code | Skill
|
|
72
|
+
| Runtime | Native primitives | Package and verification guide |
|
|
73
|
+
| ------------------ | --------------------------------------------------- | ------------------------------------------- |
|
|
74
|
+
| oh-my-pi | Skill | [oh-my-pi](docs/runtimes/oh-my-pi.md) |
|
|
75
|
+
| OpenCode | Skill, command, agent | [OpenCode](docs/runtimes/opencode.md) |
|
|
76
|
+
| Pi | Skill, extension | [Pi](docs/runtimes/pi.md) |
|
|
77
|
+
| Claude Code | Skill, command, agent | [Claude Code](docs/runtimes/claude-code.md) |
|
|
78
|
+
| Codex | Skill, agent | [Codex](docs/runtimes/codex.md) |
|
|
79
|
+
| Google Antigravity | Skill (`agy` 1.1.4–<2.0); other surfaces unverified | [Antigravity](docs/runtimes/antigravity.md) |
|
|
80
|
+
| Deep Agents Code | Skill | [Deep Agents Code](docs/runtimes/dcode.md) |
|
|
81
81
|
|
|
82
82
|
See [Runtime usage and verification](docs/runtimes/README.md) for the shared installation flow, evidence levels, and pass criteria.
|
|
83
83
|
|
|
@@ -122,6 +122,7 @@ CONSUMER=/tmp/portable-capabilities-consumer
|
|
|
122
122
|
mkdir -p "$CONSUMER"
|
|
123
123
|
pnpm cli -- install \
|
|
124
124
|
--runtime codex \
|
|
125
|
+
--runtime-version 0.147.0 \
|
|
125
126
|
--capability convention-mining \
|
|
126
127
|
--project "$CONSUMER" \
|
|
127
128
|
--approval-policy preapproved
|
|
@@ -161,9 +162,12 @@ The v1 library contains sixteen analytical roles covering:
|
|
|
161
162
|
- anti-pattern inversion;
|
|
162
163
|
- behavior-preserving refactor specification.
|
|
163
164
|
|
|
165
|
+
See [Capability usage guide](docs/CAPABILITY-USAGE.md) for practical selection guidance, real scenarios, example requests, and boundaries between similar roles.
|
|
166
|
+
|
|
164
167
|
## Documentation
|
|
165
168
|
|
|
166
169
|
- [Getting Started](docs/GETTING-STARTED.md)
|
|
170
|
+
- [Capability usage guide](docs/CAPABILITY-USAGE.md)
|
|
167
171
|
- [Runtime usage and verification](docs/runtimes/README.md)
|
|
168
172
|
- [Testing](docs/TESTING.md)
|
|
169
173
|
- [Architecture](docs/ARCHITECTURE.md)
|