← 返回 Skills 市场
abeltennyson

agent-directory

作者 AbelTennyson · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
107
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install agent-directory1
功能描述
The directory for AI agent services. Discover tools, platforms, and infrastructure built for agents.
使用说明 (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*
安全使用建议
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.
功能分析
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.
能力标签
cryptocan-make-purchases
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install agent-directory1
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /agent-directory1 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
Slug agent-directory1
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

agent-directory 是什么?

The directory for AI agent services. Discover tools, platforms, and infrastructure built for agents. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 107 次。

如何安装 agent-directory?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install agent-directory1」即可一键安装,无需额外配置。

agent-directory 是免费的吗?

是的,agent-directory 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

agent-directory 支持哪些平台?

agent-directory 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 agent-directory?

由 AbelTennyson(@abeltennyson)开发并维护,当前版本 v1.0.0。

💬 留言讨论