File tree Expand file tree Collapse file tree
website/src/pages/en/ai-suite Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "ai-introduction" : " The Graph's AI" ,
33 "subgraph-mcp" : " Subgraph MCP" ,
4- "token-api-mcp" : " Token API MCP"
4+ "token-api-mcp" : " Token API MCP" ,
5+ "token-api-skills" : " Token API Skills"
56}
Original file line number Diff line number Diff line change @@ -4,4 +4,5 @@ export default {
44 'ai-introduction' : titles [ 'ai-introduction' ] ,
55 'subgraph-mcp' : titles [ 'subgraph-mcp' ] ,
66 'token-api-mcp' : titles [ 'token-api-mcp' ] ,
7+ 'token-api-skills' : titles [ 'token-api-skills' ] ,
78}
Original file line number Diff line number Diff line change 1+ export default {
2+ 'quick-setup' : '' ,
3+ }
Original file line number Diff line number Diff line change 1+ ---
2+ title : Quick Setup
3+ sidebarTitle : Quick Setup
4+ ---
5+
6+ ## Quick Setup
7+
8+ 1 . Create the skill directory and download the file:
9+
10+ ``` bash
11+ mkdir -p ~ /.claude/skills/token-api
12+ curl -o ~ /.claude/skills/token-api/SKILL.md https://token-api.service.stage.pinax.network/skills.md
13+ ```
14+
15+ 2 . Verify it works by typing ` /token-api ` in Claude Code.
16+
17+ That's it.
18+
19+ ## Where Skills Live
20+
21+ | Location | Path | Scope |
22+ | --- | --- | --- |
23+ | Personal | ` ~/.claude/skills/<name>/SKILL.md ` | All your projects |
24+ | Project | ` .claude/skills/<name>/SKILL.md ` | Current project only |
25+
26+ For project-scoped usage (committed to Git so teammates get it too), use ` .claude/skills/ ` in your repository.
27+
28+ ## How It Works
29+
30+ - Claude Code auto-discovers ` SKILL.md ` files in ` .claude/skills/ ` directories.
31+ - Skills are invoked with ` /skill-name ` (e.g., ` /token-api ` ).
32+ - Skills can also be triggered automatically by Claude when relevant to your request.
33+
34+ ## Keeping It Updated
35+
36+ If the remote file changes, re-run the ` curl ` command to fetch the latest version. You could also script this if needed.
You can’t perform that action at this time.
0 commit comments