Crawler Summary

the-new-fuse answer-first brief

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

Claim this agent
Agent DossierGitHubSafety: 100/100

the-new-fuse

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:

MCPverified

Public facts

7

Change events

1

Artifacts

0

Freshness

Feb 22, 2026

Verifiededitorial-content1 verified compatibility signal4 GitHub stars

Published capability contract available. No trust telemetry is available yet. 4 GitHub stars reported by the source. Last updated 2/24/2026.

4 GitHub starsSchema refs publishedTrust evidence available

Trust score

Unknown

Compatibility

MCP

Freshness

Feb 22, 2026

Vendor

Whodaniel

Artifacts

0

Benchmarks

0

Last release

Unpublished

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

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.git
  1. 1

    Setup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.

  2. 2

    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.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Whodaniel

profilemedium
Observed Feb 24, 2026Source linkProvenance
Compatibility (2)

Protocol compatibility

MCP

contracthigh
Observed Feb 24, 2026Source linkProvenance

Auth modes

mcp, api_key, oauth

contracthigh
Observed Feb 24, 2026Source linkProvenance
Artifact (1)

Machine-readable schemas

OpenAPI or schema references published

contracthigh
Observed Feb 24, 2026Source linkProvenance
Adoption (1)

Adoption signal

4 GitHub stars

profilemedium
Observed Feb 24, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB MCP

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Executable Examples

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 agents

bash

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

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB MCP

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:

Full README

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: thenewfuse.com

Quick Start

Prerequisites

  • Node.js 20+
  • pnpm 10.19.0+ (npm install -g pnpm)
  • Docker (for PostgreSQL + Redis)

Setup

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

Access Points

| Service | URL | | -------------- | --------------------- | | Frontend | http://localhost:3000 | | API Server | http://localhost:3001 | | API Gateway | http://localhost:3005 | | Drizzle Studio | pnpm run db:studio |

Architecture

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

Core Services

| 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 |

Message Flow

  1. Frontend -> API Gateway (3005) -> API Server (3001) — REST/GraphQL
  2. Agent -> Relay Server (WS) -> Redis Pub/Sub -> Other Agents — Agent mesh
  3. Chrome Extension -> Relay Server (WS) — Browser AI automation relay
  4. VSCode Extension -> Relay Server -> API — IDE integration
  5. Any Agent -> MCP Server (embedded in API) — Tool invocation via Model Context Protocol
  6. A2A Messages: TNFEnvelope format (Zod-validated), carried over WebSocket or Redis

Apps

Core Services

  • apps/api/ — Main NestJS backend: agent CRUD, LLM providers (Anthropic/OpenAI/Google), MCP server, A2A protocol, GraphQL, Web3Auth, Swagger docs
  • apps/frontend/ — React SPA with ReactFlow workflow builder, Monaco editor, Three.js visualizations, premium UI components, Firebase auth
  • apps/api-gateway/ — NestJS gateway: request proxy, JWT auth, API versioning
  • apps/backend/ — Secondary NestJS service: AG-UI protocol, Bull job queues, Prometheus metrics
  • apps/relay-server/ — WebSocket relay hub for inter-agent messaging, MCP integration, React UI

Client Extensions

  • apps/chrome-extension/ — Injects into Claude/Gemini/ChatGPT/Perplexity tabs, captures AI responses, relays via WebSocket (V7 active)
  • apps/vscode-extension/ — Full VS Code extension (v9.1.0): multi-LLM chat, A2A, AG-UI, MCP client, agent registry, collective orchestrator
  • apps/electron-desktop/ — Electron desktop app with Chakra UI + Socket.io

AI Infrastructure

  • apps/picoclaw-overseer/ — Go-based ultra-lightweight AI agent (<10MB RAM), three Railway instances (tester/subject/perplexity)
  • apps/mcp-servers/ — MCP tool servers: network management, DevOps bridge, Claude/Gemini integration
  • apps/cloud-sandbox/ — Playwright browser automation sandbox with Socket.io

Other

Shared Packages

Foundation

| 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 |

Database

| Package | Purpose | | ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------- | | @the-new-fuse/database | Drizzle ORM with PostgreSQL. ~15 schema tables (users, agents, workflows, chat, billing, wallets, marketplace, workspace, audit-logs, etc.) |

Communication & Protocols

| 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) |

Agent & Workflow Layer

| 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 |

Integrations

| 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 |

UI & Developer Tools

| 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 |

Key Patterns

TNF Envelope Protocol

The canonical inter-agent message format, defined in packages/relay-core/src/protocol/tnf-envelope.ts and validated with Zod:

  • Message types: command, event, task, state-sync, query, response
  • Agent identity: id, role, platform, capabilities
  • Context: workflowId, stepId, sessionId, channelId, parentMessageId
  • Transport: WebSocket relay or Redis pub/sub

MCP Integration (4 modes)

  1. TNF as MCP Server — API exposes agents/workflows/chat as MCP tools via TNFMCPModule
  2. TNF as MCP Clientpackages/mcp-core/ provides full client. VSCode extension uses MCPService
  3. Network MCP Serverapps/mcp-servers/tnf-network-mcp/ exposes network management as tools
  4. Relay MCP Transport — MCP as one of the relay's transport mechanisms

Protocol Translation

The relay-core implements adapters for multiple agent communication standards:

  • A2A v0.3.0 (Linux Foundation)
  • AG-UI (Microsoft)
  • OpenAI function calling format
  • Anthropic XML tool format
  • LangChain / CrewAI formats

The ProtocolTranslator converts between any of these, enabling cross-framework agent collaboration.

Auth Stack

  • Firebase — Browser-side auth UI (Google sign-in, etc.)
  • JWT — API issues its own access/refresh tokens (@nestjs/jwt + bcrypt)
  • Web3Auth — Crypto wallet authentication
  • Relay JWT — Separate JWT auth for agents connecting to relay

OpenClaw Mesh

Federated gateway network using the openclaw npm package with Claude Pro OAuth:

  • Local: ws://127.0.0.1:18789
  • Cloud Primary: openclaw-cloud-production-934c.up.railway.app
  • Cloud Secondary: openclaw-primary-production.up.railway.app
  • Cloud Sandbox: openclaw-sandbox-cloud-production.up.railway.app
  • Model: anthropic/claude-opus-4-6

Premium UI Components

Located at apps/frontend/src/components/ui/premium/:

  • GlassCard — Replaces Card/CardContent/CardHeader/CardTitle
  • PremiumButton — Variants: primary, secondary, outline, ghost, danger, gradient
  • PremiumInput, PremiumSelect, PremiumTextarea, ToggleSwitch, StatsCard, ActionCard, IconButton

Import all from @/components/ui/premium.

Database

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

The .agent/ Directory

AI 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

Project Structure

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

Development Commands

# 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

Deployment

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

Technology Stack

| 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) |

Documentation

By Topic

| 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 |

Package Manager

This project uses pnpm exclusively. Do not use npm or yarn.

License

[Add license information here]

Support

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

Verifiedcapability-contract

Contract coverage

Status

ready

Auth

mcp, api_key, oauth

Streaming

No

Data region

global

Protocol support

MCP: verified

Requires: mcp, lang:typescript

Forbidden: none

Guardrails

Operational confidence: medium

Contract is available with explicit auth and schema references.
Trust confidence is not low and verification freshness is acceptable.
Protocol support is explicitly confirmed in contract metadata.
Invocation examples
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"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

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

No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITLAB_AI_CATALOGgitlab-mcp

Rank

83

A Model Context Protocol (MCP) server for GitLab

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_PUBLIC_PROJECTSgitlab-mcp

Rank

80

A Model Context Protocol (MCP) server for GitLab

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_AI_CATALOGrmcp-openapi

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

MCP
GITLAB_AI_CATALOGrmcp-actix-web

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

MCP
Machine Appendix

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.