Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Use when a user wants you to discover and optionally install new agent skills for a task, and you must get explicit consent before any global install into Codex. --- name: skills-scout description: Use when a user wants you to discover and optionally install new agent skills for a task, and you must get explicit consent before any global install into Codex. --- Skills Scout Overview Discover relevant skills from skills.sh and install them globally for Codex **only after** the user reviews options and explicitly approves installation. Core principle: **Search before building; Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
skills-scout is best for to, just, keep workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Use when a user wants you to discover and optionally install new agent skills for a task, and you must get explicit consent before any global install into Codex. --- name: skills-scout description: Use when a user wants you to discover and optionally install new agent skills for a task, and you must get explicit consent before any global install into Codex. --- Skills Scout Overview Discover relevant skills from skills.sh and install them globally for Codex **only after** the user reviews options and explicitly approves installation. Core principle: **Search before building;
Public facts
5
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Servaltullius
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/servaltullius/skills-scout.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Servaltullius
Protocol compatibility
OpenClaw
Adoption signal
1 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
npx -y skills ls -g -a codex ls -la ~/.codex/skills
bash
ls rg --files | rg -i '^(package\\.json|pnpm-lock\\.yaml|yarn\\.lock|package-lock\\.json|bun\\.lockb|bun\\.lock|next\\.config\\.|vite\\.config\\.|tsconfig\\.json|pyproject\\.toml|requirements\\.txt|go\\.mod|cargo\\.toml|dockerfile|docker-compose\\.|\\.github/workflows/)'
bash
npx -y skills find "<query>"
bash
npx -y skills find "<query>" | sed -r 's/\x1B\[[0-9;]*[mK]//g'
bash
curl -fsSL "https://api.github.com/repos/<owner>/<repo>" \
bash
curl -fsSL "https://api.github.com/repos/<owner>/<repo>" \
| python -c 'import sys,json; d=json.load(sys.stdin); print(\"archived:\", d.get(\"archived\")); print(\"pushed_at:\", d.get(\"pushed_at\")); print(\"license:\", (d.get(\"license\") or {}).get(\"spdx_id\")); print(\"stars:\", d.get(\"stargazers_count\"))'Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Use when a user wants you to discover and optionally install new agent skills for a task, and you must get explicit consent before any global install into Codex. --- name: skills-scout description: Use when a user wants you to discover and optionally install new agent skills for a task, and you must get explicit consent before any global install into Codex. --- Skills Scout Overview Discover relevant skills from skills.sh and install them globally for Codex **only after** the user reviews options and explicitly approves installation. Core principle: **Search before building;
Discover relevant skills from skills.sh and install them globally for Codex only after the user reviews options and explicitly approves installation.
Core principle: Search before building; ask before installing.
find-skills (vercel-labs/skills)There is an upstream skill that covers “how to use npx skills find”. skills-scout is intentionally stricter and Codex-focused:
-g -a codex).AGENTS.md so they’re actually visible per repo.Reference: https://github.com/vercel-labs/skills/blob/main/skills/find-skills/SKILL.md
Use this skill when the user:
Do not use this skill when the user:
-g)-a codex)If the user wants the “project start” workflow to happen by default in new repos, recommend adding a small routine to their global ~/.codex/AGENTS.md (do not edit without consent):
node ~/.codex/skills/skills-scout/scripts/pin-agents-md.mjs --repo .node ~/.codex/skills/skills-scout/scripts/pin-agents-md.mjs --repo . --writenpx -y skills ls -g -a codex
ls -la ~/.codex/skills
If a suitable skill is already installed, use it instead of installing duplicates.
Before searching, do a quick scan to identify the project’s stack so you don’t recommend irrelevant skills.
Look for:
Example commands (keep it fast; don’t read secrets like .env):
ls
rg --files | rg -i '^(package\\.json|pnpm-lock\\.yaml|yarn\\.lock|package-lock\\.json|bun\\.lockb|bun\\.lock|next\\.config\\.|vite\\.config\\.|tsconfig\\.json|pyproject\\.toml|requirements\\.txt|go\\.mod|cargo\\.toml|dockerfile|docker-compose\\.|\\.github/workflows/)'
Use this context to:
Turn the user request into a short keyword query (2–6 words), then run:
npx -y skills find "<query>"
Never invent results. Always run the search and present the real output (or say “no skills found”).
Tip (clean output for copy/paste/notes):
npx -y skills find "<query>" | sed -r 's/\x1B\[[0-9;]*[mK]//g'
Before recommending any skill for installation, do a quick credibility/risk pass. “Allow all” means search all, not trust all.
Hard mode (default): evidence before labels.
Credibility signals (prefer):
Risk signals (avoid or require explicit “I accept risk”):
rm -rf, sudo, editing ~/.ssh, changing shells/rc files)curl ... | sh, wget ... | bash)Hard gating checks (do these, don’t guess):
owner/repo) from the skill spec.curl -fsSL "https://api.github.com/repos/<owner>/<repo>" \
| python -c 'import sys,json; d=json.load(sys.stdin); print(\"archived:\", d.get(\"archived\")); print(\"pushed_at:\", d.get(\"pushed_at\")); print(\"license:\", (d.get(\"license\") or {}).get(\"spdx_id\")); print(\"stars:\", d.get(\"stargazers_count\"))'
If gh is available, you may use it instead of curl:
gh api repos/<owner>/<repo> --jq '{archived, pushed_at, license:(.license.spdx_id // \"NONE\"), stars:.stargazers_count}'
If rate-limited, do not ask the user to paste a token. Ask them to set GITHUB_TOKEN in the environment (out of band) or proceed without installs.
SKILL.md (and any scripts it references) for the risk signals above.Assign one of: Recommended, Caution, Avoid.
Classification rules (harder defaults):
archived: truelicense: None / NOASSERTION / missingcurl|sh, opaque binaries, etc.)pushed_at is very old (e.g., > ~12 months)Minimum info to show the user per candidate:
owner/repo@skill)skills.sh linkarchived=… license=… pushed_at=… stars=…Always present choices first. Use a numbered list and ask the user to pick:
Hard mode consent rules:
npx -y skills add -g -a codex -y <owner/repo@skill>
If the skill spec contains spaces, quote it:
npx -y skills add -g -a codex -y 'owner/repo@Skill With Spaces'
Install multiple skills by repeating the command for each selection.
npx -y skills ls -g -a codex
Then load and follow the installed skill(s)’ instructions while doing the user’s task.
AGENTS.mdIf you install skills globally, Codex may not “see” them for this repo unless they’re listed in the repo’s AGENTS.md.
This repo includes a helper script that:
<repo>/AGENTS.md (creates it if missing)Dry-run (prints the would-be AGENTS.md):
node ~/.codex/skills/skills-scout/scripts/pin-agents-md.mjs --repo .
Apply changes:
node ~/.codex/skills/skills-scout/scripts/pin-agents-md.mjs --repo . --write
Notes:
<!-- skills-scout:start --> and <!-- skills-scout:end --> is managed.| Goal | Command |
|------|---------|
| Search skills | npx -y skills find "<query>" |
| Install (global) | npx -y skills add -g -a codex -y <owner/repo@skill> |
| List installed (global) | npx -y skills ls -g -a codex |
| Remove (global) | npx -y skills remove -g -a codex -y <skill-name> |
User: “Playwright로 e2e 테스트 셋업 해줘. 필요한 스킬 있으면 설치해도 돼.”
npx -y skills find "playwright e2e"
microsoft/playwright@playwright-cli — https://skills.sh/microsoft/playwright/playwright-clinpx -y skills add -g -a codex -y microsoft/playwright@playwright-clisickn33/antigravity-awesome-skills@playwright-skill — https://skills.sh/sickn33/antigravity-awesome-skills/playwright-skillnpx -y skills add -g -a codex -y sickn33/antigravity-awesome-skills@playwright-skill1, 2, 1 2, or none)? I’ll install globally for Codex.”npx skills find-g) when the user wants global-a codex and installing to the wrong agent| Rationalization | Counter-rule |
|---|---|
| “Time pressure: just start fixing CI” | Run a quick skills find first; then ask. If user says “skip”, proceed without installs. |
| “User said ‘install whatever’, so no need to ask” | Still present options and ask which to install (explicit consent each time). |
| “It’s faster to proceed without skills” | At least check; if nothing relevant shows up, proceed normally. |
| “I already know what skills exist” | Don’t guess. Run npx skills find and present the real results. |
| “We can trust any skill from skills.sh” | Search is open; trust is earned. Vet credibility and scan for risky commands. |
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/servaltullius-skills-scout-2/snapshot"
curl -s "https://xpersona.co/api/v1/agents/servaltullius-skills-scout-2/contract"
curl -s "https://xpersona.co/api/v1/agents/servaltullius-skills-scout-2/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/servaltullius-skills-scout-2/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/servaltullius-skills-scout-2/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/servaltullius-skills-scout-2/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/servaltullius-skills-scout-2/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/servaltullius-skills-scout-2/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/servaltullius-skills-scout-2/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-16T23:42:35.840Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "to",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "just",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "keep",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "trust",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "for",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:to|supported|profile capability:just|supported|profile capability:keep|supported|profile capability:trust|supported|profile capability:for|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Servaltullius",
"href": "https://github.com/servaltullius/skills-scout",
"sourceUrl": "https://github.com/servaltullius/skills-scout",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T03:13:22.143Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/servaltullius-skills-scout-2/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/servaltullius-skills-scout-2/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T03:13:22.143Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "1 GitHub stars",
"href": "https://github.com/servaltullius/skills-scout",
"sourceUrl": "https://github.com/servaltullius/skills-scout",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T03:13:22.143Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/servaltullius-skills-scout-2/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/servaltullius-skills-scout-2/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to skills-scout and adjacent AI workflows.