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
Convert web pages to clean markdown using OpenClaw's browser. Automatically detects page type (static/SPA) and uses optimal extraction method. --- name: dom-to-markdown description: Convert web pages to clean markdown using OpenClaw's browser. Automatically detects page type (static/SPA) and uses optimal extraction method. user-invocable: true metadata: { "openclaw": { "requires": { "config": ["browser.enabled"] } } } --- DOM โ Markdown Skill Convert any web page to clean, structured markdown using OpenClaw's integrated browser. Automatically detects page t Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.
Freshness
Last checked 2/24/2026
Best For
Contract is available with explicit auth and schema references.
Not Ideal For
dom-to-markdown is not ideal for teams that need stronger public trust telemetry, lower setup complexity, or more explicit contract coverage before production rollout.
Evidence Sources Checked
editorial-content, capability-contract, runtime-metrics, public facts pack
Convert web pages to clean markdown using OpenClaw's browser. Automatically detects page type (static/SPA) and uses optimal extraction method. --- name: dom-to-markdown description: Convert web pages to clean markdown using OpenClaw's browser. Automatically detects page type (static/SPA) and uses optimal extraction method. user-invocable: true metadata: { "openclaw": { "requires": { "config": ["browser.enabled"] } } } --- DOM โ Markdown Skill Convert any web page to clean, structured markdown using OpenClaw's integrated browser. Automatically detects page t
Public facts
6
Change events
1
Artifacts
0
Freshness
Feb 24, 2026
Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 24, 2026
Vendor
Velcroxlabs
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.
Setup snapshot
git clone https://github.com/velcroxlabs/dom-to-markdown.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
Velcroxlabs
Protocol compatibility
OpenClaw
Auth modes
api_key
Machine-readable schemas
OpenAPI or schema references published
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
javascript
// Inside an OpenClaw agent session
const result = await convertUrlToMarkdown('https://www.diariolibre.com');
if (result.success) {
console.log(`โ
Converted: ${result.markdown.length} characters`);
console.log(`๐ Saved to: ${result.metadata.savedPath}`);
}text
~/.openclaw/workspace/skills/dom-to-markdown/
bash
cd /home/jarvis/.openclaw/workspace/skills/dom-to-markdown npm install
text
/skill dom-to-markdown convert https://docs.openclaw.ai/
javascript
const { convertUrlToMarkdown } = require('./src/converter');
const result = await convertUrlToMarkdown('https://example.com', {
debug: true,
saveToFile: true,
timeout: 60
});javascript
const result = await convertUrlToMarkdown('https://amazon.es', {
rawHtml: true, // Saves raw HTML file and disables cleaning
saveToFile: true,
outputDir: './exports/dom-markdown',
debug: true
});
// Result includes:
// - homepage.md (markdown)
// - homepage.raw.html (complete HTML)
// - metadata.json (with rawHtmlPath and rawHtmlLength)Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Convert web pages to clean markdown using OpenClaw's browser. Automatically detects page type (static/SPA) and uses optimal extraction method. --- name: dom-to-markdown description: Convert web pages to clean markdown using OpenClaw's browser. Automatically detects page type (static/SPA) and uses optimal extraction method. user-invocable: true metadata: { "openclaw": { "requires": { "config": ["browser.enabled"] } } } --- DOM โ Markdown Skill Convert any web page to clean, structured markdown using OpenClaw's integrated browser. Automatically detects page t
Convert any web page to clean, structured markdown using OpenClaw's integrated browser. Automatically detects page type and selects the optimal extraction method.
// Inside an OpenClaw agent session
const result = await convertUrlToMarkdown('https://www.diariolibre.com');
if (result.success) {
console.log(`โ
Converted: ${result.markdown.length} characters`);
console.log(`๐ Saved to: ${result.metadata.savedPath}`);
}
This skill is automatically available when placed in your workspace skills directory:
~/.openclaw/workspace/skills/dom-to-markdown/
For reliable JavaScript rendering of SPAs (React, Vue, Angular, Next.js, etc.), Playwright is required. Install it in the skill directory:
cd /home/jarvis/.openclaw/workspace/skills/dom-to-markdown
npm install
This installs Playwright and Chromium (~150 MB). The skill will automatically detect if Playwright is available and use it as the primary method for SPAs.
If Playwright is not installed, the skill will fall back to OpenClaw browser (less reliable) or web_fetch for static pages.
If user-invocable: true (default), you can invoke this skill directly via slash command in supported channels:
/skill dom-to-markdown convert https://docs.openclaw.ai/
The skill will automatically detect the page type and choose the optimal extraction method.
const { convertUrlToMarkdown } = require('./src/converter');
const result = await convertUrlToMarkdown('https://example.com', {
debug: true,
saveToFile: true,
timeout: 60
});
When you need the complete HTML (not cleaned) for comparison or archiving:
const result = await convertUrlToMarkdown('https://amazon.es', {
rawHtml: true, // Saves raw HTML file and disables cleaning
saveToFile: true,
outputDir: './exports/dom-markdown',
debug: true
});
// Result includes:
// - homepage.md (markdown)
// - homepage.raw.html (complete HTML)
// - metadata.json (with rawHtmlPath and rawHtmlLength)
const { batchConvert } = require('./src/batch-processor');
const results = await batchConvert([
'https://react.dev',
'https://vuejs.org',
'https://www.diariolibre.com'
], {
parallel: 2,
outputDir: './exports/markdown'
});
// The skill automatically uses OpenClaw's browser tool when needed
// For SPAs like Diario Libre, it will:
// 1. Launch browser headless
// 2. Navigate and wait for JavaScript
// 3. Extract rendered HTML
// 4. Convert to markdown
{
// Extraction methods (priority order: playwright > web_fetch > openclaw-browser)
usePlaywright: true, // Use Playwright for SPAs (default if installed)
useWebFetch: true, // Use web_fetch for static pages
useOpenClawBrowser: false, // Use OpenClaw browser only as fallback (not recommended due to known issues)
useFirecrawl: false, // Optional: use Firecrawl service
// Playwright settings (when usePlaywright = true)
playwrightBrowser: 'chromium', // 'chromium' (default), 'firefox', 'webkit'
playwrightHeadless: true,
playwrightWaitUntil: 'networkidle',
playwrightTimeout: 30000,
playwrightRemoveElements: [
'script', 'style', 'noscript', 'iframe', 'svg',
'nav', 'footer', 'header', 'aside'
],
playwrightWaitTime: 2000, // Additional wait for JavaScript (ms)
// OpenClaw browser settings (when useOpenClawBrowser = true)
headless: true, // Browser headless mode
waitTime: 5000, // ms to wait for JavaScript
profile: 'openclaw', // Browser profile to use
// Conversion settings
rawHtml: false, // If true, saves raw HTML file and disables cleaning
removeElements: ['nav', 'footer', 'aside', 'script', 'style'],
preserveStructure: true,
// Output
saveToFile: true,
outputDir: './exports/dom-markdown',
// Cache (improves performance for repeated URLs)
useCache: true,
cacheTTL: 24 * 60 * 60 * 1000, // 24 hours default
// Debug
debug: false
}
src/detector.js - Page type detection
src/converter.js - Main conversion logic
src/playwright-wrapper.js - Playwright integration (primary for SPAs)
src/browser-wrapper.js - OpenClaw browser integration (fallback)
browser tool internallysrc/storage.js - Structured output
URL โ Detector โ {static, spa, mixed} โ Method Selector โ
โ โ โ
web_fetch Playwright (SPAs) Hybrid Mode
โ โ โ
HTML Extraction JavaScript Rendering Combined Approach
โ โ โ
Clean HTML Rendered HTML Best Available
โ โ โ
Turndown โ Markdown โ Storage โ Result
react, react-dom, __NEXT_DATA__vue, __VUE__, vue-routerng-, angular_next, __NEXT_DATA___nuxt, __NUXT__svelte| Page Type | Method | Avg Time | Success Rate | |-----------|--------|----------|--------------| | Static | web_fetch | 1-2s | 98% | | SPA | Playwright (Chromium) | 3-8s | 99% | | Mixed | Hybrid (Playwright + web_fetch) | 2-5s | 97% |
Run the standard test suite:
cd /home/jarvis/.openclaw/workspace/skills/dom-to-markdown
npm test
Or test manually:
const { testSuite } = require('./tests/integration');
await testSuite();
For comprehensive Playwright testing (requires network access and installed Playwright):
npm run test:playwright
This runs smoke tests with real websites to verify Playwright extraction works correctly for both static pages and SPAs.
Run both test suites:
npm run test:all
exports/dom-markdown/
โโโ 2026-02-21/
โ โโโ diariolibre.com/
โ โ โโโ homepage.md
โ โ โโโ metadata.json
โ โโโ react.dev/
โ โโโ learn.md
โ โโโ metadata.json
โโโ test-results/
โโโ test-2026-02-21.json
The skill can be used as a tool within any OpenClaw agent session:
// The browser tool is automatically available
await browser({ action: 'navigate', profile: 'openclaw', targetUrl: url });
// This skill builds on top of that capability
const markdown = await convertUrlToMarkdown(url);
Potential plugin integration points:
browser_snapshot hook with format: "markdown"web_fetch enhancement for JavaScript renderingThe skill includes comprehensive error handling:
Check extraction stats:
const { getStats } = require('./src/stats');
const stats = getStats();
console.log(stats);
// {
// totalRequests: 42,
// byType: { static: 20, spa: 15, mixed: 7 },
// byMethod: { web_fetch: 20, browser_headless: 22 },
// successRate: 95.2
// }
web-research - Enhanced web searching and content extractiondocument-converter - PDF, DOCX, and other formats to markdowncontent-summarizer - Summarize extracted contentMIT - Use freely within OpenClaw.
For issues:
debug: true outputexports/error-logs/Skill Status: โ
Production Ready
OpenClaw Version: 2026.2.13+
Browser Requirement: OpenClaw browser enabled
Dependencies: turndown, html-to-text (optional)
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
ready
Auth
api_key
Streaming
No
Data region
global
Protocol support
Requires: openclew, lang:typescript
Forbidden: none
Guardrails
Operational confidence: medium
curl -s "https://xpersona.co/api/v1/agents/velcroxlabs-dom-to-markdown/snapshot"
curl -s "https://xpersona.co/api/v1/agents/velcroxlabs-dom-to-markdown/contract"
curl -s "https://xpersona.co/api/v1/agents/velcroxlabs-dom-to-markdown/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
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 6d 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": "ready",
"authModes": [
"api_key"
],
"requires": [
"openclew",
"lang:typescript"
],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": "https://github.com/velcroxlabs/dom-to-markdown#input",
"outputSchemaRef": "https://github.com/velcroxlabs/dom-to-markdown#output",
"dataRegion": "global",
"contractUpdatedAt": "2026-02-24T19:41:17.885Z",
"sourceUpdatedAt": "2026-02-24T19:41:17.885Z",
"freshnessSeconds": 4429967
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/velcroxlabs-dom-to-markdown/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/velcroxlabs-dom-to-markdown/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/velcroxlabs-dom-to-markdown/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/velcroxlabs-dom-to-markdown/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/velcroxlabs-dom-to-markdown/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/velcroxlabs-dom-to-markdown/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-17T02:14:04.936Z"
}
},
"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": "invoke",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "be",
"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:invoke|supported|profile capability:be|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": "Velcroxlabs",
"href": "https://github.com/velcroxlabs/dom-to-markdown",
"sourceUrl": "https://github.com/velcroxlabs/dom-to-markdown",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:14.176Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/velcroxlabs-dom-to-markdown/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/velcroxlabs-dom-to-markdown/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-24T19:41:17.885Z",
"isPublic": true
},
{
"factKey": "auth_modes",
"category": "compatibility",
"label": "Auth modes",
"value": "api_key",
"href": "https://xpersona.co/api/v1/agents/velcroxlabs-dom-to-markdown/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/velcroxlabs-dom-to-markdown/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:41:17.885Z",
"isPublic": true
},
{
"factKey": "schema_refs",
"category": "artifact",
"label": "Machine-readable schemas",
"value": "OpenAPI or schema references published",
"href": "https://github.com/velcroxlabs/dom-to-markdown#input",
"sourceUrl": "https://xpersona.co/api/v1/agents/velcroxlabs-dom-to-markdown/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:41:17.885Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/velcroxlabs-dom-to-markdown/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/velcroxlabs-dom-to-markdown/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 dom-to-markdown and adjacent AI workflows.