Skip to content

Commit 448e443

Browse files
committed
added FAQ (Quick Setup) for skills.md
1 parent 8ae38d3 commit 448e443

4 files changed

Lines changed: 42 additions & 1 deletion

File tree

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
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
}

website/src/pages/en/ai-suite/_meta.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export default {
2+
'quick-setup': '',
3+
}
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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.

0 commit comments

Comments
 (0)