mirror of
https://github.com/Heretek-AI/openclaw.git
synced 2026-07-19 08:05:34 -04:00
a9ae1a6778
Matrix Protocol: - docker-compose.matrix.yml: Dendrite homeserver + PostgreSQL + Nginx TLS - src/channels/plugins/matrix-channel.ts: OpenClaw plugin implementation - docs/matrix-triad-setup.md: Setup guide with auth scheme (@tm1-4:triad.local) MCP Server Integration: - docs/mcp-triad-integration.md: SearXNG, Playwright, GitHub MCP configs - docs/mcp-curiosity-mapping.md: Gap-to-capability mapping Node Sync Architecture: - src/services/node-sync-service.ts: WebSocket peer sync + presence detection - src/services/node-sync-service.test.ts: Unit tests - docs/node-sync-architecture.md: Architecture docs Triad Resilience: - scripts/triad-corruption-check.mjs: SQLite + log + config + git integrity - docs/triad-resilience.md: Recovery procedures - .secure/deployment-logs/README.md: Schema v2 - skills/triad-heartbeat/SKILL.md: Corruption check integration NPM Publish Workflow: - scripts/npm-publish.mjs: version, changelog, validate, publish, rollback - .github/workflows/npm-publish.yml: GitHub Actions with provenance - docs/npm-publish-guide.md: Complete documentation All deliverables tested in Docker before production.
67 lines
1.7 KiB
TypeScript
Executable File
67 lines
1.7 KiB
TypeScript
Executable File
import { createWebFetchTool } from "../src/agents/tools/web-tools.js";
|
|
|
|
const DEFAULT_URLS = [
|
|
"https://example.com/",
|
|
"https://news.ycombinator.com/",
|
|
"https://www.reddit.com/r/javascript/",
|
|
"https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/User-Agent",
|
|
"https://httpbin.org/html",
|
|
];
|
|
|
|
const urls = process.argv.slice(2);
|
|
const targets = urls.length > 0 ? urls : DEFAULT_URLS;
|
|
|
|
async function runFetch(url: string, readability: boolean) {
|
|
if (!readability) {
|
|
throw new Error("Basic extraction removed. Set readability=true or enable Firecrawl.");
|
|
}
|
|
const tool = createWebFetchTool({
|
|
config: {
|
|
tools: {
|
|
web: { fetch: { readability, cacheTtlMinutes: 0, firecrawl: { enabled: false } } },
|
|
},
|
|
},
|
|
sandboxed: false,
|
|
});
|
|
if (!tool) {
|
|
throw new Error("web_fetch tool is disabled");
|
|
}
|
|
const result = await tool.execute("test", { url, extractMode: "markdown" });
|
|
return result.details as {
|
|
text?: string;
|
|
title?: string;
|
|
extractor?: string;
|
|
length?: number;
|
|
truncated?: boolean;
|
|
};
|
|
}
|
|
|
|
function truncate(value: string, max = 160): string {
|
|
if (!value) {
|
|
return "";
|
|
}
|
|
return value.length > max ? `${value.slice(0, max)}…` : value;
|
|
}
|
|
|
|
async function run() {
|
|
for (const url of targets) {
|
|
console.log(`\n=== ${url}`);
|
|
const readable = await runFetch(url, true);
|
|
|
|
console.log(
|
|
`readability: ${readable.extractor ?? "unknown"} len=${readable.length ?? 0} title=${truncate(
|
|
readable.title ?? "",
|
|
80,
|
|
)}`,
|
|
);
|
|
if (readable.text) {
|
|
console.log(`readability sample: ${truncate(readable.text)}`);
|
|
}
|
|
}
|
|
}
|
|
|
|
run().catch((error) => {
|
|
console.error(error);
|
|
process.exit(1);
|
|
});
|