@undefineds.co/models 0.2.30 → 0.2.32
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/package.json +1 -1
- package/skills/README.md +12 -4
package/package.json
CHANGED
package/skills/README.md
CHANGED
|
@@ -18,9 +18,9 @@ Release automation validates this directory and packages:
|
|
|
18
18
|
- a Claude Code plugin archive that contains the same skill source
|
|
19
19
|
|
|
20
20
|
The publish workflow uploads those artifacts to the GitHub Release for the
|
|
21
|
-
version tag. The repo also contains
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
version tag. The repo also contains Codex and Claude Code marketplace manifests,
|
|
22
|
+
so both tools can register the models repo as a Git marketplace and install the
|
|
23
|
+
bundled plugin directly.
|
|
24
24
|
|
|
25
25
|
Codex users can install the skill from the repository path once these files are
|
|
26
26
|
on `main`:
|
|
@@ -33,7 +33,15 @@ Codex plugin users can register the Git marketplace and then install the plugin:
|
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
35
|
codex plugin marketplace add undefinedsco/models --ref main
|
|
36
|
-
codex plugin add solid-modeling@undefineds
|
|
36
|
+
codex plugin add solid-modeling@undefineds
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Claude Code users can register the same Git marketplace and install the plugin
|
|
40
|
+
with the matching selector:
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
claude plugin marketplace add undefinedsco/models
|
|
44
|
+
claude plugin install solid-modeling@undefineds
|
|
37
45
|
```
|
|
38
46
|
|
|
39
47
|
Pi users can install the same skill through the package manifest:
|