Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
OpenClaw agent: the-new-fuse The New Fuse A multi-agent AI orchestration platform that enables AI agents to communicate, collaborate, and execute workflows across browsers, IDEs, desktop apps, and cloud services. **Live:** $1 Quick Start Prerequisites - Node.js 20+ - pnpm 10.19.0+ (npm install -g pnpm) - Docker (for PostgreSQL + Redis) Setup Access Points | Service | URL | | -------------- | --------------------- | | Frontend | http://localhost: Published capability contract available. No trust telemetry is available yet. 4 GitHub stars reported by the source. Last updated 2/24/2026.
Freshness
Last checked 2/22/2026
Best For
Contract is available with explicit auth and schema references.
Not Ideal For
the-new-fuse 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
OpenClaw agent: the-new-fuse The New Fuse A multi-agent AI orchestration platform that enables AI agents to communicate, collaborate, and execute workflows across browsers, IDEs, desktop apps, and cloud services. **Live:** $1 Quick Start Prerequisites - Node.js 20+ - pnpm 10.19.0+ (npm install -g pnpm) - Docker (for PostgreSQL + Redis) Setup Access Points | Service | URL | | -------------- | --------------------- | | Frontend | http://localhost:
Public facts
7
Change events
1
Artifacts
0
Freshness
Feb 22, 2026
Published capability contract available. No trust telemetry is available yet. 4 GitHub stars reported by the source. Last updated 2/24/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Feb 22, 2026
Vendor
Whodaniel
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. 4 GitHub stars reported by the source. Last updated 2/24/2026.
Setup snapshot
git clone https://github.com/whodaniel/fuse.gitSetup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.
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
Whodaniel
Protocol compatibility
MCP
Auth modes
mcp, api_key, oauth
Machine-readable schemas
OpenAPI or schema references published
Adoption signal
4 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
bash
git clone https://github.com/whodaniel/fuse.git cd fuse pnpm install pnpm run docker:start # PostgreSQL (5433) + Redis (6380) pnpm run dev # All services
text
Browser/Chrome Ext ──> Relay Server (WS:3000) <──> Redis (6380) <──> Relay
VSCode Extension ──/ │
API Server (3001)
Frontend (3000) ──> API Gateway (3005) ──> API Server (3001) ──> Drizzle ──> PostgreSQL (5433)
──> Backend (3004)
API Server <── TNF MCP Module <── Claude / other MCP clients
<── A2A Protocol <── Cross-agent messages
OpenClaw Mesh (cloud) <──> Anthropic Claude Pro (OAuth)
PicoClaw Fleet (cloud) <── Lightweight edge agentsbash
pnpm run db:generate # Generate schema from changes pnpm run db:migrate # Run migrations pnpm run db:push # Push schema directly (dev) pnpm run db:studio # Open Drizzle Studio GUI
text
.agent/ ├── SYSTEM_PROMPT.md # Global identity prompt ├── CODEBASE_INTELLIGENCE.md # Auto-indexing system docs ├── RESOURCE_REGISTRY.md # Typed catalog of all TNF resources ├── ROLE_DEFINITIONS.md # Agent role specs ├── agents/ # 16 specialized agent personas ├── skills/ # 15+ skill modules ├── workflows/ # Slash-command procedures ├── context/ # System knowledge docs └── session-logs/ # Past session histories
text
The-New-Fuse/ ├── apps/ │ ├── api/ # Main NestJS API server (port 3001) │ ├── api-gateway/ # NestJS gateway (port 3005) │ ├── backend/ # Secondary NestJS service (port 3004) │ ├── frontend/ # React + Vite SPA (port 3000) │ ├── relay-server/ # WebSocket relay hub │ ├── chrome-extension/ # Browser AI automation (V7) │ ├── vscode-extension/ # VS Code extension (v9.1.0) │ ├── electron-desktop/ # Electron desktop app │ ├── picoclaw-overseer/ # Go-based lightweight AI agent │ ├── mcp-servers/ # MCP tool servers │ ├── cloud-sandbox/ # Playwright browser sandbox │ ├── visualization-hub/ # D3.js agent network viz │ ├── ai-arcade/ # Agent marketplace │ └── skideancer-ide/ # Theia cloud IDE (excluded from workspace) ├── packages/ │ ├── types/ # Shared TypeScript types │ ├── database/ # Drizzle ORM + PostgreSQL schemas │ ├── relay-core/ # WebSocket relay, protocols, TNF Envelope │ ├── mcp-core/ # MCP client/server/broker │ ├── a2a-core/ # Agent-to-Agent protocol │ ├── ag-ui-core/ # AG-UI protocol │ ├── core/ # AI adapters, auth, vectordb, webhooks │ ├── agent/ # Agent abstractions │ ├── workflow-engine/ # Workflow executor │ ├── security/ # Encryption, middleware, audit │ ├── ui-consolidated/ # Shared UI components │ ├── tnf-cli/ # Terminal agent CLI │ ├── build-optimization/ # Adaptive build system │ └── ... # 25+ more packages ├── .agent/ # AI agent instructions & personas ├── docs/ # Documentation (1,200+ files) ├── turbo.json # Turbo pipeline config ├── pnpm-workspace.yaml # Workspace definition ├── docker-compose.dev-simple.yml # Dev
bash
# Infrastructure pnpm run docker:start # Start PostgreSQL + Redis pnpm run docker:stop # Stop Docker services pnpm run docker:status # Check service status pnpm run docker:logs # View logs pnpm run docker:test # Test connectivity # Development pnpm run dev # Start all services pnpm run dev:no-ide # Core services only (fastest) pnpm run dev:frontend # Frontend only pnpm run dev:backend # Backend only # Building pnpm run build # Build all (via Turbo) pnpm run type-check # TypeScript checking # Quality pnpm run lint # Lint all code pnpm run format # Format code pnpm run test # Run all tests # Database pnpm run db:generate # Generate Drizzle schema pnpm run db:migrate # Run migrations pnpm run db:push # Push schema (dev) pnpm run db:studio # Drizzle Studio GUI # Agent Management pnpm run claude:agents:sync # Sync .claude agents pnpm run claude:agents:register # Register agents in DB pnpm run claude:agents:search # Search agent ecosystem pnpm run claude:agents:status # Agent system status # Workspace Operations pnpm --filter @the-new-fuse/[package] add [dep] # Add dependency pnpm --filter @the-new-fuse/[package] run [cmd] # Run command in package pnpm -r run [cmd] # Run in all packages # Cleaning pnpm run clean # Clean build artifacts pnpm run clean:full # Full clean + remove node_modules
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB MCP
Editorial quality
ready
OpenClaw agent: the-new-fuse The New Fuse A multi-agent AI orchestration platform that enables AI agents to communicate, collaborate, and execute workflows across browsers, IDEs, desktop apps, and cloud services. **Live:** $1 Quick Start Prerequisites - Node.js 20+ - pnpm 10.19.0+ (npm install -g pnpm) - Docker (for PostgreSQL + Redis) Setup Access Points | Service | URL | | -------------- | --------------------- | | Frontend | http://localhost:
A multi-agent AI orchestration platform that enables AI agents to communicate, collaborate, and execute workflows across browsers, IDEs, desktop apps, and cloud services.
Live: thenewfuse.com
npm install -g pnpm)git clone https://github.com/whodaniel/fuse.git
cd fuse
pnpm install
pnpm run docker:start # PostgreSQL (5433) + Redis (6380)
pnpm run dev # All services
| Service | URL |
| -------------- | --------------------- |
| Frontend | http://localhost:3000 |
| API Server | http://localhost:3001 |
| API Gateway | http://localhost:3005 |
| Drizzle Studio | pnpm run db:studio |
Browser/Chrome Ext ──> Relay Server (WS:3000) <──> Redis (6380) <──> Relay
VSCode Extension ──/ │
API Server (3001)
Frontend (3000) ──> API Gateway (3005) ──> API Server (3001) ──> Drizzle ──> PostgreSQL (5433)
──> Backend (3004)
API Server <── TNF MCP Module <── Claude / other MCP clients
<── A2A Protocol <── Cross-agent messages
OpenClaw Mesh (cloud) <──> Anthropic Claude Pro (OAuth)
PicoClaw Fleet (cloud) <── Lightweight edge agents
| Service | Port | Tech | Purpose | | ---------------- | --------- | ------------ | ---------------------------------------------------------------------- | | Frontend | 3000 | React + Vite | SPA: dashboard, workflow builder, agent management, chat, admin | | API Server | 3001 | NestJS | Main backend: agents, chat, LLM routing, MCP, workflows, GraphQL, Web3 | | API Gateway | 3005 | NestJS | Single ingress proxy, auth, API versioning | | Backend | 3004 | NestJS | Secondary service: AG-UI protocol, job queues, Prometheus metrics | | Relay Server | 3000 (WS) | Node.js | WebSocket hub connecting all agents across tabs/processes | | PostgreSQL | 5433 | Docker | Primary database via Drizzle ORM | | Redis | 6380 | Docker | Pub/sub, caching, job queues |
| Package | Purpose |
| ------------------------------ | ------------------------------------------------------------------------- |
| @the-new-fuse/types | Shared TypeScript types/interfaces for agents, auth, API, workflows, chat |
| @the-new-fuse/utils | Utility functions |
| @the-new-fuse/infrastructure | NestJS providers: Redis, caching, shared services |
| Package | Purpose |
| ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------- |
| @the-new-fuse/database | Drizzle ORM with PostgreSQL. ~15 schema tables (users, agents, workflows, chat, billing, wallets, marketplace, workspace, audit-logs, etc.) |
| Package | Purpose |
| ---------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| @the-new-fuse/relay-core | WebSocket relay, Redis pub/sub, TNF Envelope protocol, protocol translators (A2A, OpenAI, Anthropic, LangChain, CrewAI), JWT auth, Master Agent Registry, heartbeat monitoring |
| @the-new-fuse/mcp-core | Full MCP client/server/broker implementation |
| @the-new-fuse/a2a-core | Agent-to-Agent protocol v0.3.0 (Linux Foundation spec) |
| @the-new-fuse/ag-ui-core | AG-UI protocol (Microsoft's agent-UI spec) |
| @the-new-fuse/ap2-protocol | AP2 protocol integration (HTTP-based, Zod) |
| Package | Purpose |
| ------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
| @the-new-fuse/agent | Core agent abstractions, NestJS providers, Redis-backed state |
| @the-new-fuse/core | Largest shared package: auth, AI adapters (Anthropic, Google), analysis, chat, workflow, vectordb (ChromaDB), webhooks, Supabase client |
| @the-new-fuse/workflow-engine | UnifiedWorkflowEngine (EventEmitter-based): builder, executor, validator, repository |
| @the-new-fuse/core-vector-db | Vector database service (Qdrant + ChromaDB) with gRPC + MCP interfaces |
| Package | Purpose |
| ------------------------------------ | -------------------------------------------------------------------- |
| @the-new-fuse/claude-skills | Claude Skills format: parser, loader, executor |
| @the-new-fuse/gemini-browser-skill | Chrome's built-in Gemini AI automation |
| @the-new-fuse/jules-integration | Google Jules coding agent integration (GitHub Issues, Redis queuing) |
| @the-new-fuse/jules-skill | Claude skill wrapper for Jules delegation |
| @the-new-fuse/n8n-workflows | Community n8n workflow fetching, parsing, categorization |
| Package | Purpose |
| ---------------------------------- | ---------------------------------------------------------------- |
| @the-new-fuse/ui-consolidated | Shared UI component library (tsup) |
| @the-new-fuse/tnf-cli | CLI binary (tnf-agent) for terminal agent messaging via Redis |
| @the-new-fuse/security | Encryption, security middleware, rate limiting, audit logging |
| @the-new-fuse/build-optimization | Adaptive build system: detects RAM, adjusts concurrency/strategy |
| @the-new-fuse/port-management | Port assignment management across the monorepo |
The canonical inter-agent message format, defined in
packages/relay-core/src/protocol/tnf-envelope.ts and validated with Zod:
TNFMCPModulepackages/mcp-core/ provides full client. VSCode
extension uses MCPServiceapps/mcp-servers/tnf-network-mcp/ exposes network
management as toolsThe relay-core implements adapters for multiple agent communication standards:
The ProtocolTranslator converts between any of these, enabling cross-framework
agent collaboration.
@nestjs/jwt + bcrypt)Federated gateway network using the openclaw npm package with Claude Pro
OAuth:
ws://127.0.0.1:18789openclaw-cloud-production-934c.up.railway.appopenclaw-primary-production.up.railway.appopenclaw-sandbox-cloud-production.up.railway.appanthropic/claude-opus-4-6Located at apps/frontend/src/components/ui/premium/:
GlassCard — Replaces Card/CardContent/CardHeader/CardTitlePremiumButton — Variants: primary, secondary, outline, ghost, danger,
gradientPremiumInput, PremiumSelect, PremiumTextarea, ToggleSwitch,
StatsCard, ActionCard, IconButtonImport all from @/components/ui/premium.
ORM: Drizzle ORM with PostgreSQL
Schema files in packages/database/src/drizzle/schema/:
| Schema | Purpose |
| ---------------- | ------------------------------------- |
| users.ts | Users, auth sessions, login attempts |
| agents.ts | Agents, metadata, NFTs, registrations |
| workflows.ts | Workflows, steps, executions |
| chat.ts | Chat sessions, messages |
| tasks.ts | Tasks with priority/status |
| billing.ts | Billing/subscription data |
| wallets.ts | Smart account wallets, transactions |
| marketplace.ts | NFT agent marketplace listings |
| workspace.ts | Workspace multi-tenancy |
| audit-logs.ts | Security audit trail |
pnpm run db:generate # Generate schema from changes
pnpm run db:migrate # Run migrations
pnpm run db:push # Push schema directly (dev)
pnpm run db:studio # Open Drizzle Studio GUI
.agent/ DirectoryAI agent operating instructions for any AI working in this codebase:
.agent/
├── SYSTEM_PROMPT.md # Global identity prompt
├── CODEBASE_INTELLIGENCE.md # Auto-indexing system docs
├── RESOURCE_REGISTRY.md # Typed catalog of all TNF resources
├── ROLE_DEFINITIONS.md # Agent role specs
├── agents/ # 16 specialized agent personas
├── skills/ # 15+ skill modules
├── workflows/ # Slash-command procedures
├── context/ # System knowledge docs
└── session-logs/ # Past session histories
The-New-Fuse/
├── apps/
│ ├── api/ # Main NestJS API server (port 3001)
│ ├── api-gateway/ # NestJS gateway (port 3005)
│ ├── backend/ # Secondary NestJS service (port 3004)
│ ├── frontend/ # React + Vite SPA (port 3000)
│ ├── relay-server/ # WebSocket relay hub
│ ├── chrome-extension/ # Browser AI automation (V7)
│ ├── vscode-extension/ # VS Code extension (v9.1.0)
│ ├── electron-desktop/ # Electron desktop app
│ ├── picoclaw-overseer/ # Go-based lightweight AI agent
│ ├── mcp-servers/ # MCP tool servers
│ ├── cloud-sandbox/ # Playwright browser sandbox
│ ├── visualization-hub/ # D3.js agent network viz
│ ├── ai-arcade/ # Agent marketplace
│ └── skideancer-ide/ # Theia cloud IDE (excluded from workspace)
├── packages/
│ ├── types/ # Shared TypeScript types
│ ├── database/ # Drizzle ORM + PostgreSQL schemas
│ ├── relay-core/ # WebSocket relay, protocols, TNF Envelope
│ ├── mcp-core/ # MCP client/server/broker
│ ├── a2a-core/ # Agent-to-Agent protocol
│ ├── ag-ui-core/ # AG-UI protocol
│ ├── core/ # AI adapters, auth, vectordb, webhooks
│ ├── agent/ # Agent abstractions
│ ├── workflow-engine/ # Workflow executor
│ ├── security/ # Encryption, middleware, audit
│ ├── ui-consolidated/ # Shared UI components
│ ├── tnf-cli/ # Terminal agent CLI
│ ├── build-optimization/ # Adaptive build system
│ └── ... # 25+ more packages
├── .agent/ # AI agent instructions & personas
├── docs/ # Documentation (1,200+ files)
├── turbo.json # Turbo pipeline config
├── pnpm-workspace.yaml # Workspace definition
├── docker-compose.dev-simple.yml # Dev infrastructure (PG + Redis)
├── railway.toml # Railway deployment (15+ services)
└── Dockerfile.railway # Multi-stage Railway build
# Infrastructure
pnpm run docker:start # Start PostgreSQL + Redis
pnpm run docker:stop # Stop Docker services
pnpm run docker:status # Check service status
pnpm run docker:logs # View logs
pnpm run docker:test # Test connectivity
# Development
pnpm run dev # Start all services
pnpm run dev:no-ide # Core services only (fastest)
pnpm run dev:frontend # Frontend only
pnpm run dev:backend # Backend only
# Building
pnpm run build # Build all (via Turbo)
pnpm run type-check # TypeScript checking
# Quality
pnpm run lint # Lint all code
pnpm run format # Format code
pnpm run test # Run all tests
# Database
pnpm run db:generate # Generate Drizzle schema
pnpm run db:migrate # Run migrations
pnpm run db:push # Push schema (dev)
pnpm run db:studio # Drizzle Studio GUI
# Agent Management
pnpm run claude:agents:sync # Sync .claude agents
pnpm run claude:agents:register # Register agents in DB
pnpm run claude:agents:search # Search agent ecosystem
pnpm run claude:agents:status # Agent system status
# Workspace Operations
pnpm --filter @the-new-fuse/[package] add [dep] # Add dependency
pnpm --filter @the-new-fuse/[package] run [cmd] # Run command in package
pnpm -r run [cmd] # Run in all packages
# Cleaning
pnpm run clean # Clean build artifacts
pnpm run clean:full # Full clean + remove node_modules
Deployed on Railway with 15+ services defined in railway.toml.
# Deploy all via Railway CLI
railway up --service TheNewFuse --environment production
# Or deploy individual services
railway up --service api-gateway --environment production
Key Railway services: TheNewFuse (frontend), api-gateway, api, backend,
openclaw-cloud, openclaw-primary, openclaw-sandbox-cloud,
picoclaw-tester, picoclaw-subject, picoclaw-perplexity, core-vector-db,
tnf-cloud-sandbox
| Layer | Technologies | | ------------ | ------------------------------------------------------------------------------------------------------------- | | Frontend | React 19, Vite 7, TypeScript, ReactFlow, Monaco Editor, Three.js, TanStack Query, Redux Toolkit, Firebase SDK | | Backend | NestJS, TypeScript, Drizzle ORM, GraphQL (Apollo), Bull (job queues), Swagger | | Database | PostgreSQL 14, Redis 6 | | Protocols | MCP, A2A v0.3.0, AG-UI, TNF Envelope, WebSocket | | AI Providers | Anthropic, OpenAI, Google (Gemini) | | Desktop | Electron, Tauri | | Build | pnpm, Turborepo, Docker, tsup | | Deployment | Railway, Nixpacks, GitHub Actions | | Edge AI | PicoClaw (Go), OpenClaw (Claude Pro OAuth) |
| Topic | Primary Doc | | ------------------- | -------------------------------------------------------------------------------------------- | | Architecture | docs/architecture/ARCHITECTURE_STANDARDS.md | | Agent Development | docs/agents/COMPLETE-AGENT-GUIDE.md | | Agent Communication | docs/AGENT_COMMUNICATION_PROTOCOL.md | | API Usage | docs/API_USAGE_GUIDE.md | | GraphQL | apps/api/src/graphql/README.md | | MCP Integration | apps/backend/src/modules/mcp/README.md | | Deployment | docs/deployment/DEPLOYMENT_GUIDE.md | | Railway | docs/deployment/RAILWAY_DEPLOYMENT_GUIDE.md | | Security | docs/security/SECURITY_BEST_PRACTICES.md | | Testing | docs/testing/TESTING_SETUP_COMPLETE.md | | Design System | docs/PREMIUM_THEME_MANIFEST.md | | Chrome Extension | apps/chrome-extension/README.md | | VS Code Extension | apps/vscode-extension/README.md | | Workflows | docs/workflows/WORKFLOW_QUICKSTART.md |
This project uses pnpm exclusively. Do not use npm or yarn.
[Add license information here]
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
ready
Auth
mcp, api_key, oauth
Streaming
No
Data region
global
Protocol support
Requires: mcp, lang:typescript
Forbidden: none
Guardrails
Operational confidence: medium
curl -s "https://xpersona.co/api/v1/agents/mcp-whodaniel-fuse/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-whodaniel-fuse/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-whodaniel-fuse/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
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "ready",
"authModes": [
"mcp",
"api_key",
"oauth"
],
"requires": [
"mcp",
"lang:typescript"
],
"forbidden": [],
"supportsMcp": true,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": "https://github.com/whodaniel/fuse#input",
"outputSchemaRef": "https://github.com/whodaniel/fuse#output",
"dataRegion": "global",
"contractUpdatedAt": "2026-02-24T19:46:44.329Z",
"sourceUpdatedAt": "2026-02-24T19:46:44.329Z",
"freshnessSeconds": 4438744
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-whodaniel-fuse/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/mcp-whodaniel-fuse/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/mcp-whodaniel-fuse/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/mcp-whodaniel-fuse/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-whodaniel-fuse/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-whodaniel-fuse/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_MCP",
"generatedAt": "2026-04-17T04:45:48.507Z"
}
},
"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": "MCP",
"type": "protocol",
"support": "supported",
"confidenceSource": "contract",
"notes": "Confirmed by capability contract"
}
],
"flattenedTokens": "protocol:MCP|supported|contract"
}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": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/mcp-whodaniel-fuse/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-whodaniel-fuse/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:46:44.329Z",
"isPublic": true
},
{
"factKey": "auth_modes",
"category": "compatibility",
"label": "Auth modes",
"value": "mcp, api_key, oauth",
"href": "https://xpersona.co/api/v1/agents/mcp-whodaniel-fuse/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-whodaniel-fuse/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:46:44.329Z",
"isPublic": true
},
{
"factKey": "schema_refs",
"category": "artifact",
"label": "Machine-readable schemas",
"value": "OpenAPI or schema references published",
"href": "https://github.com/whodaniel/fuse#input",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-whodaniel-fuse/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:46:44.329Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Whodaniel",
"href": "https://github.com/whodaniel/fuse",
"sourceUrl": "https://github.com/whodaniel/fuse",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:14.176Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "4 GitHub stars",
"href": "https://github.com/whodaniel/fuse",
"sourceUrl": "https://github.com/whodaniel/fuse",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:14.176Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/mcp-whodaniel-fuse/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-whodaniel-fuse/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 the-new-fuse and adjacent AI workflows.