@acidicsoil/portable-capabilities 0.1.10 → 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 +18 -0
- package/README.md +12 -9
- package/dist-release/cli.js +153 -142
- package/dist-release/cli.js.map +3 -3
- package/dist-release/index.js +153 -142
- package/dist-release/index.js.map +3 -3
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
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
|
+
|
|
3
21
|
## 0.1.10
|
|
4
22
|
|
|
5
23
|
### 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
|
|
|
@@ -162,9 +162,12 @@ The v1 library contains sixteen analytical roles covering:
|
|
|
162
162
|
- anti-pattern inversion;
|
|
163
163
|
- behavior-preserving refactor specification.
|
|
164
164
|
|
|
165
|
+
See [Capability usage guide](docs/CAPABILITY-USAGE.md) for practical selection guidance, real scenarios, example requests, and boundaries between similar roles.
|
|
166
|
+
|
|
165
167
|
## Documentation
|
|
166
168
|
|
|
167
169
|
- [Getting Started](docs/GETTING-STARTED.md)
|
|
170
|
+
- [Capability usage guide](docs/CAPABILITY-USAGE.md)
|
|
168
171
|
- [Runtime usage and verification](docs/runtimes/README.md)
|
|
169
172
|
- [Testing](docs/TESTING.md)
|
|
170
173
|
- [Architecture](docs/ARCHITECTURE.md)
|