mirror of
https://github.com/Jeuners/ECC.git
synced 2026-09-09 15:02:30 +02:00
fix(docs): resolve skill guide review issues
This commit is contained in:
parent
da74f85c10
commit
e815f0d05c
2 changed files with 14 additions and 5 deletions
|
|
@ -606,14 +606,23 @@ description: Quick reference for [API/Library].
|
|||
Test all code examples:
|
||||
|
||||
```bash
|
||||
# For TypeScript (run from inside the skill directory or specify the path)
|
||||
# From the repo root
|
||||
npx tsc --noEmit skills/your-skill-name/examples/*.ts
|
||||
|
||||
# For Python
|
||||
# Or from inside the skill directory
|
||||
npx tsc --noEmit examples/*.ts
|
||||
|
||||
# From the repo root
|
||||
python -m py_compile skills/your-skill-name/examples/*.py
|
||||
|
||||
# For Go
|
||||
# Or from inside the skill directory
|
||||
python -m py_compile examples/*.py
|
||||
|
||||
# From the repo root
|
||||
go build ./skills/your-skill-name/examples/...
|
||||
|
||||
# Or from inside the skill directory
|
||||
go build ./examples/...
|
||||
```
|
||||
|
||||
---
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue