@shd101wyy/yo 0.1.17 → 0.1.19
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 +10 -1
- package/out/cjs/index.cjs +355 -355
- package/out/cjs/yo-cli.cjs +547 -545
- package/out/cjs/yo-lsp.cjs +358 -358
- package/out/esm/index.mjs +379 -379
- package/out/types/src/codegen/functions/context.d.ts +2 -0
- 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
|
@@ -277,6 +277,7 @@ export main;
|
|
|
277
277
|
| [http_server_demo_yo](https://github.com/shd101wyy/http_server_demo_yo) | Simple HTTP/1.1 server — async I/O, algebraic effects, TCP networking, request parsing & routing |
|
|
278
278
|
| [markdown_it_yo](https://github.com/shd101wyy/markdown_it_yo) | Direct port of the popular JavaScript markdown parser [markdown-it](https://github.com/markdown-it/markdown-it) to Yo, showcasing string processing and performance |
|
|
279
279
|
| [markdown_yo](https://github.com/shd101wyy/markdown_yo) \| [Online Demo](https://shd101wyy.github.io/markdown_yo/) | High-performance markdown-to-HTML converter — 5-7× faster than markdown-it (native), 2-6× faster (WASM at ≥1 MB). [Try it in the browser](https://shd101wyy.github.io/markdown_yo/) |
|
|
280
|
+
| [yo_http_benchmark](https://github.com/shd101wyy/yo_http_benchmark) | HTTP throughput benchmark — Yo vs Bun vs Deno vs Node.js vs Go, using [wrk](https://github.com/wg/wrk) load testing |
|
|
280
281
|
|
|
281
282
|
## Contributing
|
|
282
283
|
|
|
@@ -378,7 +379,15 @@ This repository ships a set of **agent skill files** that teach AI agents how to
|
|
|
378
379
|
|
|
379
380
|
### Using in your own project
|
|
380
381
|
|
|
381
|
-
|
|
382
|
+
The easiest way is with the `yo` CLI:
|
|
383
|
+
|
|
384
|
+
```bash
|
|
385
|
+
yo skills install
|
|
386
|
+
```
|
|
387
|
+
|
|
388
|
+
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.
|
|
389
|
+
|
|
390
|
+
You can also copy them manually:
|
|
382
391
|
|
|
383
392
|
```bash
|
|
384
393
|
cp -r .github/skills /path/to/your-yo-project/.github/
|