@shd101wyy/yo 0.1.17 → 0.1.18
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/.github/skills/yo-async-effects/SKILL.md +48 -0
- package/.github/skills/yo-async-effects/async-effects-recipes.md +262 -0
- package/.github/skills/yo-core-patterns/SKILL.md +48 -0
- package/.github/skills/yo-core-patterns/core-patterns-cheatsheet.md +318 -0
- package/.github/skills/yo-project-workflow/SKILL.md +47 -0
- package/.github/skills/yo-project-workflow/workflow-cheatsheet.md +255 -0
- package/.github/skills/yo-syntax/SKILL.md +57 -0
- package/.github/skills/yo-syntax/syntax-cheatsheet.md +398 -0
- package/.github/skills/yo-wasm-integration/SKILL.md +46 -0
- package/.github/skills/yo-wasm-integration/wasm-integration-cheatsheet.md +250 -0
- package/README.md +9 -1
- package/out/cjs/yo-cli.cjs +453 -451
- package/out/cjs/yo-lsp.cjs +1 -1
- package/out/types/src/skills-command.d.ts +4 -0
- package/out/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -2
- package/scripts/build-site.ts +23 -14
package/README.md
CHANGED
|
@@ -378,7 +378,15 @@ This repository ships a set of **agent skill files** that teach AI agents how to
|
|
|
378
378
|
|
|
379
379
|
### Using in your own project
|
|
380
380
|
|
|
381
|
-
|
|
381
|
+
The easiest way is with the `yo` CLI:
|
|
382
|
+
|
|
383
|
+
```bash
|
|
384
|
+
yo skills install
|
|
385
|
+
```
|
|
386
|
+
|
|
387
|
+
This copies all skill files into every agent config directory found in the current project (`.github`, `.agents`, `.claude`, `.opencode`, `.openai`, `.cursor`). If none exist, `.agents/skills/` is created automatically.
|
|
388
|
+
|
|
389
|
+
You can also copy them manually:
|
|
382
390
|
|
|
383
391
|
```bash
|
|
384
392
|
cp -r .github/skills /path/to/your-yo-project/.github/
|