skills/spec-install/SKILL.md
Install this Claude Code plugin into another AI coding tool (opencode, Claude Code, Gemini CLI, Codex CLI, Windsurf, etc.). Use when the user asks to install, port, migrate, or sync this plugin to another tool, or asks "how do I use this in X". Triggered by phrases like "install atelier", "port to opencode", "sync to Claude", "how do I use this in cursor", or "add to Codex".
npx skillsauth add martinffx/claude-code-atelier spec-installInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Install atelier into your preferred AI coding tool.
| Tool | Install Method | Reference | |------|---------------|-----------| | Claude Code | Marketplace or local plugin | claude-code.md | | OpenCode | Manual command/agent/skill setup | opencode.md | | Gemini CLI | compound-plugin | See below | | Codex CLI | compound-plugin | See below | | Windsurf | compound-plugin | See below |
npx skills add martinffx/atelier
Install specific skills:
npx skills add martinffx/atelier --skill spec-plan
npx skills add martinffx/atelier --skill spec-research
claude --plugin-dir /path/to/atelier
See claude-code.md for detailed instructions.
~/.config/opencode/command/~/.config/opencode/agent/~/.config/opencode/skills/See opencode.md for step-by-step commands.
Use @every-env/compound-plugin to convert to other AI coding tools:
bunx @every-env/compound-plugin install martinffx/atelier --to <tool>
Replace <tool> with: codex, gemini, copilot, windsurf, kiro, qwen, openclaw, droid, pi
bunx @every-env/compound-plugin install martinffx/atelier --to all
To sync your personal Claude Code config to other tools:
# Sync to all detected tools
bunx @every-env/compound-plugin sync
# Sync to specific tool
bunx @every-env/compound-plugin sync --target opencode
| Component | Claude Code | OpenCode | Other Tools | |-----------|-------------|----------|--------------| | Skills | ✓ | ✓ symlink | ✓ | | Commands | ✓ | ✓ | ✓ | | Agents | ✓ | ✓ | varies | | MCP servers | ✓ | ✓ | ✓ | | Hooks | ✓ | manual | varies |
development
Security architecture and threat modeling knowledge. Auto-invokes when designing features that handle untrusted data, authentication, authorization, external integrations, file uploads, or sensitive data. Provides risk assessment frameworks, trust boundary analysis, and security design principles — not implementation code.
testing
Adversarial review of non-trivial decisions using fresh-context scrutiny. Use when correctness matters more than speed, when stakes are high (production, security-sensitive logic, irreversible operations), or before committing significant architectural or implementation choices.
development
Compact the current conversation into a handoff document for another agent to pick up.
testing
Socratic interrogation of plans against the project's domain model and documented decisions. Use when the user wants to stress-test a plan, clarify terminology, or validate assumptions against existing domain language. Updates CONTEXT.md and ADRs inline as decisions crystallise.