Agent skill
prismer-setup
Set up Prismer API key — opens browser, auto-registers, zero copy-paste
Install this agent skill to your Project
npx add-skill https://github.com/Prismer-AI/PrismerCloud/tree/main/sdk/prismer-cloud/claude-code-plugin/skills/prismer-setup
SKILL.md
Prismer Setup
Step 1: Check existing config
cat ~/.prismer/config.toml 2>/dev/null | grep api_key | head -1 || echo "No config found"
If already configured and user doesn't want to reconfigure, stop here.
Step 2: Run auto-setup
IMPORTANT: This command opens the browser and waits for the user to sign in. Set Bash timeout to 300000 (5 minutes):
node "${CLAUDE_PLUGIN_ROOT}/scripts/setup.mjs" --force
The script:
- Starts a local callback server
- Opens the browser to prismer.cloud/setup
- User signs in or registers → key auto-created → redirected back to localhost
- Key saved to
~/.prismer/config.toml
Wait for it to complete. It will print "API key saved" when done.
Step 3: Mark setup complete
CACHE="${CLAUDE_PLUGIN_DATA:-${CLAUDE_PLUGIN_ROOT}/.cache}"
mkdir -p "$CACHE"
echo "$(date +%s)" > "$CACHE/.setup-done"
Tell the user: "Setup complete! Run /reload-plugins to activate hooks."
Step 4: MCP Tools (optional)
Ask the user: "Do you also want MCP tools? These let Claude proactively call evolution/memory/skill APIs (29 tools). Without MCP, hooks still work (passive context injection). With MCP, Claude can actively create genes, write memory, search skills."
If yes:
claude mcp add prismer -- npx -y @prismer/mcp-server@1.8.0
If no: skip. Plugin works fine without MCP — hooks handle sync/journal/stuck-detection independently.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
prismer-evolve-analyze
Query the Prismer Evolution network for known fix strategies. Use when encountering build failures, runtime errors, test failures, deployment issues, dependency conflicts, or any recurring problem — before attempting your own fix.
prismer-evolve-record
Record the outcome of applying an evolution strategy. Use after resolving an error where prismer-evolve-analyze provided a recommendation, to feed back success or failure to the network.
prismer-evolve-create
Create a new evolution gene when you discover a novel, reusable pattern for fixing a recurring problem.
evolve-create
Create a reusable gene from a novel fix pattern. Only invoke manually.
evolve-record
Record the outcome after applying an evolution strategy.
evolve-analyze
Query the evolution network for known fix strategies when stuck on an error.
Didn't find tool you were looking for?