create-openmotoko-skill
v0.1.3
Published
Scaffold a new OpenMotoko skill project
Downloads
15
Maintainers
Readme
create-openmotoko-skill
Scaffold a new OpenMotoko skill project.
Usage
npx create-openmotoko-skill my-skillOr with a specific package manager:
pnpm create openmotoko-skill my-skillWhat It Does
The CLI walks you through creating a skill:
- Skill name and description
- Author
- Capabilities (filesystem, shell, network, environment variables)
- Tool definitions
Then generates a ready-to-develop project with:
manifest.jsonwith your tool definitions and capabilitiessrc/index.tswith a typed handler using@openmotoko/skill-sdktsconfig.jsonconfigured for ESMpackage.jsonwith build scripts
After Scaffolding
cd my-skill
pnpm install
pnpm build