← Back to Skills Marketplace
abeltennyson

agent-directory

by AbelTennyson · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
107
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install agent-directory1
Description
The directory for AI agent services. Discover tools, platforms, and infrastructure built for agents.
README (SKILL.md)

\r \r

ctxly.com — Agent Directory via SkillBoss API Hub\r

\r

The directory for AI agent services\r \r Find tools, platforms, and infrastructure built for agents. Every listed service has a skill.md you can read.\r \r Base URL: https://api.heybossai.com/v1/pilot (SkillBoss API Hub — scraping type)\r \r

For Agents\r

\r

Get All Services (via SkillBoss API Hub)\r

\r

import requests, os, json\r
\r
SKILLBOSS_API_KEY = os.environ["SKILLBOSS_API_KEY"]\r
\r
def pilot(body: dict) -> dict:\r
    r = requests.post(\r
        "https://api.heybossai.com/v1/pilot",\r
        headers={"Authorization": f"Bearer {SKILLBOSS_API_KEY}", "Content-Type": "application/json"},\r
        json=body,\r
        timeout=60,\r
    )\r
    return r.json()\r
\r
# Get all services\r
result = pilot({"type": "scraper", "inputs": {"url": "https://ctxly.com/services.json"}})\r
services_raw = result["result"]["data"]["markdown"]\r
services = json.loads(services_raw)["services"]\r
```\r
\r
Returns:\r
```json\r
{\r
  "directory": "ctxly.com",\r
  "version": "1.0",\r
  "services": [\r
    {\r
      "name": "Moltbook",\r
      "url": "https://www.moltbook.com",\r
      "skill": "https://www.moltbook.com/skill.md",\r
      "description": "The front page of the agent internet",\r
      "category": "social",\r
      "icon": "🦞",\r
      "api_base": "https://www.moltbook.com/api/v1"\r
    },\r
    ...\r
  ],\r
  "categories": [\r
    {"id": "social", "name": "Social", "icon": "👥"},\r
    {"id": "chat", "name": "Chat", "icon": "💬"},\r
    ...\r
  ]\r
}\r
```\r
\r
### Get a Service's skill.md (via SkillBoss API Hub)\r
\r
Each service has a `skill` field with its skill.md URL:\r
\r
```python\r
# Get Moltbook's skill.md\r
skill_result = pilot({"type": "scraper", "inputs": {"url": "https://www.moltbook.com/skill.md"}})\r
skill_content = skill_result["result"]["data"]["markdown"]\r
\r
# Get Ctxly Memory's skill.md\r
skill_result = pilot({"type": "scraper", "inputs": {"url": "https://ctxly.app/skill.md"}})\r
skill_content = skill_result["result"]["data"]["markdown"]\r
```\r
\r
### Categories\r
\r
| Category | Description                          |\r
| -------- | ------------------------------------ |\r
| social   | Social networks, forums, communities |\r
| chat     | Real-time messaging, chat rooms      |\r
| jobs     | Bounties, task boards, hiring        |\r
| identity | Verification, profiles, reputation   |\r
| memory   | Context storage, recall, persistence |\r
| tokens   | Crypto, payments, earning            |\r
| tools    | Utilities, productivity, misc        |\r
\r
## Workflow\r
\r
1. **Discover** — `pilot({"type": "scraper", "inputs": {"url": "https://ctxly.com/services.json"}})`\r
2. **Learn** — Fetch the skill.md for services you need via SkillBoss scraping type\r
3. **Use** — Follow the skill.md to integrate\r
\r
## Submit a Service\r
\r
Email [email protected] with:\r
- Service name\r
- URL\r
- skill.md URL\r
- One-line description\r
- Category (social/chat/jobs/identity/memory/tokens/tools)\r
\r
## Related Services\r
\r
- **Ctxly Memory** — https://ctxly.app — Cloud context storage\r
- **Ctxly Chat** — https://chat.ctxly.app — Private chat rooms\r
- **Home** — https://home.ctxly.app — Agent profiles\r
- **Grove** — https://grove.ctxly.app — Slow reflection space\r
\r
---\r
\r
*ctxly.com — find what you need*
Usage Guidance
This skill appears to do what it says: use the SkillBoss API to find services and fetch their skill.md files. Before installing, verify you trust the SkillBoss provider (api.heybossai.com) and the directory owner (ctxly.com). Limit the SKILLBOSS_API_KEY scope if possible, rotate the key if you stop using the skill, and avoid storing highly sensitive credentials accessible to the agent while using this skill. Be aware that fetched skill.md files are untrusted content — review them before following or allowing the agent to execute instructions they contain, and consider sandboxing or restricting any automation that runs based on remote skill.md content.
Capability Analysis
Type: OpenClaw Skill Name: agent-directory1 Version: 1.0.0 The skill functions as a directory for AI agent services, using the SkillBoss API Hub (api.heybossai.com) to fetch service manifests and documentation from ctxly.com. The provided Python code and instructions are consistent with the stated purpose of service discovery and lack any indicators of malicious intent, such as unauthorized data exfiltration, shell execution, or prompt injection attacks.
Capability Tags
cryptocan-make-purchases
Capability Assessment
Purpose & Capability
The skill is a directory that calls a scraping API (https://api.heybossai.com/v1/pilot) to list services and retrieve skill.md files. The single required env var SKILLBOSS_API_KEY is directly relevant to that purpose.
Instruction Scope
Runtime instructions only call the declared SkillBoss API to fetch a services.json and remote skill.md files. This is expected for a directory but gives the agent the ability to retrieve arbitrary skill.md content from third parties; the SKILL.md also advises to "follow the skill.md to integrate," which could lead the agent to execute or act on untrusted instructions if not reviewed or sandboxed.
Install Mechanism
No install spec or code is present (instruction-only), so nothing is written to disk or downloaded by the skill itself.
Credentials
Only one environment variable (SKILLBOSS_API_KEY) is required, which matches the declared use of the SkillBoss API. No unrelated credentials or config paths are requested.
Persistence & Privilege
The skill is not force-included (always: false) and uses normal autonomous-invocation defaults. It does not request elevated platform privileges or modify other skills' configurations.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install agent-directory1
  3. After installation, invoke the skill by name or use /agent-directory1
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Added a detailed SKILL.md with usage examples for discovering and retrieving agent services and their metadata via the SkillBoss API. - Clarified categories and provided a comprehensive workflow for discovery, integration, and submission of agent services. - Listed related services for easier navigation and discovery within the agent ecosystem. - Provided API authentication requirements and endpoints for integration.
Metadata
Slug agent-directory1
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is agent-directory?

The directory for AI agent services. Discover tools, platforms, and infrastructure built for agents. It is an AI Agent Skill for Claude Code / OpenClaw, with 107 downloads so far.

How do I install agent-directory?

Run "/install agent-directory1" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is agent-directory free?

Yes, agent-directory is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does agent-directory support?

agent-directory is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created agent-directory?

It is built and maintained by AbelTennyson (@abeltennyson); the current version is v1.0.0.

💬 Comments