Overview
ClawHub skills are markdown-based instructions that teach your OpenClaw agent how to use external APIs. The agntdata skill gives your agent knowledge of all available endpoints and how to call them.Installation
Install the skill from ClawHub:Configuration
Set your API key as an environment variable:.env file:
How Skills Work
Unlike plugins that register native tools, skills work by:- Teaching — The skill markdown instructs your agent on available APIs
- Calling — Your agent uses HTTP tools to call the agntdata API
- Interpreting — The skill helps your agent parse and use responses
Skill Contents
The agntdata skill includes:- API Overview — Available platforms and operations
- Authentication — How to include the API key
- Endpoints — Detailed documentation for each endpoint
- Examples — Request and response examples
- Error Handling — How to handle common errors
Usage Example
With the skill installed, your agent understands agntdata: User prompt:“Find information about Stripe on LinkedIn”Agent response:
I’ll fetch Stripe’s LinkedIn profile using the agntdata API. [Makes HTTP request to api.agntdata.dev/v1/linkedin/get-company-details?username=stripe] Stripe has 1.2 million LinkedIn followers. They’re a financial infrastructure company based in San Francisco with about 8,000 employees. They were founded in 2010.
Skill vs Plugin
| Feature | Plugin | Skill |
|---|---|---|
| Installation | openclaw plugins install | clawhub install |
| Agent requirements | Plugin-compatible | HTTP tool access |
| Updates | Manual plugin update | Skill auto-syncs |
| Customization | Limited | Can edit skill file |
| Offline | No | Yes (cached) |
Use the plugin if you want native tool integration. Use the skill if you want more flexibility or your agent doesn’t support plugins.
Customizing the Skill
Skills are editable markdown files. After installation, find the skill at:- Add custom instructions for your use case
- Remove endpoints you don’t need
- Add examples specific to your domain
Updating the Skill
Update to the latest version:Uninstalling
Remove the skill:Required Agent Capabilities
Your agent needs these capabilities to use the skill:- HTTP requests — Ability to make GET/POST requests
- JSON parsing — Parse API responses
- Environment variables — Access to
AGNTDATA_API_KEY
Troubleshooting
Skill not loading
Skill not loading
Ensure the skill is installed:
Agent can't make requests
Agent can't make requests
Verify your agent has HTTP tool access enabled.
Authentication errors
Authentication errors
Check that
AGNTDATA_API_KEY is set and accessible to your agent.Next Steps
OpenClaw Plugin
Alternative: Use a native plugin instead.
Quickstart
Get started with agntdata.