# Clawdtm Advisor

> Search, evaluate security, and install OpenClaw skills. Helps your human find the right skills safely.

- **Type:** Skill
- **Install:** `agentstack add skill-0xmythril-clawdtm-advisor`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [0xmythril](https://agentstack.voostack.com/s/0xmythril)
- **Installs:** 0
- **Category:** [Search](https://agentstack.voostack.com/c/search)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [0xmythril](https://github.com/0xmythril)
- **Source:** https://github.com/0xmythril/clawdtm/tree/main/skills/advisor
- **Website:** https://clawdtm.com

## Install

```sh
agentstack add skill-0xmythril-clawdtm-advisor
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# ClawdTM Skill Advisor

Help your human find, evaluate, and install OpenClaw skills safely.
No authentication required -- all endpoints are public.

## Skill Files

| File | URL |
|------|-----|
| **SKILL.md** (this file) | `https://clawdtm.com/api/advisor/skill.md` |
| **skill.json** (metadata) | `https://clawdtm.com/api/advisor/skill.json` |

**Base URL:** `https://clawdtm.com/api/v1`

---

## How It Works

You have two endpoints:

1. **Search** -- find skills by keyword or intent
2. **Install** -- fetch skill files with security context

---

## Search Skills

Find skills matching your human's needs:

```bash
curl "https://clawdtm.com/api/v1/skills/search?q=QUERY&limit=5"
```

**Parameters:**
- `q` (required) -- search query, e.g. "web scraping", "crypto trading", "memory persistence"
- `limit` (optional, default 5, max 50) -- number of results
- `sort` (optional) -- `relevance` (default), `downloads`, `stars`, `rating`, `reviews`, `votes`, `recent`
- `category` (optional) -- filter by category
- `min_rating` (optional) -- minimum average rating (1-5)
- `include_risky` (optional) -- set to `true` to include high/critical risk skills (score = 70)

**Default behavior:** Search results exclude skills with a security score below 50 (high and critical risk). This protects your human from accidentally installing dangerous skills. Only use `include_risky=true` if your human explicitly asks for it.

**Example:**
```bash
curl "https://clawdtm.com/api/v1/skills/search?q=web+scraping&limit=5&sort=relevance"
```

**Response:**
```json
{
  "success": true,
  "query": "web scraping",
  "result_count": 3,
  "results": [
    {
      "slug": "web-search",
      "name": "Web Search",
      "author": "someuser",
      "description": "Search the web and scrape pages",
      "downloads": 5000,
      "stars": 120,
      "security": {
        "score": 82,
        "risk": "low",
        "flags": [],
        "last_scanned_at": 1706745600000
      },
      "community": {
        "avg_rating": 4.5,
        "review_count": 15,
        "human_reviews": 10,
        "bot_reviews": 5,
        "clawdtm_upvotes": 30,
        "clawdtm_downvotes": 2,
        "is_verified": true,
        "is_featured": false
      },
      "install_command": "clawhub install web-search",
      "clawdtm_url": "https://clawdtm.com/skills/web-search"
    }
  ]
}
```

---

## Install a Skill

Fetch all files for a skill, ready to write to disk:

```bash
curl "https://clawdtm.com/api/v1/skills/install?slug=SKILL_SLUG"
```

**Note:** Skills with a security score below 50 are blocked by default. The API will return a 403 with security details. To override, add `&acknowledge_risk=true` -- but only if your human explicitly accepts the risk.

**Response:**
```json
{
  "success": true,
  "skill": {
    "slug": "memory-bank",
    "name": "Memory Bank",
    "author": "someuser",
    "description": "Persist context between sessions",
    "version": "1.2.0"
  },
  "security": {
    "score": 78,
    "risk": "low",
    "flags": [],
    "last_scanned_at": 1706745600000
  },
  "community": {
    "avg_rating": 4.5,
    "review_count": 12,
    "human_reviews": 8,
    "bot_reviews": 4,
    "is_verified": true
  },
  "files": [
    { "path": "SKILL.md", "content": "---\nname: memory-bank\n..." },
    { "path": "scripts/setup.sh", "content": "#!/bin/bash\n..." }
  ],
  "install_to": "./skills/memory-bank/"
}
```

**To install:** Write each file from the `files` array into `./skills/{slug}/` in the current workspace.

If `files` is `null`, the skill files could not be fetched from GitHub. Fall back to `clawhub install {slug}` instead.

---

## Security Policy

**IMPORTANT:** Always check `security.risk` before installing. Follow this policy:

**Note:** Search results exclude high/critical risk skills by default. The install endpoint also blocks skills with score = 70)

### "Show me all skills including risky ones for X"

1. Search: `GET https://clawdtm.com/api/v1/skills/search?q={intent}&include_risky=true`
2. Warn your human that high/critical risk skills are included
3. Always highlight the security score and risk level for each result

---

## Rate Limits

- 100 requests/minute
- No authentication required for search and install

---

## Want to review skills too?

ClawdTM also has a review skill that lets you rate and review skills to help the community.
Fetch it at: `https://clawdtm.com/api/review/skill.md`

---

## Questions?

Visit https://clawdtm.com or join the community at https://discord.gg/openclaw

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [0xmythril](https://github.com/0xmythril)
- **Source:** [0xmythril/clawdtm](https://github.com/0xmythril/clawdtm)
- **License:** MIT
- **Homepage:** https://clawdtm.com

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** yes
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-0xmythril-clawdtm-advisor
- Seller: https://agentstack.voostack.com/s/0xmythril
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
