agentsclimarketplace

Canopy

Skill kostiantyn-matsebora/canopy/skills/canopy

Authors, validates, improves, scaffolds, and refactors Canopy skills using a structured control-flow notation (IF, ELSE_IF, ELSE, SWITCH, CASE, DEFAULT, FOR_EACH, BREAK, END, ASK, SHOW_PLAN, VERIFY_EXPECTED). Use when creating, modifying, debugging, or reviewing skills under `.claude/skills/` or `.github/skills/`, when the user mentions canopy, ops, control-flow notation, or skill scaffolding, or asks to convert a regular skill into a Canopy skill (and vice versa). Supports both Claude Code and GitHub Copilot.From its SKILL.md

Install
npx -y skills add kostiantyn-matsebora/canopy --skill canopy

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

6.7 KB, ~1.4k tokens by cl100k_base, as published. Nobody here has run it

Runtime required. This skill uses Canopy tree notation; canopy-runtime must be active.

Detect canopy-runtime — present if either:

  • canopy-runtime/SKILL.md exists under .claude/skills/, .github/skills/, or .agents/skills/, OR
  • a canopy-runtime marker block exists in CLAUDE.md or .github/copilot-instructions.md.

If neither is present — install canopy-runtime first (see the compatibility field for the source and install options), then re-invoke this skill.

Do not interpret the ## Tree without canopy-runtime active.

$ARGUMENTS


Agent

explore — execute FETCH_DISPATCH_CONTEXT. Output contract: assets/schemas/dispatch-schema.json.


Tree

  • canopy
    • EXPLORE >> context
    • IF << context.operation requires an explicit skill name (IMPROVE, MODIFY, VALIDATE, SCAFFOLD, CONVERT_TO_CANOPY, CONVERT_TO_REGULAR) AND context.target_skill is null
      • ASK << Which skill should I {context.operation}? Please name it explicitly.
    • IF << context.platform == "claude"
      • Read ../canopy-runtime/SKILL.md for the canopy execution engine overview
      • Read ../canopy-runtime/references/runtime-claude.md for Claude Code runtime rules
      • Read ../canopy-runtime/references/ops.md for the primitive-slice index (load specific slices on demand from individual ops)
      • Read ../canopy-runtime/references/skill-resources.md for category semantics, op lookup chain, tree format, manifest, subagent contract
    • ELSE
      • Read ../canopy-runtime/SKILL.md for the canopy execution engine overview
      • Read ../canopy-runtime/references/runtime-copilot.md for Copilot runtime rules
      • Read ../canopy-runtime/references/ops.md for the primitive-slice index (load specific slices on demand from individual ops)
      • Read ../canopy-runtime/references/skill-resources.md for category semantics, op lookup chain, tree format, manifest, subagent contract
    • SWITCH << context.operation
      • CASE << "CREATE"
        • Read references/ops/create.md and execute the CREATE procedure
      • CASE << "MODIFY"
        • Read references/ops/modify.md and execute the MODIFY procedure
      • CASE << "SCAFFOLD"
        • Read references/ops/scaffold.md and execute the SCAFFOLD procedure
      • CASE << "CONVERT_TO_CANOPY"
        • Read references/ops/convert-to-canopy.md and execute the CONVERT_TO_CANOPY procedure
      • CASE << "VALIDATE"
        • Read references/ops/validate.md and execute the VALIDATE procedure
      • CASE << "IMPROVE"
        • Read references/ops/improve.md and execute the IMPROVE procedure
      • CASE << "ADVISE"
        • Read references/ops/advise.md and execute the ADVISE procedure
      • CASE << "REFACTOR_SKILLS"
        • Read references/ops/refactor-skills.md and execute the REFACTOR_SKILLS procedure
      • CASE << "CONVERT_TO_REGULAR"
        • Read references/ops/convert-to-regular.md and execute the CONVERT_TO_REGULAR procedure
      • CASE << "ACTIVATE"
        • Read references/ops/activate.md and execute the ACTIVATE procedure
      • CASE << "MEASURE_CONTEXT"
        • Read references/ops/measure-context.md and execute the MEASURE_CONTEXT procedure
      • CASE << "HELP"
        • Read references/ops/help.md and execute the HELP procedure
      • DEFAULT
        • ASK << Could not determine the operation. What would you like to do? | Create a skill | Modify a skill | Scaffold a skill | Validate a skill | Improve a skill | Advise | Refactor skills | Convert to regular | Activate runtime | Measure context | Help

Rules

  • Never overwrite existing files without confirmation
  • For ops that target a specific skill (IMPROVE, MODIFY, VALIDATE, SCAFFOLD, CONVERT_TO_CANOPY, CONVERT_TO_REGULAR): if the skill name is not stated explicitly, ASK before proceeding — never infer from natural language descriptions or loop over multiple skills
  • Always show a plan before making any changes
  • Preserve the skill's existing tree syntax style (markdown list vs box-drawing) unless the user asks to switch
  • Preserve the skill's existing directory layout (legacy flat vs. standard scripts//references//assets/) during MODIFY — IMPROVE may migrate it on user opt-in
  • Do not change a skill's logic or intent during CONVERT_TO_CANOPY, MODIFY, or VALIDATE
  • SKILL.md must contain only orchestration — no inline JSON, YAML, tables, scripts, or templates
  • Skill files must be exactly SKILL.md (uppercase) — case-sensitive filesystems require this
  • Skills with ## Tree must have a compatibility field declaring canopy-runtime requirement and a safety preamble guard block at the top of the body
  • Frontmatter root contains only spec-allowed fields (name, description, license, compatibility, metadata, allowed-tools); argument-hint and user-invocable go inside metadata
  • Framework primitives (IF, ELSE_IF, ELSE, SWITCH, CASE, DEFAULT, FOR_EACH, PARALLEL, BREAK, END, ASK, SHOW_PLAN, EXPLORE, VERIFY_EXPECTED) are never defined in skill or project ops — they live in canopy-runtime's primitive slices (indexed by ../canopy-runtime/references/ops.md; per-slice files under ../canopy-runtime/references/ops/)
  • Before creating any op or resource file, consult the slice index ../canopy-runtime/references/ops.md (loaded up-front) and any existing project-wide ops the consumer has defined — reference shared content, never duplicate it
  • After any change to a skill or agent file, verify every Read \<category-path>/<file>`` reference and every op procedure path still resolves to an existing file
  • The platform runtime spec (../canopy-runtime/references/runtime-claude.md or ../canopy-runtime/references/runtime-copilot.md) is loaded up-front by this skill's tree and is in context for every op procedure

Response: operation | platform | target_skill | outcome

What ships with it: 38 files

116.8 KB alongside SKILL.md

Gives 0 of the 12 instructions most context ai engineering skills give in ~1.4k tokens

Counted across 1,328 of the 2,349 authors here whose files we hold, read 2026-09-06

  • Dispatch a fresh subagent for each taskin 76 of 1328, across 59 files
  • Perform spec compliance review before code quality reviewin 44 of 1328, across 34 files
  • Dispatch a final code reviewer after all tasksin 38 of 1328, across 26 files
  • Answer subagent questions before allowing implementationin 36 of 1328, across 26 files
  • Use the least powerful model capable of the taskin 33 of 1328, across 26 files
  • Create a TodoWrite list for all tasksin 32 of 1328, across 22 files
  • Perform a task review after each implementationin 31 of 1328, across 24 files
  • Extract all tasks and context from the planin 29 of 1328, across 20 files
  • Provide full task text to subagentsin 28 of 1328, across 20 files
  • Use git worktrees for isolated workspacesin 25 of 1328, across 20 files
  • Specify the model explicitly when dispatching a subagentin 23 of 1328, across 18 files
  • Execute all tasks from the plan without stoppingin 21 of 1328, across 16 files

Said here and by no other author read

  • Install canopy-runtime if not detected
  • Execute FETCH_DISPATCH_CONTEXT to explore
  • Ask for explicit skill name if missing
  • Show a plan before making changes
  • Read runtime rules based on platform
  • Consult slice index before creating files

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.