The Brickken Skill is an AI-agent skill built on the open Agent Skills format (SKILL.md). It works with any agent that supports the standard — including Claude Code, OpenAI Codex, Gemini CLI, Cursor, and GitHub Copilot — and helps agents choose and use the right Brickken surface:
Dapp API when you have a Brickken API key.
Agentic API when you do not have an API key and want to use private-key based x402 flows.
MCP when your agent can connect to the hosted Brickken MCP server.
CLI when local signing and terminal execution are the best fit.
Use the skill when an agent needs to inspect Brickken endpoints, prepare request bodies, understand expected responses, or decide whether a task should go through the API, CLI, or MCP.
Use this path when you want the Brickken Skill without installing the CLI globally. Download the archive and unzip it into your agent’s skills directory:
Agent
Personal skills directory
Claude Code
~/.claude/skills
OpenAI Codex
~/.codex/skills
Gemini CLI
~/.gemini/skills
Cursor
~/.cursor/skills
GitHub Copilot / VS Code
~/.copilot/skills
Other agents
See your agent’s documentation for its skills directory
export SKILLS_DIR=~/.claude/skills # set to your agent's skills directorymkdir -p "$SKILLS_DIR"curl -L https://raw.githubusercontent.com/fbrickken/docs/main/downloads/brickken-skill.zip -o /tmp/brickken-skill.ziprm -rf "$SKILLS_DIR/brickken"unzip -o /tmp/brickken-skill.zip -d "$SKILLS_DIR"
Verify the installation:
test -f "$SKILLS_DIR/brickken/SKILL.md" && echo "Brickken skill installed"
Most agents also discover project-level skills from a directory inside the repository (for example .claude/skills, .cursor/skills, .gemini/skills, or .github/skills). Unzip the archive there instead to share the skill with your team through version control.Start a new agent session after installing the skill so the agent reloads its available skills.
The private key is used by your local agent runtime, CLI, or trusted MCP session for x402 payment signing and blockchain transaction signing. Never send a private key to the Brickken API.
Do not paste production API keys or private keys into shared chats, tickets, terminals, or logs. Use your agent client’s secret store or local environment variables.