docs.context.dev/skill.md.
Once installed, your agent will be able to:
- Look up brand information using name, domain, email, stock ticker, or ISIN
- Scrape websites and get markdown outputs
- Classify industries and transactions
- Integrate Context.dev APIs and SDKs into your application
Prerequisites
-
A Context.dev API key. Sign up at context.dev/signup, copy the key from the dashboard (prefix
ctxt_secret_), and export it in the shell your agent inherits so the skill can read it:For a single project, drop it in.env.localand have the agent load that file before each run. - A supported agent. Claude Code, Codex, Cursor, Windsurf, OpenCode, Gemini CLI, GitHub Copilot, and 50+ others read skill files.
-
Node.js to run the
npx skillsinstaller (or install manually withcurl).
Installation
Method 1: Skills CLI (one command, every agent)
The skills CLI detects your agent and drops the skill in the directory that agent reads. One command covers every supported agent:-g to install into the current project instead of globally.
Method 2: Manual install with curl
Pick your client below and run the matching curl. Use the project commands for an in-repo skill, or the global commands for a cross-project skill that lives in your home directory.
- Claude Code
- Codex
- Cursor
- Windsurf
- OpenCode
- Any agent (.agents)
Verify it loaded
Open a fresh agent session and ask:“Using Context.dev, what’s the fastest, lightest-payload way to get just a brand’s logos and colors for a domain?”A correctly loaded skill answers with
GET /brand/retrieve-simplified and notes it costs the same 10 credits as the full brand retrieve. If the agent invents an endpoint, the skill didn’t load. Confirm the file exists at the path your agent reads and that nothing else is shadowing it.
Next steps
Agent Quickstart
Pair the skill with a copyable agent prompt.
MCP server
Add live API execution alongside the skill.
Get brand data
The core endpoint the skill teaches.
Introduction
What Context.dev returns and how responses are shaped.