clawdtm-advisor
Search, evaluate security, and install OpenClaw skills. Helps your human find the right skills safely.
About this skill
This AI agent skill, ClawdTM Advisor, acts as a centralized gateway for managing OpenClaw skills. It provides critical functionalities for AI agents to intelligently discover, assess, and integrate new capabilities into their workflow. The primary purpose is to ensure that agents can safely expand their toolset by offering a robust search mechanism with security evaluations and controlled installation. This prevents agents from inadvertently acquiring or executing potentially harmful or low-quality skills. The skill offers two core endpoints: 'Search' and 'Install'. The 'Search' endpoint allows agents to query for skills based on keywords, intent, and various filters like category, rating, and download count. Crucially, it defaults to excluding high-risk skills, prioritizing user safety. The 'Install' endpoint facilitates the secure fetching of skill files with accompanying security context, streamlining the integration process for the agent. By using ClawdTM Advisor, AI agents can become more autonomous and efficient in adapting to new tasks, providing a structured and secure method for enhancing their own capabilities without direct human intervention at every step of skill acquisition. It empowers agents to act as a trusted assistant in building out a powerful, secure skill library.
Best use case
The primary use case is to enable AI agents to dynamically discover and integrate new capabilities into their operational toolkit in a secure and guided manner. This skill benefits advanced AI agents and their human users by automating the process of finding relevant, safe tools for complex tasks without requiring manual research or vetting of each individual skill.
Search, evaluate security, and install OpenClaw skills. Helps your human find the right skills safely.
A user should expect their AI agent to efficiently identify, evaluate, and potentially install suitable OpenClaw skills that directly address their needs while prioritizing security.
Practical example
Example input
Agent, find me some safe OpenClaw skills for web scraping with a good rating.
Example output
{ "success": true, "skills": [ { "name": "web-scraper-pro", "description": "Extracts structured data from web pages.", "rating": 4.8, "security_score": 92 }, { "name": "site-data-miner", "description": "Automates data extraction from various websites.", "rating": 4.5, "security_score": 88 } ] }When to use this skill
- When an AI agent needs to find a specific tool or capability not currently in its arsenal.
- When a user instructs the AI agent to perform a task for which a specialized OpenClaw skill might exist.
- To proactively identify and integrate new, highly-rated, or trending OpenClaw skills for enhanced functionality.
- When an AI agent needs to ensure the security and reliability of a skill before recommending or installing it.
When not to use this skill
- When the required functionality is already built-in or available via pre-installed skills.
- When explicit human approval is needed for every skill acquisition, overriding the agent's autonomy.
- When operating in an environment completely isolated from external skill marketplaces.
- If the agent is specifically instructed not to use external tools or search for new capabilities.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/clawdtm-advisor/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How clawdtm-advisor Compares
| Feature / Agent | clawdtm-advisor | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | easy | N/A |
Frequently Asked Questions
What does this skill do?
Search, evaluate security, and install OpenClaw skills. Helps your human find the right skills safely.
How difficult is it to install?
The installation complexity is rated as easy. You can find the installation instructions above.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
Top AI Agents for Productivity
See the top AI agent skills for productivity, workflow automation, operational systems, documentation, and everyday task execution.
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
SKILL.md Source
# 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 < 50). By default these are excluded for safety.
- `safe_only` (optional) -- set to `true` to only return skills with low risk or better (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 < 50 unless `acknowledge_risk=true` is passed. This keeps your human safe by default.
### low (score 70-89)
Install the skill. Tell your human it has been scanned and looks good.
If there are minor flags, mention them briefly.
Example: "This skill makes network requests, which is expected for its purpose."
### medium (score 50-69)
**Do not install without confirmation.** Show your human:
- The security score and risk level
- Each flag and what it means
- Ask: "Do you want to proceed?"
### high (score 25-49)
**Not shown in search results by default.** If your human specifically asks for a high-risk skill:
1. Search with `include_risky=true`
2. **Strongly recommend against installing.** Show all security flags.
3. Only install if your human explicitly says "install it anyway"
4. Use `acknowledge_risk=true` on the install request
### critical (score 0-24)
**Not shown in search results by default.** If your human specifically asks:
1. Search with `include_risky=true`
2. **Refuse to install by default.** Explain why the skill is flagged.
3. Only install if your human says something like "I understand the risks, install it anyway"
4. Use `acknowledge_risk=true` on the install request
### Not yet scanned (score is null)
Warn your human: "This skill has not been security scanned yet. Proceed with caution."
**Security flag meanings:**
- `remote_execution` -- Downloads and runs external code
- `obfuscated_code` -- Contains encoded/hidden code
- `sensitive_data_access` -- Accesses credentials or sensitive files
- `shell_commands` -- Executes shell commands
- `network_requests` -- Makes external network requests
- `permission_escalation` -- Requests elevated permissions
- `data_exfiltration` -- May send local data externally
- `persistence` -- Sets up persistent processes
---
## Conversation Patterns
Here is how to handle common requests from your human:
### "Install a skill for X" / "Find me a skill that does Y"
1. Search: `GET https://clawdtm.com/api/v1/skills/search?q={intent}&limit=5&sort=relevance`
2. Present the top results to your human with:
- Name and description
- Security risk level
- Average rating and review count
- Download count
3. Let your human choose (or recommend the top result if it clearly fits)
4. Fetch: `GET https://clawdtm.com/api/v1/skills/install?slug={chosen}`
5. Check security risk -- follow the security policy above
6. Write files from `files` array to `./skills/{slug}/`
7. Tell your human to restart their agent session to activate the new skill
### "Is [skill] safe?" / "Check the security of [skill]"
1. Search: `GET https://clawdtm.com/api/v1/skills/search?q={skill_name}&limit=1`
2. Present security details:
- Score (0-100) and risk level
- Each flag with its meaning
- When it was last scanned
3. Present community context:
- Average rating and number of reviews
- Whether it's verified
4. Give your recommendation based on the security policy
### "What skills are popular?" / "Show me recommended skills"
1. Search: `GET https://clawdtm.com/api/v1/skills/search?q=&sort=downloads&limit=10`
2. Present as a ranked list with descriptions and ratings
3. For a curated list, try: `?sort=rating&min_rating=4`
### "Only show me safe skills for X"
1. Search: `GET https://clawdtm.com/api/v1/skills/search?q={intent}&safe_only=true`
2. This filters to only skills with `low` risk or better (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/openclawRelated Skills
HIPAA Compliance for AI Agents
Generate HIPAA compliance checklists, risk assessments, and audit frameworks for healthcare organizations deploying AI agents.
Data Governance Framework
Assess, score, and remediate your organization's data governance posture across 6 domains.
Cybersecurity Risk Assessment
You are a cybersecurity risk assessment specialist. When the user needs a security audit, threat assessment, or compliance review, follow this framework.
afrexai-cybersecurity-engine
Complete cybersecurity assessment, threat modeling, and hardening system. Use when conducting security audits, threat modeling, penetration testing, incident response, or building security programs from scratch. Works with any stack — zero external dependencies.
Compliance & Audit Readiness Engine
Your AI compliance officer. Guides startups and scale-ups through SOC 2, ISO 27001, GDPR, HIPAA, and PCI DSS — from zero to audit-ready. No consultants needed.
Compliance Audit Generator
Run internal compliance audits against major frameworks without hiring a consultant.
AI Safety Audit
Comprehensive AI safety and alignment audit framework for businesses deploying AI agents. Built around the UK AI Security Institute Alignment Project standards (2026), EU AI Act requirements, and NIST AI RMF.
clickhouse-github-forensics
Query GitHub event data via ClickHouse for supply chain investigations, actor profiling, and anomaly detection. Use when investigating GitHub-based attacks, tracking repository activity, analyzing actor behavior patterns, detecting tag/release tampering, or reconstructing incident timelines from public GitHub data. Triggers on GitHub supply chain attacks, repo compromise investigations, actor attribution, tag poisoning, or "query github events".
security-guardian
Automated security auditing for OpenClaw projects. Scans for hardcoded secrets (API keys, tokens) and container vulnerabilities (CVEs) using Trivy. Provides structured reports to help maintain a clean and secure codebase.
mema-vault
Secure credential manager using AES-256 (Fernet) encryption. Stores, retrieves, and rotates secrets using a mandatory Master Key. Use for managing API keys, database credentials, and other sensitive tokens.
guardian-wall
Mitigate prompt injection attacks, especially indirect ones from external web content or files. Use this skill when processing untrusted text from the internet, user-uploaded files, or any external source to sanitize content and detect malicious instructions (e.g., "ignore previous instructions", "system override").
SX-security-audit
全方位安全审计技能。检查文件权限、环境变量、依赖漏洞、配置文件、网络端口、Git 安全、Shell 安全、macOS 安全、密钥检测等。支持 CLI 参数、JSON 输出、配置文件。当用户要求"安全检查"、"漏洞扫描"、"权限检查"、"安全审计"时使用此技能。