Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions content/docs/ai/agent-skills.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ icon: Brain
WDK provides agent skills: structured instruction sets that teach AI agents how to create wallets, send transactions, swap tokens, bridge assets, and interact with DeFi protocols across 20+ blockchains. All operations are self-custodial. Keys stay on your machine, with no third-party custody dependency.

<Callout type="info">
**Skill vs MCP Toolkit**: Use an **agent skill** when your agent platform works with file-based instructions (e.g., OpenClaw, Cursor). Use the [MCP Toolkit](/ai/mcp-toolkit/) when your agent supports the Model Context Protocol natively (e.g., Claude, Cursor). Use both for maximum coverage.
**Skill vs MCP Toolkit vs WDK CLI**: Use an **agent skill** when your agent platform works with file-based instructions (e.g., OpenClaw, Cursor). Use the [MCP Toolkit](/ai/mcp-toolkit/) when you are building a custom MCP server in code. Use [WDK CLI](/cli/) when you want a ready-made local wallet CLI, daemon, and MCP server.
</Callout>

## What Are Agent Skills?
Expand Down Expand Up @@ -66,7 +66,8 @@ WDK's agent skills use a self-custodial model where your agent controls its own
| **OpenClaw** | Install from [ClawHub](/ai/openclaw/) or clone to workspace. See [OpenClaw Integration](/ai/openclaw/) |
| **Claude** | Upload `SKILL.md` as project knowledge, or paste into conversation |
| **Cursor / Windsurf** | Clone to `.cursor/skills/wdk` or `.windsurf/skills/wdk` |
| **Any MCP-compatible agent** | Use the [MCP Toolkit](/ai/mcp-toolkit/) for structured tool calling |
| **Any MCP-compatible agent** | Use [WDK CLI](/cli/guides/use-mcp-server/) for a ready-made local daemon, or the [MCP Toolkit](/ai/mcp-toolkit/) for a custom MCP server |
| **Any local CLI-capable agent** | Use [WDK CLI](/cli/) with `--json` output |
| **Any other agent** | Copy `SKILL.md` into system prompt or conversation context |

## Community Projects
Expand All @@ -84,6 +85,7 @@ Community-built projects using WDK's agentic capabilities:
- [WDK SKILL.md on GitHub](https://github.com/tetherto/wdk-docs/blob/main/skills/wdk/SKILL.md) - The full skill file agents consume
- [WDK Skill on ClawHub](https://clawhub.ai/HumanRupert/tether-wallet-development-kit) - Install the skill
- [AgentSkills Specification](https://agentskills.io/specification) - The skill format standard
- [WDK CLI](/cli/) - Local CLI, daemon, and MCP server for AI agents
- [WDK MCP Toolkit](https://github.com/tetherto/wdk-mcp-toolkit) - MCP server for structured tool calling
- [WDK Core](https://github.com/tetherto/wdk-core) - The core SDK

Expand Down
3 changes: 3 additions & 0 deletions content/docs/ai/mcp-toolkit/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ All 35 built-in MCP tools and the WdkMcpServer class
<Card title="LangChain Integration" href="/ai/mcp-toolkit/langchain">
Use WDK tools in LangChain agents via the serve CLI
</Card>
<Card title="WDK CLI" href="/cli">
Use a ready-made local wallet CLI, daemon, and MCP server when you do not need to build a custom MCP server
</Card>
</Cards>

***
Expand Down
5 changes: 5 additions & 0 deletions content/docs/ai/openclaw.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ Tether and the WDK Team do not endorse or assume responsibility for its code, se
The WDK community skill follows the [AgentSkills specification](https://agentskills.io/specification), so it works with any compatible agent platform. This page covers the OpenClaw-specific setup.
</Callout>

<Callout type="info">
If you want OpenClaw to call a ready-made local wallet daemon through MCP instead of loading a file-based skill, see [WDK CLI MCP setup](/cli/guides/use-mcp-server/).
</Callout>

## Install the WDK Community Skill

Install from [ClawHub](https://clawhub.ai/HumanRupert/tether-wallet-development-kit):
Expand Down Expand Up @@ -113,6 +117,7 @@ OpenClaw makes use of artificial intelligence and machine learning technologies.
## Next Steps

- [Agent Skills](/ai/agent-skills/) - Full capabilities, how skills work, and a comparison with other agentic wallet solutions
- [WDK CLI MCP](/cli/guides/use-mcp-server/) - Configure OpenClaw with the bundled WDK CLI MCP server
- [MCP Toolkit](/ai/mcp-toolkit/) - Programmatic wallet access for MCP-compatible agents
- [OpenClaw Skills Documentation](https://docs.openclaw.ai/tools/skills) - How OpenClaw discovers and loads skills

Expand Down
Loading
Loading