Claim this agent
Agent DossierCLAWHUBSafety 84/100

Xpersona Agent

Civic Nexus

Connect to Civic Nexus MCP for 100+ integrations. Skill: Civic Nexus Owner: TYRONEMICHAEL Summary: Connect to Civic Nexus MCP for 100+ integrations. Tags: latest:1.0.3 Version history: v1.0.3 | 2026-02-06T03:37:46.795Z | user - Added "User-Agent": "openclaw/1.0.0" header to the recommended mcporter configuration in mcporter.json. - No other changes introduced. v1.0.2 | 2026-02-04T17:18:03.293Z | user - Skill renamed from "civic-nexus-community" to "civic-nexus". - M

OpenClaw · self-declared
1.7K downloadsTrust evidence available
clawhub skill install kn701fmx1ymaqcswj1vptp944980g0ng:civic-nexus

Overall rank

#62

Adoption

1.7K downloads

Trust

Unknown

Freshness

Feb 28, 2026

Freshness

Last checked Feb 28, 2026

Best For

Civic Nexus is best for general automation workflows where OpenClaw compatibility matters.

Not Ideal For

Contract metadata is missing or unavailable for deterministic execution.

Evidence Sources Checked

editorial-content, CLAWHUB, runtime-metrics, public facts pack

Overview

Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.

Verifiededitorial-content

Overview

Executive Summary

Connect to Civic Nexus MCP for 100+ integrations. Skill: Civic Nexus Owner: TYRONEMICHAEL Summary: Connect to Civic Nexus MCP for 100+ integrations. Tags: latest:1.0.3 Version history: v1.0.3 | 2026-02-06T03:37:46.795Z | user - Added "User-Agent": "openclaw/1.0.0" header to the recommended mcporter configuration in mcporter.json. - No other changes introduced. v1.0.2 | 2026-02-04T17:18:03.293Z | user - Skill renamed from "civic-nexus-community" to "civic-nexus". - M Capability contract not published. No trust telemetry is available yet. 1.7K downloads reported by the source. Last updated 4/15/2026.

No verified compatibility signals1.7K downloads

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Feb 28, 2026

Vendor

Clawhub

Artifacts

0

Benchmarks

0

Last release

1.0.3

Install & run

Setup Snapshot

clawhub skill install kn701fmx1ymaqcswj1vptp944980g0ng:civic-nexus
  1. 1

    Node.js workspace detected. Install dependencies securely: run `npm ci --ignore-scripts` to prevent post-install lifecycle triggers from running arbitrary code, then selectively audit the dependency tree.

  2. 2

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  3. 3

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

Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.

Verifiededitorial-content

Public facts

Evidence Ledger

Vendor (1)

Vendor

Clawhub

profilemedium
Observed Apr 15, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
Observed Apr 15, 2026Source linkProvenance
Release (1)

Latest release

1.0.3

releasemedium
Observed Feb 6, 2026Source linkProvenance
Adoption (1)

Adoption signal

1.7K downloads

profilemedium
Observed Apr 15, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance

Artifacts & Docs

Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.

Self-declaredCLAWHUB

Captured outputs

Artifacts Archive

Extracted files

3

Examples

6

Snippets

0

Languages

Unknown

Executable Examples

json

{
  "skills": {
    "entries": {
      "civic-nexus": {
        "enabled": true,
        "env": {
          "NEXUS_URL": "https://nexus.civic.com/hub/mcp?accountId=YOUR_ACCOUNT_ID&profile=YOUR_PROFILE",
          "NEXUS_TOKEN": "your-access-token"
        }
      }
    }
  }
}

json

{
  "mcpServers": {
    "nexus": {
      "baseUrl": "https://nexus.civic.com/hub/mcp?accountId=YOUR_ACCOUNT_ID&profile=YOUR_PROFILE",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN",
        "User-Agent": "openclaw/1.0.0"
      }
    }
  }
}

bash

# List tools
mcporter list nexus

# Search tools
mcporter list nexus | grep gmail

# Call a tool
mcporter call 'nexus.google-gmail-search_gmail_messages(query: "is:unread")'

bash

# List tools
npx tsx {baseDir}/nexus-tool-runner.ts --list

# Search tools
npx tsx {baseDir}/nexus-tool-runner.ts --search gmail

# Get tool schema
npx tsx {baseDir}/nexus-tool-runner.ts --schema google-gmail-search_gmail_messages

# Call a tool
npx tsx {baseDir}/nexus-tool-runner.ts --call google-gmail-search_gmail_messages --args '{"query": "is:unread"}'

bash

# mcporter
   mcporter call 'nexus.continue_job(jobId: "JOB_ID")'

   # script
   npx tsx {baseDir}/nexus-tool-runner.ts --call continue_job --args '{"job_id": "JOB_ID"}'

json

{
  "skills": {
    "entries": {
      "civic-nexus": {
        "enabled": true,
        "env": {
          "NEXUS_URL": "https://nexus.civic.com/hub/mcp?accountId=YOUR_ACCOUNT_ID&profile=YOUR_PROFILE",
          "NEXUS_TOKEN": "your-access-token"
        }
      }
    }
  }
}
Extracted Files

SKILL.md

---
name: civic-nexus
description: "Connect to Civic Nexus MCP for 100+ integrations."
metadata: {"openclaw":{"requires":{"env":["NEXUS_URL","NEXUS_TOKEN"],"anyBins":["mcporter","npx"]},"primaryEnv":"NEXUS_TOKEN"}}
---

# Civic Nexus MCP Bridge

> **⚠️ DISCLAIMER: Use at your own risk. For official documentation, visit [docs.civic.com](https://docs.civic.com).**

Connect to [Civic Nexus](https://nexus.civic.com) for 100+ integrations including Gmail, PostgreSQL, MongoDB, Box, and more.

## Setup

### 1. Get your Nexus credentials

1. Go to [nexus.civic.com](https://nexus.civic.com) and sign in
2. Get your **MCP URL** and **access token** from your profile settings

### 2. Configure in OpenClaw

Add to `~/.openclaw/openclaw.json`:

```json
{
  "skills": {
    "entries": {
      "civic-nexus": {
        "enabled": true,
        "env": {
          "NEXUS_URL": "https://nexus.civic.com/hub/mcp?accountId=YOUR_ACCOUNT_ID&profile=YOUR_PROFILE",
          "NEXUS_TOKEN": "your-access-token"
        }
      }
    }
  }
}
```

### 3. (Optional) Configure mcporter

If you have mcporter installed (`npm install -g mcporter`), add to `~/.openclaw/workspace/config/mcporter.json`:

```json
{
  "mcpServers": {
    "nexus": {
      "baseUrl": "https://nexus.civic.com/hub/mcp?accountId=YOUR_ACCOUNT_ID&profile=YOUR_PROFILE",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN",
        "User-Agent": "openclaw/1.0.0"
      }
    }
  }
}
```

## Instructions for the Agent

When the user asks to interact with external services through Nexus, try mcporter first. If it fails, fall back to the TypeScript script.

### Using mcporter

```bash
# List tools
mcporter list nexus

# Search tools
mcporter list nexus | grep gmail

# Call a tool
mcporter call 'nexus.google-gmail-search_gmail_messages(query: "is:unread")'
```

### Fallback: TypeScript script

```bash
# List tools
npx tsx {baseDir}/nexus-tool-runner.ts --list

# Search tools
npx tsx {baseDir}/nexus-tool-runner.ts --search gmail

# Get tool schema
npx tsx {baseDir}/nexus-tool-runner.ts --schema google-gmail-search_gmail_messages

# Call a tool
npx tsx {baseDir}/nexus-tool-runner.ts --call google-gmail-search_gmail_messages --args '{"query": "is:unread"}'
```

### Authorization flows

Some tools require OAuth on first use. When you see an authorization URL:

1. Show the URL to the user
2. After they authorize, continue:
   ```bash
   # mcporter
   mcporter call 'nexus.continue_job(jobId: "JOB_ID")'

   # script
   npx tsx {baseDir}/nexus-tool-runner.ts --call continue_job --args '{"job_id": "JOB_ID"}'
   ```

## Notes

- API calls can take 10-15 seconds (server-side latency)
- Tokens expire after ~30 days — regenerate from Nexus if needed
- Gmail batch requests limited to 5-25 messages per call

---

_meta.json

{
  "ownerId": "kn701fmx1ymaqcswj1vptp944980g0ng",
  "slug": "civic-nexus",
  "version": "1.0.3",
  "publishedAt": 1770349066795
}

package.json

{
  "name": "civic-nexus",
  "version": "1.0.0",
  "description": "Connect any LLM to Civic Nexus MCP tools",
  "type": "module",
  "main": "nexus-tool-runner.ts",
  "scripts": {
    "start": "tsx nexus-tool-runner.ts",
    "list": "tsx nexus-tool-runner.ts --list",
    "search": "tsx nexus-tool-runner.ts --search",
    "call": "tsx nexus-tool-runner.ts --call"
  },
  "keywords": [
    "mcp",
    "nexus",
    "civic",
    "claude",
    "llm",
    "tools",
    "api"
  ],
  "author": "Civic",
  "license": "MIT",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.25.2",
    "tsx": "^4.19.0"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}

Editorial read

Docs & README

Docs source

CLAWHUB

Editorial quality

ready

Connect to Civic Nexus MCP for 100+ integrations. Skill: Civic Nexus Owner: TYRONEMICHAEL Summary: Connect to Civic Nexus MCP for 100+ integrations. Tags: latest:1.0.3 Version history: v1.0.3 | 2026-02-06T03:37:46.795Z | user - Added "User-Agent": "openclaw/1.0.0" header to the recommended mcporter configuration in mcporter.json. - No other changes introduced. v1.0.2 | 2026-02-04T17:18:03.293Z | user - Skill renamed from "civic-nexus-community" to "civic-nexus". - M

Full README

Skill: Civic Nexus

Owner: TYRONEMICHAEL

Summary: Connect to Civic Nexus MCP for 100+ integrations.

Tags: latest:1.0.3

Version history:

v1.0.3 | 2026-02-06T03:37:46.795Z | user

  • Added "User-Agent": "openclaw/1.0.0" header to the recommended mcporter configuration in mcporter.json.
  • No other changes introduced.

v1.0.2 | 2026-02-04T17:18:03.293Z | user

  • Skill renamed from "civic-nexus-community" to "civic-nexus".
  • Minor setup instruction edits for clarity; variable names now reference YOUR_PROFILE instead of "default".
  • Community/affiliation disclaimers streamlined for brevity.
  • No code changes; documentation only.

v1.0.1 | 2026-02-04T02:37:33.011Z | user

  • Renamed skill to "civic-nexus-community" and updated description to clarify its unofficial, community-contributed status.
  • Added prominent disclaimer noting the skill is not endorsed, supported, or maintained by Civic Technologies.
  • Updated documentation and configuration examples to use the new skill name.
  • No functional changes to the skill interface or usage.

v1.0.0 | 2026-02-04T00:39:09.299Z | user

Initial release of nexus-mcp-bridge: connect OpenClaw to Civic Nexus for 100+ integrations.

  • Supports connections to Gmail, PostgreSQL, MongoDB, Box, and more via Civic Nexus MCP.
  • Two execution modes: uses mcporter CLI if available, falls back to a TypeScript script otherwise.
  • Setup requires specifying NEXUS_URL and NEXUS_TOKEN environment variables.
  • Includes instructions for OAuth authorization when needed.
  • Notes important usage details such as API latency, token expiration, and Gmail limits.

Archive index:

Archive v1.0.3: 4 files, 5100 bytes

Files: nexus-tool-runner.ts (9333b), package.json (650b), SKILL.md (2793b), _meta.json (130b)

File v1.0.3:SKILL.md


name: civic-nexus description: "Connect to Civic Nexus MCP for 100+ integrations." metadata: {"openclaw":{"requires":{"env":["NEXUS_URL","NEXUS_TOKEN"],"anyBins":["mcporter","npx"]},"primaryEnv":"NEXUS_TOKEN"}}

Civic Nexus MCP Bridge

⚠️ DISCLAIMER: Use at your own risk. For official documentation, visit docs.civic.com.

Connect to Civic Nexus for 100+ integrations including Gmail, PostgreSQL, MongoDB, Box, and more.

Setup

1. Get your Nexus credentials

  1. Go to nexus.civic.com and sign in
  2. Get your MCP URL and access token from your profile settings

2. Configure in OpenClaw

Add to ~/.openclaw/openclaw.json:

{
  "skills": {
    "entries": {
      "civic-nexus": {
        "enabled": true,
        "env": {
          "NEXUS_URL": "https://nexus.civic.com/hub/mcp?accountId=YOUR_ACCOUNT_ID&profile=YOUR_PROFILE",
          "NEXUS_TOKEN": "your-access-token"
        }
      }
    }
  }
}

3. (Optional) Configure mcporter

If you have mcporter installed (npm install -g mcporter), add to ~/.openclaw/workspace/config/mcporter.json:

{
  "mcpServers": {
    "nexus": {
      "baseUrl": "https://nexus.civic.com/hub/mcp?accountId=YOUR_ACCOUNT_ID&profile=YOUR_PROFILE",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN",
        "User-Agent": "openclaw/1.0.0"
      }
    }
  }
}

Instructions for the Agent

When the user asks to interact with external services through Nexus, try mcporter first. If it fails, fall back to the TypeScript script.

Using mcporter

# List tools
mcporter list nexus

# Search tools
mcporter list nexus | grep gmail

# Call a tool
mcporter call 'nexus.google-gmail-search_gmail_messages(query: "is:unread")'

Fallback: TypeScript script

# List tools
npx tsx {baseDir}/nexus-tool-runner.ts --list

# Search tools
npx tsx {baseDir}/nexus-tool-runner.ts --search gmail

# Get tool schema
npx tsx {baseDir}/nexus-tool-runner.ts --schema google-gmail-search_gmail_messages

# Call a tool
npx tsx {baseDir}/nexus-tool-runner.ts --call google-gmail-search_gmail_messages --args '{"query": "is:unread"}'

Authorization flows

Some tools require OAuth on first use. When you see an authorization URL:

  1. Show the URL to the user
  2. After they authorize, continue:
    # mcporter
    mcporter call 'nexus.continue_job(jobId: "JOB_ID")'
    
    # script
    npx tsx {baseDir}/nexus-tool-runner.ts --call continue_job --args '{"job_id": "JOB_ID"}'
    

Notes

  • API calls can take 10-15 seconds (server-side latency)
  • Tokens expire after ~30 days — regenerate from Nexus if needed
  • Gmail batch requests limited to 5-25 messages per call

File v1.0.3:_meta.json

{ "ownerId": "kn701fmx1ymaqcswj1vptp944980g0ng", "slug": "civic-nexus", "version": "1.0.3", "publishedAt": 1770349066795 }

File v1.0.3:package.json

{ "name": "civic-nexus", "version": "1.0.0", "description": "Connect any LLM to Civic Nexus MCP tools", "type": "module", "main": "nexus-tool-runner.ts", "scripts": { "start": "tsx nexus-tool-runner.ts", "list": "tsx nexus-tool-runner.ts --list", "search": "tsx nexus-tool-runner.ts --search", "call": "tsx nexus-tool-runner.ts --call" }, "keywords": [ "mcp", "nexus", "civic", "claude", "llm", "tools", "api" ], "author": "Civic", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.25.2", "tsx": "^4.19.0" }, "engines": { "node": ">=18.0.0" } }

Archive v1.0.2: 4 files, 5003 bytes

Files: nexus-tool-runner.ts (9152b), package.json (650b), SKILL.md (2753b), _meta.json (130b)

File v1.0.2:SKILL.md


name: civic-nexus description: "Connect to Civic Nexus MCP for 100+ integrations." metadata: {"openclaw":{"requires":{"env":["NEXUS_URL","NEXUS_TOKEN"],"anyBins":["mcporter","npx"]},"primaryEnv":"NEXUS_TOKEN"}}

Civic Nexus MCP Bridge

⚠️ DISCLAIMER: Use at your own risk. For official documentation, visit docs.civic.com.

Connect to Civic Nexus for 100+ integrations including Gmail, PostgreSQL, MongoDB, Box, and more.

Setup

1. Get your Nexus credentials

  1. Go to nexus.civic.com and sign in
  2. Get your MCP URL and access token from your profile settings

2. Configure in OpenClaw

Add to ~/.openclaw/openclaw.json:

{
  "skills": {
    "entries": {
      "civic-nexus": {
        "enabled": true,
        "env": {
          "NEXUS_URL": "https://nexus.civic.com/hub/mcp?accountId=YOUR_ACCOUNT_ID&profile=YOUR_PROFILE",
          "NEXUS_TOKEN": "your-access-token"
        }
      }
    }
  }
}

3. (Optional) Configure mcporter

If you have mcporter installed (npm install -g mcporter), add to ~/.openclaw/workspace/config/mcporter.json:

{
  "mcpServers": {
    "nexus": {
      "baseUrl": "https://nexus.civic.com/hub/mcp?accountId=YOUR_ACCOUNT_ID&profile=YOUR_PROFILE",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN"
      }
    }
  }
}

Instructions for the Agent

When the user asks to interact with external services through Nexus, try mcporter first. If it fails, fall back to the TypeScript script.

Using mcporter

# List tools
mcporter list nexus

# Search tools
mcporter list nexus | grep gmail

# Call a tool
mcporter call 'nexus.google-gmail-search_gmail_messages(query: "is:unread")'

Fallback: TypeScript script

# List tools
npx tsx {baseDir}/nexus-tool-runner.ts --list

# Search tools
npx tsx {baseDir}/nexus-tool-runner.ts --search gmail

# Get tool schema
npx tsx {baseDir}/nexus-tool-runner.ts --schema google-gmail-search_gmail_messages

# Call a tool
npx tsx {baseDir}/nexus-tool-runner.ts --call google-gmail-search_gmail_messages --args '{"query": "is:unread"}'

Authorization flows

Some tools require OAuth on first use. When you see an authorization URL:

  1. Show the URL to the user
  2. After they authorize, continue:
    # mcporter
    mcporter call 'nexus.continue_job(jobId: "JOB_ID")'
    
    # script
    npx tsx {baseDir}/nexus-tool-runner.ts --call continue_job --args '{"job_id": "JOB_ID"}'
    

Notes

  • API calls can take 10-15 seconds (server-side latency)
  • Tokens expire after ~30 days — regenerate from Nexus if needed
  • Gmail batch requests limited to 5-25 messages per call

File v1.0.2:_meta.json

{ "ownerId": "kn701fmx1ymaqcswj1vptp944980g0ng", "slug": "civic-nexus", "version": "1.0.2", "publishedAt": 1770225483293 }

File v1.0.2:package.json

{ "name": "civic-nexus", "version": "1.0.0", "description": "Connect any LLM to Civic Nexus MCP tools", "type": "module", "main": "nexus-tool-runner.ts", "scripts": { "start": "tsx nexus-tool-runner.ts", "list": "tsx nexus-tool-runner.ts --list", "search": "tsx nexus-tool-runner.ts --search", "call": "tsx nexus-tool-runner.ts --call" }, "keywords": [ "mcp", "nexus", "civic", "claude", "llm", "tools", "api" ], "author": "Civic", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.25.2", "tsx": "^4.19.0" }, "engines": { "node": ">=18.0.0" } }

API & Reliability

Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.

MissingCLAWHUB

Machine interfaces

Contract & API

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/trust"

Operational fit

Reliability & Benchmarks

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

Do not use if

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Machine Appendix

Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.

MissingCLAWHUB

Contract JSON

{
  "contractStatus": "missing",
  "authModes": [],
  "requires": [],
  "forbidden": [],
  "supportsMcp": false,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": null,
  "outputSchemaRef": null,
  "dataRegion": null,
  "contractUpdatedAt": null,
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "OPENCLEW"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "CLAWHUB",
      "generatedAt": "2026-04-17T05:11:18.424Z"
    }
  },
  "retryPolicy": {
    "maxAttempts": 3,
    "backoffMs": [
      500,
      1500,
      3500
    ],
    "retryableConditions": [
      "HTTP_429",
      "HTTP_503",
      "NETWORK_TIMEOUT"
    ]
  }
}

Trust JSON

{
  "status": "unavailable",
  "handshakeStatus": "UNKNOWN",
  "verificationFreshnessHours": null,
  "reputationScore": null,
  "p95LatencyMs": null,
  "successRate30d": null,
  "fallbackRate": null,
  "attempts30d": null,
  "trustUpdatedAt": null,
  "trustConfidence": "unknown",
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Capability Matrix

{
  "rows": [
    {
      "key": "OPENCLEW",
      "type": "protocol",
      "support": "unknown",
      "confidenceSource": "profile",
      "notes": "Listed on profile"
    }
  ],
  "flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}

Facts JSON

[
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Clawhub",
    "href": "https://clawhub.ai/TYRONEMICHAEL/civic-nexus",
    "sourceUrl": "https://clawhub.ai/TYRONEMICHAEL/civic-nexus",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T00:45:39.800Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-15T00:45:39.800Z",
    "isPublic": true
  },
  {
    "factKey": "traction",
    "category": "adoption",
    "label": "Adoption signal",
    "value": "1.7K downloads",
    "href": "https://clawhub.ai/TYRONEMICHAEL/civic-nexus",
    "sourceUrl": "https://clawhub.ai/TYRONEMICHAEL/civic-nexus",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T00:45:39.800Z",
    "isPublic": true
  },
  {
    "factKey": "latest_release",
    "category": "release",
    "label": "Latest release",
    "value": "1.0.3",
    "href": "https://clawhub.ai/TYRONEMICHAEL/civic-nexus",
    "sourceUrl": "https://clawhub.ai/TYRONEMICHAEL/civic-nexus",
    "sourceType": "release",
    "confidence": "medium",
    "observedAt": "2026-02-06T03:37:46.795Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-tyronemichael-civic-nexus/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[
  {
    "eventType": "release",
    "title": "Release 1.0.3",
    "description": "- Added \"User-Agent\": \"openclaw/1.0.0\" header to the recommended mcporter configuration in mcporter.json. - No other changes introduced.",
    "href": "https://clawhub.ai/TYRONEMICHAEL/civic-nexus",
    "sourceUrl": "https://clawhub.ai/TYRONEMICHAEL/civic-nexus",
    "sourceType": "release",
    "confidence": "medium",
    "observedAt": "2026-02-06T03:37:46.795Z",
    "isPublic": true
  }
]

Sponsored

Ads related to Civic Nexus and adjacent AI workflows.