# Moth for Claude Code Requirement: Node.js with npm/npx available. Install from a local path while testing: ```bash claude plugin install ./integrations/claude-code --scope local ``` MCP command: ```bash npx -y @stfade/moth moth-mcp ``` The plugin manifest includes inline `mcpServers` config, and `.mcp.json` is kept as a compatibility fallback: ```json { "mcpServers": { "moth": { "command": "npx", "args": ["-y", "@stfade/moth", "moth-mcp"] } } } ``` Marketplace submission notes: - Validate locally before submission, for example with Claude Code plugin validation. - Submit the wrapper directory or a public repository path when ready. - The wrapper contains metadata, MCP config, and skills only; it does not duplicate Moth core code. Verified memory lifecycle: ```txt Use analyze_error before fixing. Call remember_fix_result only after a fix was attempted, a verification command was run, and the result is clearly passed or failed. Never call remember_fix_result for suggestions only. ```