skillset 0.1.0-beta.2 → 0.1.0-beta.3
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 +1 -1
- package/dist/cli.js +12430 -0
- package/dist/create.js +12435 -0
- package/docs/layout.md +1 -1
- package/package.json +8 -7
- package/bin/create-skillset.js +0 -15
- package/bin/skillset.js +0 -15
- package/src/authoring.ts +0 -255
- package/src/build.ts +0 -537
- package/src/cli.ts +0 -541
- package/src/config.ts +0 -555
- package/src/hooks.ts +0 -128
- package/src/import.ts +0 -509
- package/src/lint.ts +0 -319
- package/src/path.ts +0 -40
- package/src/preprocess.ts +0 -166
- package/src/render.ts +0 -2028
- package/src/resolver.ts +0 -914
- package/src/resources.ts +0 -483
- package/src/setup.ts +0 -211
- package/src/skill-policy.ts +0 -547
- package/src/structured-output.ts +0 -147
- package/src/types.ts +0 -187
- package/src/versioning.ts +0 -78
- package/src/yaml.ts +0 -79
package/README.md
CHANGED
|
@@ -75,7 +75,7 @@ skillset create
|
|
|
75
75
|
skillset create team-loadout --name team-loadout --targets claude,codex --yes
|
|
76
76
|
```
|
|
77
77
|
|
|
78
|
-
For a user-global source checkout, `skillset create --global` defaults to `~/.skillset/src`. This is still Skillset-owned source, not a live Claude or Codex runtime directory. The corresponding preview/build area is documented as `~/.skillset/build`, but setup does not create it or write to `~/.claude`, `~/.codex`, or `.agents`. The beta package can be run through package managers with commands such as `npx skillset@beta create` or `bunx skillset@beta create
|
|
78
|
+
For a user-global source checkout, `skillset create --global` defaults to `~/.skillset/src`. This is still Skillset-owned source, not a live Claude or Codex runtime directory. The corresponding preview/build area is documented as `~/.skillset/build`, but setup does not create it or write to `~/.claude`, `~/.codex`, or `.agents`. The beta package requires Bun and ships Bun-built JavaScript bins for `skillset` and `create-skillset`; it can be run through package managers with commands such as `npx skillset@beta create` or `bunx skillset@beta create`. Setup still routes through the same plan-first `create` flow.
|
|
79
79
|
|
|
80
80
|
Setup commands create only source files: `.skillset/config.yaml`, `.skillset/src/.gitkeep`, and optional `.skillset/instructions/project.md`, `.skillset/src/agents/`, `.skillset/src/claude/`, and `.skillset/src/codex/rules/` placeholders when requested. The generated config uses `compile.targets`; target adapter config still belongs in `claude` and `codex` blocks or root `defaults.<target>.<surface>`.
|
|
81
81
|
|