From headkey
This skill should be used when the user asks to "set up headkey", "configure headkey", "connect to headkey", mentions "HEADKEY_API_KEY", "HEADKEY_AGENT_ID", or discusses headkey configuration, authentication setup, or per-project agent configuration.
How this skill is triggered — by the user, by Claude, or both
Slash command
/headkey:setupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill helps users configure their connection to the Headkey Memory API.
This skill helps users configure their connection to the Headkey Memory API.
There are two types of API keys:
HEADKEY_AGENT_ID (UUID or friendly slug).Account keys are preferred because you manage one key globally and just set the agent ID per project.
Set the API key globally in ~/.claude/settings.json:
{
"env": {
"HEADKEY_API_KEY": "cibfe_your_account_key_here"
}
}
Set the agent ID per-project in .claude/settings.json in the project root:
{
"env": {
"HEADKEY_AGENT_ID": "my-project-agent"
}
}
The agent ID can be the agent UUID or the friendly slug from the agent configuration.
Set the API key per-project or globally, same as above but only HEADKEY_API_KEY is needed — no HEADKEY_AGENT_ID required.
Per-project — add to .claude/settings.json in the project root:
{
"env": {
"HEADKEY_API_KEY": "cibfe_your_agent_key_here"
}
}
Global — add to ~/.claude/settings.json:
{
"env": {
"HEADKEY_API_KEY": "cibfe_your_agent_key_here"
}
}
Make sure .claude/settings.json is in .gitignore to avoid committing secrets. Project-level settings override global settings.
Users can run /headkey:setup for a guided walkthrough that handles key type selection, key configuration, agent ID setup, and .gitignore checks.
After configuration, restart Claude Code and verify the Headkey MCP tools are available. If the connection fails, check:
HEADKEY_AGENT_ID is set correctly for the current projectnpx claudepluginhub savantly-net/headkey-mcp-plugin --plugin headkeyGuides first-time Honcho setup: checks API key status, instructs environment variable setup (bash/powershell), validates connection, creates config for persistent memory in Claude Code.
Builds AI agents and automates Claude Code using Agent SDK and headless CLI mode. Covers Python SDK, MCP servers, hooks, sessions, and programmatic queries.
Diagnoses and resolves Memsy MCP tool failures (auth errors, network issues, missing tools) and guides through setup steps.