pattern-deploy
Original:🇺🇸 English
Translated
Deploy patterns and test with CLI
1installs
Sourcecommontoolsinc/labs
Added on
NPX Install
npx skill4agent add commontoolsinc/labs pattern-deployTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Deploy Phase
Use for comprehensive ct CLI documentation.
Skill("ct")Read First
- - Local dev setup
docs/development/LOCAL_DEV_SERVERS.md - - Workflow commands
docs/common/workflows/development.md
Find Identity Key
bash
ls -la *.key 2>/dev/null || ls -la ~/.claude/*.key 2>/dev/null || find . -name "*.key" -maxdepth 2 2>/dev/nullCommands
Check syntax without deploying:
bash
deno task ct check pattern.tsx --no-runDeploy new pattern:
bash
deno task ct piece new packages/patterns/[name]/main.tsx --identity PATH_TO_KEYInspect piece state:
bash
deno task ct piece inspectUpdate deployed pattern:
bash
deno task ct piece setsrc packages/patterns/[name]/main.tsxTest handler via CLI:
bash
deno task ct piece call handlerName --piece PIECE_IDGet Help
bash
deno task ct --help
deno task ct piece --helpDone When
- Piece deploys without errors
- State inspects correctly
- Handlers respond to CLI calls