Crawler Summary

arbiter answer-first brief

Domain-agnostic knowledge hub with Discord bot, AI agent, and vector search capabilities Arbiter Domain-Agnostic Knowledge Hub with Discord Bot, AI Agent, and Vector Search $1 $1 $1 --- Overview Arbiter is a **domain-agnostic** knowledge management system that can ingest, index, and query documents from any domain. Unlike domain-specific systems, Arbiter accepts all configuration through environment variables and user-provided settingsβ€”no hardcoded domain knowledge. **Key Features**: - 🌐 **Domain Agnost Published capability contract available. No trust telemetry is available yet. 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

arbiter 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: 84/100

arbiter

Domain-agnostic knowledge hub with Discord bot, AI agent, and vector search capabilities Arbiter Domain-Agnostic Knowledge Hub with Discord Bot, AI Agent, and Vector Search $1 $1 $1 --- Overview Arbiter is a **domain-agnostic** knowledge management system that can ingest, index, and query documents from any domain. Unlike domain-specific systems, Arbiter accepts all configuration through environment variables and user-provided settingsβ€”no hardcoded domain knowledge. **Key Features**: - 🌐 **Domain Agnost

MCPverified

Public facts

6

Change events

1

Artifacts

0

Freshness

Feb 22, 2026

Verifiededitorial-content1 verified compatibility signal

Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.

Schema refs publishedTrust evidence available

Trust score

Unknown

Compatibility

MCP

Freshness

Feb 22, 2026

Vendor

K Moffett

Artifacts

0

Benchmarks

0

Last release

1.0.0

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. Last updated 2/24/2026.

Setup snapshot

git clone https://github.com/k-moffett/arbiter.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

K Moffett

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

Protocol compatibility

MCP

contracthigh
Observed Feb 24, 2026Source linkProvenance

Auth modes

mcp, api_key

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

Machine-readable schemas

OpenAPI or schema references published

contracthigh
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

# Clone the repository
git clone https://github.com/yourusername/arbiter.git
cd arbiter

# Install dependencies
npm install

# Set up environment variables
cp .env.example .env
# Edit .env with your configuration

bash

# Run in development mode with hot reload
npm run dev

# Type check
npm run typecheck

# Lint
npm run lint

# Test
npm test

# Full validation
npm run validate

bash

# Start all services with model warming (recommended)
npm run docker:services:up

# Start services without model warming (faster startup)
npm run docker:services:up:no-warm

# Start MCP server
npm run docker:mcp:up

# Start full MVP stack (services + MCP + health check)
npm run docker:mvp

# Run CLI client
npm run docker:cli

# Manually trigger model warming (if skipped earlier)
npm run docker:warm

# Stop all services
npm run docker:mvp:down

bash

# Required
ANTHROPIC_API_KEY="your-key-here"
QDRANT_HOST="localhost"
QDRANT_PORT="6333"

# Domain Configuration (user-defined)
DOMAIN_NAME="My Knowledge Domain"
VECTOR_COLLECTION_NAME="my-data"
DATA_VERSION="1.0.0"

# Data Sources (user-provided URLs)
PDF_SOURCE_URLS="https://example.com/doc1.pdf,https://example.com/doc2.pdf"
XML_SOURCE_URL="https://github.com/user/repo"

json

{
  "sources": [
    {
      "id": "core-docs",
      "type": "pdf",
      "url": "https://example.com/documentation.pdf",
      "label": "Core Documentation",
      "priority": 1
    }
  ]
}

text

!ingest https://example.com/rules.pdf "My Rules Document"
!configure collection set my-collection-name

Docs & README

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

Self-declaredGITHUB MCP

Docs source

GITHUB MCP

Editorial quality

ready

Domain-agnostic knowledge hub with Discord bot, AI agent, and vector search capabilities Arbiter Domain-Agnostic Knowledge Hub with Discord Bot, AI Agent, and Vector Search $1 $1 $1 --- Overview Arbiter is a **domain-agnostic** knowledge management system that can ingest, index, and query documents from any domain. Unlike domain-specific systems, Arbiter accepts all configuration through environment variables and user-provided settingsβ€”no hardcoded domain knowledge. **Key Features**: - 🌐 **Domain Agnost

Full README

Arbiter

Domain-Agnostic Knowledge Hub with Discord Bot, AI Agent, and Vector Search

TypeScript Node.js License


Overview

Arbiter is a domain-agnostic knowledge management system that can ingest, index, and query documents from any domain. Unlike domain-specific systems, Arbiter accepts all configuration through environment variables and user-provided settingsβ€”no hardcoded domain knowledge.

Key Features:

  • 🌐 Domain Agnostic: Works with any subject matter
  • πŸ”§ Fully Configurable: All settings via environment or config files
  • πŸ€– Discord Integration: Optional bot interface for queries
  • 🧠 AI-Powered: Claude AI for intelligent query processing
  • πŸ” Vector Search: Semantic search via Qdrant
  • πŸ“„ Multi-Format: PDF, XML, HTML, Markdown support
  • 🎯 Type-Safe: Full TypeScript with strict mode
  • βœ… Well-Tested: 80% coverage target

Quick Start

Prerequisites

  • Node.js 22.0+
  • npm 10.0+
  • Qdrant (vector database)
  • Anthropic API key (for AI features)

Installation

# Clone the repository
git clone https://github.com/yourusername/arbiter.git
cd arbiter

# Install dependencies
npm install

# Set up environment variables
cp .env.example .env
# Edit .env with your configuration

Development

# Run in development mode with hot reload
npm run dev

# Type check
npm run typecheck

# Lint
npm run lint

# Test
npm test

# Full validation
npm run validate

Docker

# Start all services with model warming (recommended)
npm run docker:services:up

# Start services without model warming (faster startup)
npm run docker:services:up:no-warm

# Start MCP server
npm run docker:mcp:up

# Start full MVP stack (services + MCP + health check)
npm run docker:mvp

# Run CLI client
npm run docker:cli

# Manually trigger model warming (if skipped earlier)
npm run docker:warm

# Stop all services
npm run docker:mvp:down

Model Warming: By default, Ollama models are pre-loaded into memory after startup to reduce first-request latency. This adds ~30-60 seconds to startup time but eliminates the 10-20 second delay on first requests. Disable by using docker:services:up:no-warm or setting OLLAMA_WARM_MODELS=false in .env.


Configuration

Arbiter is designed to be completely domain-agnostic. All domain-specific information must be provided through configuration:

Environment Variables

Copy .env.example to .env and configure:

# Required
ANTHROPIC_API_KEY="your-key-here"
QDRANT_HOST="localhost"
QDRANT_PORT="6333"

# Domain Configuration (user-defined)
DOMAIN_NAME="My Knowledge Domain"
VECTOR_COLLECTION_NAME="my-data"
DATA_VERSION="1.0.0"

# Data Sources (user-provided URLs)
PDF_SOURCE_URLS="https://example.com/doc1.pdf,https://example.com/doc2.pdf"
XML_SOURCE_URL="https://github.com/user/repo"

Configuration Files

Create config/data-sources.json:

{
  "sources": [
    {
      "id": "core-docs",
      "type": "pdf",
      "url": "https://example.com/documentation.pdf",
      "label": "Core Documentation",
      "priority": 1
    }
  ]
}

Runtime Configuration

Use Discord commands to configure at runtime:

!ingest https://example.com/rules.pdf "My Rules Document"
!configure collection set my-collection-name

Project Structure

arbiter/
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ interface/      # Discord bot, API, CLI interfaces
β”‚   β”œβ”€β”€ context/        # Session and state management
β”‚   β”œβ”€β”€ orchestrator/   # Query routing and orchestration
β”‚   β”œβ”€β”€ tools/          # Generic tool implementations
β”‚   β”œβ”€β”€ parsers/        # Document parsers (PDF, XML, HTML)
β”‚   β”œβ”€β”€ vector/         # Vector database operations
β”‚   β”œβ”€β”€ config/         # Configuration management
β”‚   └── shared/         # Shared utilities and types
β”œβ”€β”€ test/               # Test files
β”œβ”€β”€ .claude/            # AI assistant configuration
└── dist/               # Build output

Architecture

Three-Layer Architecture

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚         Interface Layer                  β”‚
β”‚  - Discord bot (optional)               β”‚
β”‚  - Web API (future)                     β”‚
β”‚  - CLI (future)                         β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                  ↓
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚    Orchestration + Context Layer        β”‚
β”‚  - Query classification                 β”‚
β”‚  - Session management                   β”‚
β”‚  - Tool routing & selection             β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                  ↓
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚         Execution Layer                  β”‚
β”‚  - Generic document search              β”‚
β”‚  - Configurable parsers                 β”‚
β”‚  - Vector database operations           β”‚
β”‚  - User-defined tools                   β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Design Principles

1. Domain Agnosticism

Never hardcode domain-specific logic. Always use configuration:

❌ Bad:

const GAME_NAME = "Fantasy Battle System X";
const COLLECTION = "game-system-x";

βœ… Good:

const domainName = process.env.DOMAIN_NAME || "general";
const collection = process.env.VECTOR_COLLECTION_NAME || "knowledge-base";

2. Configuration Over Code

All domain knowledge comes from:

  1. Environment variables
  2. Configuration files
  3. User input at runtime

3. Generic Tools

Tools are reusable across domains:

  • DocumentSearchTool - Semantic search
  • EntityLookupTool - Entity queries
  • ComparisonTool - Compare entities
  • AnalysisTool - LLM analysis

4. User-Provided Schemas

Parsers accept user-defined extraction rules:

{
  "parser": "xml",
  "extractionRules": [
    {
      "entityType": "item",
      "xpath": "//item",
      "fields": [
        { "name": "name", "path": "@name", "type": "string" },
        { "name": "value", "path": "cost", "type": "number" }
      ]
    }
  ]
}

Development

Code Quality Standards

  • TypeScript: Strict mode enabled
  • Line Length: 100 characters
  • File Size: 400 lines max (relaxed from 300)
  • Function Size: 75 lines max (relaxed from 50)
  • Complexity: Max 10
  • Test Coverage: 80% minimum

Testing

# Run all tests
npm test

# Watch mode
npm run test:watch

# Coverage report
npm run test:coverage

Linting & Formatting

# Auto-fix linting issues
npm run lint:fix

# Format code
npm run format

# Check everything
npm run validate

Log Viewing and Debugging

Arbiter provides comprehensive logging with built-in filtering to separate application logs from Ollama model logs.

Quick Start

# View Arbiter application logs only
npm run logs:arbiter

# View Arbiter CLI logs
npm run logs:arbiter:cli

# View Ollama model logs
npm run logs:ollama

# View all logs from all containers
npm run logs:all

# View JSON structured logs (pipe to jq for filtering)
npm run logs:json

Log Formats

Text Format (default):

[ARBITER] INFO: Server started on port 3100
[ARBITER] DEBUG: Processing request for entity: weapon-123
[ARBITER] ERROR: Failed to connect to Qdrant

JSON Format (for machine parsing):

{"timestamp":"2025-01-15T10:30:45.123Z","level":"INFO","service":"ARBITER","message":"Server started on port 3100"}
{"timestamp":"2025-01-15T10:30:46.456Z","level":"DEBUG","service":"ARBITER","message":"Processing request","context":{"entityId":"weapon-123"}}

Environment Variables

Configure logging behavior in .env or Docker environment:

# Log prefix (default: [ARBITER])
LOG_PREFIX="[ARBITER]"

# Log format: text or json (default: text)
LOG_FORMAT="text"

# Log level: DEBUG, INFO, WARN, ERROR (default: INFO)
LOG_LEVEL="INFO"

# Enable colored output (default: true)
LOG_USE_COLORS="true"

# Enable Ollama debug logs (default: false)
OLLAMA_DEBUG="false"

Advanced Filtering

Filter JSON logs with jq:

# Show only ERROR level logs
npm run logs:json | jq 'select(.level == "ERROR")'

# Show logs with specific context
npm run logs:json | jq 'select(.context.entityId != null)'

# Pretty print JSON logs
npm run logs:json | jq '.'

Direct Docker commands:

# View logs from specific container
docker logs -f arbiter-mcp-server

# Filter Arbiter logs with grep
docker logs -f arbiter-mcp-server 2>&1 | grep "\[ARBITER\]"

# View last 100 lines
docker logs --tail 100 arbiter-mcp-server

Switching Log Formats

To enable JSON structured logging, update your .env file:

LOG_FORMAT="json"

Then restart the services:

npm run docker:services:down
npm run docker:services:up

Project Status

Current Phase: Foundation Setup βœ…

  • βœ… TypeScript configuration
  • βœ… ESLint with relaxed rules
  • βœ… Jest testing framework
  • βœ… Prettier formatting
  • βœ… Domain-agnostic environment config
  • βœ… Project documentation
  • 🚧 Core architecture implementation (next)
  • πŸ“… Tool system
  • πŸ“… Parser implementations
  • πŸ“… Discord interface
  • πŸ“… Vector search integration

Comparison to Cogitator

Arbiter is a refactored and optimized version of the cogitator project:

| Aspect | Cogitator | Arbiter | |--------|-----------|---------| | Domain | Hardcoded | Fully configurable | | Files | 288 TypeScript files | Target: 100-150 | | Layers | 4 layers | 3 layers (simplified) | | Memory | ~1GB+ idle | Target: <256MB | | Startup | ~5-10s | Target: <2s | | Bundle | ~200MB+ | Target: <50MB | | Dependencies | Heavy (Puppeteer, etc.) | Lighter alternatives | | Interface Prefix | Required "I" | Optional (modern style) |


Contributing

Contributions welcome! Please:

  1. Follow the domain-agnostic principle
  2. Maintain type safety (no any types)
  3. Write tests for new features
  4. Run npm run validate before committing
  5. Update documentation

License

MIT License - see LICENSE file for details.


Acknowledgments

  • Based on the cogitator project architecture
  • Built with TypeScript, Discord.js, and Anthropic Claude
  • Vector search powered by Qdrant

Built with ❀️ using Clean Architecture and TypeScript

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

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-k-moffett-arbiter/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-k-moffett-arbiter/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-k-moffett-arbiter/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"
  ],
  "requires": [
    "mcp",
    "lang:typescript"
  ],
  "forbidden": [],
  "supportsMcp": true,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": "https://github.com/k-moffett/arbiter#input",
  "outputSchemaRef": "https://github.com/k-moffett/arbiter#output",
  "dataRegion": "global",
  "contractUpdatedAt": "2026-02-24T19:46:43.026Z",
  "sourceUpdatedAt": "2026-02-24T19:46:43.026Z",
  "freshnessSeconds": 4429962
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-k-moffett-arbiter/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/mcp-k-moffett-arbiter/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/mcp-k-moffett-arbiter/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-k-moffett-arbiter/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-k-moffett-arbiter/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-k-moffett-arbiter/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-17T02:19:25.201Z"
    }
  },
  "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"
    },
    {
      "key": "discord",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "bot",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "mcp",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "ai",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "agent",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "vector-search",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "knowledge-base",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "typescript",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "domain-agnostic",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "cli",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    }
  ],
  "flattenedTokens": "protocol:MCP|supported|contract capability:discord|supported|profile capability:bot|supported|profile capability:mcp|supported|profile capability:ai|supported|profile capability:agent|supported|profile capability:vector-search|supported|profile capability:knowledge-base|supported|profile capability:typescript|supported|profile capability:domain-agnostic|supported|profile capability:cli|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": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "MCP",
    "href": "https://xpersona.co/api/v1/agents/mcp-k-moffett-arbiter/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-k-moffett-arbiter/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:46:43.026Z",
    "isPublic": true
  },
  {
    "factKey": "auth_modes",
    "category": "compatibility",
    "label": "Auth modes",
    "value": "mcp, api_key",
    "href": "https://xpersona.co/api/v1/agents/mcp-k-moffett-arbiter/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-k-moffett-arbiter/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:46:43.026Z",
    "isPublic": true
  },
  {
    "factKey": "schema_refs",
    "category": "artifact",
    "label": "Machine-readable schemas",
    "value": "OpenAPI or schema references published",
    "href": "https://github.com/k-moffett/arbiter#input",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-k-moffett-arbiter/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:46:43.026Z",
    "isPublic": true
  },
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "K Moffett",
    "href": "https://github.com/k-moffett/arbiter",
    "sourceUrl": "https://github.com/k-moffett/arbiter",
    "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-k-moffett-arbiter/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-k-moffett-arbiter/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 arbiter and adjacent AI workflows.