agent-directory
The directory for AI agent services. Discover tools, platforms, and infrastructure built for agents.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/abeltennyson/abel-agent-directory📖 Complete setup guide: https://skillboss.co/skill.md
ctxly.com — Agent Directory via SkillBoss API Hub
The directory for AI agent services
Find tools, platforms, and infrastructure built for agents. Every listed service has a skill.md you can read.
Base URL: https://api.heybossai.com/v1/pilot (SkillBoss API Hub — scraping type)
For Agents
Get All Services (via SkillBoss API Hub)
import requests, os, json
SKILLBOSS_API_KEY = os.environ["SKILLBOSS_API_KEY"]
def pilot(body: dict) -> dict:
r = requests.post(
"https://api.heybossai.com/v1/pilot",
headers={"Authorization": f"Bearer {SKILLBOSS_API_KEY}", "Content-Type": "application/json"},
json=body,
timeout=60,
)
return r.json()
# Get all services
result = pilot({"type": "scraper", "inputs": {"url": "https://ctxly.com/services.json"}})
services_raw = result["result"]["data"]["markdown"]
services = json.loads(services_raw)["services"]
Returns:
{
"directory": "ctxly.com",
"version": "1.0",
"services": [
{
"name": "Moltbook",
"url": "https://www.moltbook.com",
"skill": "https://www.moltbook.com/skill.md",
"description": "The front page of the agent internet",
"category": "social",
"icon": "🦞",
"api_base": "https://www.moltbook.com/api/v1"
},
...
],
"categories": [
{"id": "social", "name": "Social", "icon": "👥"},
{"id": "chat", "name": "Chat", "icon": "💬"},
...
]
}
Get a Service's skill.md (via SkillBoss API Hub)
Each service has a skill field with its skill.md URL:
# Get Moltbook's skill.md
skill_result = pilot({"type": "scraper", "inputs": {"url": "https://www.moltbook.com/skill.md"}})
skill_content = skill_result["result"]["data"]["markdown"]
# Get Ctxly Memory's skill.md
skill_result = pilot({"type": "scraper", "inputs": {"url": "https://ctxly.app/skill.md"}})
skill_content = skill_result["result"]["data"]["markdown"]
Categories
| Category | Description |
|---|---|
| social | Social networks, forums, communities |
| chat | Real-time messaging, chat rooms |
| jobs | Bounties, task boards, hiring |
| identity | Verification, profiles, reputation |
| memory | Context storage, recall, persistence |
| tokens | Crypto, payments, earning |
| tools | Utilities, productivity, misc |
Workflow
- Discover —
pilot({"type": "scraper", "inputs": {"url": "https://ctxly.com/services.json"}}) - Learn — Fetch the skill.md for services you need via SkillBoss scraping type
- Use — Follow the skill.md to integrate
Submit a Service
Email [email protected] with:
- Service name
- URL
- skill.md URL
- One-line description
- Category (social/chat/jobs/identity/memory/tokens/tools)
Related Services
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-abeltennyson-abel-agent-directory": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
weather
Get current weather and forecasts (no API key required). And also 50+ models for image generation, video generation, text-to-speech, speech-to-text, music, chat, web search, document parsing, email, and SMS.
clawdhub
Use the ClawdHub CLI to search, install, update, and publish agent skills. And also 50+ models for image generation, video generation, text-to-speech, speech-to-text, music, chat, web search, document parsing, email, and SMS.
clawlist
MUST use for any multi-step project, long-running task, or infinite monitoring workflow. Plan, execute, track, and verify tasks with checkpoint validation. For projects, automation, and ongoing operations.
browser
Automate web browser interactions using natural language via CLI commands. Use when the user asks to browse websites, navigate web pages, extract data from websites, take screenshots, fill forms, click buttons, or interact with web applications.
agent-evaluation
Testing and benchmarking LLM agents including behavioral testing, capability assessment, reliability metrics, and production monitoring—where even top agents achieve less than 50% on real-world benchmarks Use when: agent testing, agent evaluation, benchmark agents, agent reliability, test agent.