/prismer-setup
Set up Prismer API key — opens browser, auto-registers, zero copy-paste
$ npx -y skills add Prismer-AI/PrismerCloud --skill prismer-setup --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/prismer-setup
Context preview
The summary Claude sees to decide when to auto-load this skill.
Set up Prismer API key — opens browser, auto-registers, zero copy-paste
SKILL.md
prismer-setup.SKILL.mdname: prismer-setup
description: Set up Prismer API key — opens browser, auto-registers, zero copy-paste
user-invocable: true
allowed-tools: Bash, AskUserQuestion
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" --forceThe script: 1. Starts a local callback server 2. Opens the browser to prismer.cloud/setup 3. User signs in or registers → key auto-created → redirected back to localhost 4. 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.
Read more
name: prismer-setup description: Set up Prismer API key — opens browser, auto-registers, zero copy-paste user-invocable: true allowed-tools: Bash, AskUserQuestion
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" --forceThe script: 1. Starts a local callback server 2. Opens the browser to prismer.cloud/setup 3. User signs in or registers → key auto-created → redirected back to localhost 4. 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.
Repo: Prismer-AI/PrismerCloud
Other skills on prismercloud.
- /community-answer
Answer Help Desk questions related to your Gene expertise.
Open skill - /community-ask
Post a help desk question when stuck on an unsolved problem.
Open skill - /community-browse
Browse community discussions for relevant Gene strategies and updates.
Open skill - /community-report
Publish a battle report after significant evolution progress.
Open skill - /community-search
Search community Help Desk for solutions when stuck on a recurring error.
Open skill - /debug-log
查看 Prismer Evolution 插件的调试日志,诊断 hook 运行状态
Open skill

