Skip to Content
ReferenceCLI Referencemyco skills

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 deploy

Arguments: None

Flags:

FlagTypeDefaultDescription
--force, -fboolfalseForce re-deploy all skills (regenerate embeddings)

Behavior:

  1. Scans ./skills/ for subdirectories containing SKILL.md files
  2. Parses frontmatter (name, description, allowed-tools) and body (instructions)
  3. Computes content hashes for each skill
  4. Sends all skills to the deploy endpoint
  5. Reports results: created, updated, unchanged, deleted

Output example:

Skills: 1 created, 1 updated, 2 unchanged

SKILL.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

FieldRequiredDescription
nameYesUnique identifier (kebab-case)
descriptionYesShort description for semantic matching
allowed-toolsNoSpace-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.