smithery/neversight

pattern-deploy

Deploy patterns and test with CLI

Installation

$ npx skills add smithery/neversight --skill pattern-deploy

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/neversight · top by installs.

npx skills add smithery/neversight

Browse all from smithery/neversight

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,107 B
  • docs SUMMARY.md 55 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Deploy Phase

Use Skill("ct") for comprehensive ct CLI documentation.

Read First

  • docs/development/LOCALDEVSERVERS.md - Local dev setup
  • docs/common/workflows/development.md - Workflow commands

Find Identity Key

ls -la *.key 2>/dev/null || ls -la ~/.claude/*.key 2>/dev/null || find . -name "*.key" -maxdepth 2 2>/dev/null

Commands

Check syntax without deploying:

deno task ct check pattern.tsx --no-run

Deploy new pattern:

deno task ct charm new packages/patterns/[name]/main.tsx --identity PATH_TO_KEY

Inspect charm state:

deno task ct charm inspect

Update deployed pattern:

deno task ct charm setsrc packages/patterns/[name]/main.tsx

Test handler via CLI:

deno task ct charm call handlerName --charm CHARM_ID

Get Help

deno task ct --help
deno task ct charm --help

Done When

  • Charm deploys without errors
  • State inspects correctly
  • Handlers respond to CLI calls