myco skills
Skill deployment commands.
myco skills deploy
Deploy skills from the ./skills/ directory. Each subdirectory should contain a SKILL.md file with YAML frontmatter.
Must be run from an app directory with a wrangler.json(c) file.
myco skills deployArguments: None
Flags:
| Flag | Type | Default | Description |
|---|---|---|---|
--force, -f | bool | false | Force re-deploy all skills (regenerate embeddings) |
Behavior:
- Scans
./skills/for subdirectories containingSKILL.mdfiles - Parses frontmatter (
name,description,allowed-tools) and body (instructions) - Computes content hashes for each skill
- Sends all skills to the deploy endpoint
- Reports results: created, updated, unchanged, deleted
Output example:
Skills: 1 created, 1 updated, 2 unchangedSKILL.md format:
---
name: email-outreach
description: Draft and send personalized outreach emails
allowed-tools: send-gmail-draft search-contacts
---
# Email Outreach
Instructions for the agent...Frontmatter fields
| Field | Required | Description |
|---|---|---|
name | Yes | Unique identifier (kebab-case) |
description | Yes | Short description for semantic matching |
allowed-tools | No | Space-separated tool names |
Skills are also deployed automatically by myco app deploy. Use myco skills deploy when you want to update skills without redeploying the Worker.