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
anydocs - Generic Documentation Indexing & Search anydocs - Generic Documentation Indexing & Search A powerful, reusable skill for indexing and searching **ANY** documentation site. What It Does anydocs solves a real problem: accessing documentation from code or CLI. Instead of opening a browser every time, you can: - **Index** any documentation site (Discord, OpenClaw, internal docs, etc.) - **Search** instantly from the command line or Python API - **Cache** pages Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.
Freshness
Last checked 4/14/2026
Best For
anydocs-skill is best for multiple 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
anydocs - Generic Documentation Indexing & Search anydocs - Generic Documentation Indexing & Search A powerful, reusable skill for indexing and searching **ANY** documentation site. What It Does anydocs solves a real problem: accessing documentation from code or CLI. Instead of opening a browser every time, you can: - **Index** any documentation site (Discord, OpenClaw, internal docs, etc.) - **Search** instantly from the command line or Python API - **Cache** pages
Public facts
4
Change events
1
Artifacts
0
Freshness
Apr 14, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 14, 2026
Vendor
Pektech
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. Last updated 4/14/2026.
Setup snapshot
git clone https://github.com/Pektech/anydocs-skill.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
Pektech
Protocol compatibility
OpenClaw
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
cd /path/to/skills/anydocs pip install -r requirements.txt chmod +x anydocs.py
bash
pip install playwright==1.40.0 playwright install # Downloads Chromium
bash
python anydocs.py config vuejs \ https://vuejs.org \ https://vuejs.org/sitemap.xml
bash
python anydocs.py index vuejs
bash
python anydocs.py search "composition api" --profile vuejs python anydocs.py search "reactivity" --profile vuejs --limit 5
bash
python anydocs.py fetch "guide/introduction" --profile vuejs
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
anydocs - Generic Documentation Indexing & Search anydocs - Generic Documentation Indexing & Search A powerful, reusable skill for indexing and searching **ANY** documentation site. What It Does anydocs solves a real problem: accessing documentation from code or CLI. Instead of opening a browser every time, you can: - **Index** any documentation site (Discord, OpenClaw, internal docs, etc.) - **Search** instantly from the command line or Python API - **Cache** pages
A powerful, reusable skill for indexing and searching ANY documentation site.
anydocs solves a real problem: accessing documentation from code or CLI. Instead of opening a browser every time, you can:
Use anydocs when you need to:
~/.anydocs/config.jsoncd /path/to/skills/anydocs
pip install -r requirements.txt
chmod +x anydocs.py
For sites like Discord that use client-side rendering, install Playwright:
pip install playwright==1.40.0
playwright install # Downloads Chromium
If Playwright is unavailable, anydocs gracefully falls back to standard HTTP fetching.
python anydocs.py config vuejs \
https://vuejs.org \
https://vuejs.org/sitemap.xml
python anydocs.py index vuejs
This discovers all pages via sitemap, scrapes content, and builds a searchable index.
python anydocs.py search "composition api" --profile vuejs
python anydocs.py search "reactivity" --profile vuejs --limit 5
python anydocs.py fetch "guide/introduction" --profile vuejs
# Add or update a profile
anydocs config <profile> <base_url> <sitemap_url> [--search-method hybrid] [--ttl-days 7]
# List configured profiles
anydocs list-profiles
# Build index for a profile
anydocs index <profile>
# Force re-index (skip cache)
anydocs index <profile> --force
# Basic keyword search
anydocs search "query" --profile discord
# Limit results
anydocs search "query" --profile discord --limit 5
# Regex search
anydocs search "^API" --profile discord --regex
# Fetch a specific page (URL or path)
anydocs fetch "https://discord.com/developers/docs/resources/webhook"
anydocs fetch "resources/webhook" --profile discord
# Show cache statistics
anydocs cache status
# Clear all cache
anydocs cache clear
# Clear specific profile's cache
anydocs cache clear --profile discord
For use in agents and scripts:
from lib.config import ConfigManager
from lib.scraper import DiscoveryEngine
from lib.indexer import SearchIndex
# Load configuration
config_mgr = ConfigManager()
config = config_mgr.get_profile("discord")
# Scrape documentation
scraper = DiscoveryEngine(config["base_url"], config["sitemap_url"])
pages = scraper.fetch_all()
# Build search index
index = SearchIndex()
index.build(pages)
# Search
results = index.search("webhooks", limit=10)
for result in results:
print(f"{result['title']} ({result['relevance_score']})")
print(f" {result['url']}")
Configuration is stored in ~/.anydocs/config.json:
{
"discord": {
"name": "discord",
"base_url": "https://discord.com/developers/docs",
"sitemap_url": "https://discord.com/developers/docs/sitemap.xml",
"search_method": "hybrid",
"cache_ttl_days": 7
},
"openclaw": {
"name": "openclaw",
"base_url": "https://docs.openclaw.ai",
"sitemap_url": "https://docs.openclaw.ai/sitemap.xml",
"search_method": "hybrid",
"cache_ttl_days": 7
}
}
anydocs search "webhooks"anydocs search "how to set up webhooks"anydocs search "^(GET|POST)" --regex~/.anydocs/cache/--force flag or clear cacheRun anydocs index <profile> first to build the index.
Check the sitemap URL. Falls back to crawling from base_url if unavailable.
This is normal for large sites. Rate limiting prevents overwhelming servers.
Run anydocs cache clear or set --ttl-days to a smaller value.
anydocs config vuejs \
https://vuejs.org \
https://vuejs.org/sitemap.xml
anydocs index vuejs
anydocs search "composition api"
anydocs config nextjs \
https://nextjs.org \
https://nextjs.org/sitemap.xml
anydocs index nextjs
anydocs search "app router" --profile nextjs
anydocs config internal \
https://docs.company.local \
https://docs.company.local/sitemap.xml
anydocs index internal --force
anydocs search "deployment" --profile internal
To add new documentation sites, run:
anydocs config <profile> <base_url> <sitemap_url>
To extend search functionality, modify lib/indexer.py.
Part of the OpenClaw system.
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/pektech-anydocs-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/pektech-anydocs-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/pektech-anydocs-skill/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/pektech-anydocs-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/pektech-anydocs-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/pektech-anydocs-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/pektech-anydocs-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/pektech-anydocs-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/pektech-anydocs-skill/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:28:05.182Z"
}
},
"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": "multiple",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:multiple|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": "Pektech",
"href": "https://github.com/Pektech/anydocs-skill",
"sourceUrl": "https://github.com/Pektech/anydocs-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-14T22:23:37.985Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/pektech-anydocs-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/pektech-anydocs-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-14T22:23:37.985Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/pektech-anydocs-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/pektech-anydocs-skill/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 anydocs-skill and adjacent AI workflows.