# ContextOS — Powered Exoskeleton for AI Coding (oci · ghcr.io/yubinbin32-ops/contextos:2.5.1)

Powered exoskeleton for AI coding: auto-governs context via MCP to cut 90%+ context waste.

- Trust score: 7/100 (low)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-21

## Components

- oci · `ghcr.io/yubinbin32-ops/contextos:2.5.1`: 7/100 (this document), [markdown](https://verifymcp.io/servers/yubinbin32-ops-contextos/ghcr-io-yubinbin32-ops-contextos-2-5-1.md), [page](https://verifymcp.io/servers/yubinbin32-ops-contextos/ghcr-io-yubinbin32-ops-contextos-2-5-1)

## Channel facts

- Registry: `oci`
- Package: `ghcr.io/yubinbin32-ops/contextos:2.5.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-09-21.

- **Supply Chain Security**: 0/100
  - Malware scan not yet available for this package.
  - Known CVEs could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.
  - Install-script risk not yet assessed.
  - Dependency health could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.
- **Provenance & Transparency**: 35/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - License check failed: no license is declared.
  - Actively maintained (last published 0 days ago).
  - Publishes a security disclosure policy (SECURITY.md).
- **Schema Quality & AI Usability**: 0/100
  - Schema quality not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- **Tool Coverage**: 0/100
  - Tool coverage not yet verified: we do not have a sandbox capture of the tool definitions this version of the package serves yet.
- **Tool Safety**: 0/100
  - Tool safety not yet verified: we do not have a sandbox capture of the tool definitions this version of the package serves yet.
- **Capabilities**: 0/100
  - Protocol version not yet verified: we do not have a sandbox capture of the MCP handshake this version of the package performs yet.

**Unverified: 6 categories.** Categories scored 0 because we could not verify them: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### How do I install the ContextOS — Powered Exoskeleton for AI Coding MCP server?

ContextOS — Powered Exoskeleton for AI Coding runs locally as a container image, launched with docker run --rm -i ghcr.io/yubinbin32-ops/contextos:2.5.1. Ready-made configuration for Claude, Cursor, VS Code, Codex and 3 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add yubinbin32-ops-contextos -- docker run --rm -i ghcr.io/yubinbin32-ops/contextos:2.5.1
```

### Cursor

```json
{
  "mcpServers": {
    "yubinbin32-ops-contextos": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/yubinbin32-ops/contextos:2.5.1"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "yubinbin32-ops-contextos": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/yubinbin32-ops/contextos:2.5.1"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add yubinbin32-ops-contextos -- docker run --rm -i ghcr.io/yubinbin32-ops/contextos:2.5.1
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "yubinbin32-ops-contextos": {
      "type": "local",
      "command": [
        "docker",
        "run",
        "--rm",
        "-i",
        "ghcr.io/yubinbin32-ops/contextos:2.5.1"
      ],
      "enabled": true
    }
  }
}
```

### Hermes

```yaml
mcp_servers:
  yubinbin32-ops-contextos:
    command: "docker"
    args: ["run", "--rm", "-i", "ghcr.io/yubinbin32-ops/contextos:2.5.1"]
```

### Netclaw

```json
{
  "McpServers": {
    "yubinbin32-ops-contextos": {
      "Transport": "stdio",
      "Command": "docker",
      "Arguments": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/yubinbin32-ops/contextos:2.5.1"
      ]
    }
  }
}
```

### Other

```json
{
  "mcpServers": {
    "yubinbin32-ops-contextos": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/yubinbin32-ops/contextos:2.5.1"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-09-21 (score 7)

First indexed and scored.

## MCP tools (5)

### `explore` (~98 tokens)

Understand, locate or resume. The OS inspects git state, picks candidate modules, outlines symbols and injects the applicable rules, all inside one context budget.

Input parameters:

- `depth` (string)
- `intent` (string, required): What you want to understand or find, in plain language.
- `paths` (array): Optional file paths to focus on instead of letting the OS infer them.
- `projectRoot` (string, required): Absolute path of the active workspace.

### `change` (~142 tokens)

Modify or create code. The OS locates the anchor, applies a surgical AST edit, re-anchors symbols and records the touched files.

Input parameters:

- `create` (array)
- `depth` (string)
- `dryRun` (boolean): true to preview edits without writing files, touching the session, or running verification.
- `edits` (array): Surgical replacements. `target` must uniquely match existing text (or pass symbol/startLine/endLine).
- `intent` (string): What the change should accomplish.
- `paths` (array): Used for a read-only preview when no edits are supplied.
- `projectRoot` (string, required): Absolute path of the active workspace.

### `verify` (~121 tokens)

Prove the change runs. With no commands the OS uses .contextos/profile.json or package.json scripts. Output stays out of context; only receipts and failures come back.

Input parameters:

- `command` (string)
- `commands` (array)
- `cwd` (string)
- `grep` (string)
- `id` (string)
- `lines` (number)
- `maxChars` (number)
- `mode` (string)
- `projectRoot` (string, required): Absolute path of the active workspace.
- `timeoutMs` (number)

### `ship` (~114 tokens)

Close the loop: collect touched files and receipts, optionally verify first, export the architecture graph and archive the session.

Input parameters:

- `decision` (object)
- `dryRun` (boolean): true to preview the planned closure (touched files + receipts) without closing the session, writing history or exporting the graph.
- `projectRoot` (string, required): Absolute path of the active workspace.
- `summary` (string): What changed and why; archived with the session.
- `verify`: true to run profile commands, or an explicit list.

### `ops` (~72 tokens)

Manual passthrough to the internal capabilities (legacy facades, session, profile, system). Use only when the intent-level tools are not enough.

Input parameters:

- `action` (string)
- `args` (object)
- `capability` (string, required)
- `projectRoot` (string, required): Absolute path of the active workspace.

## Diagnostics

Captured diagnostic sections: Provenance. The full working is on the page: https://verifymcp.io/servers/yubinbin32-ops-contextos/ghcr-io-yubinbin32-ops-contextos-2-5-1#diagnostics

## Score history

- 2026-09-21: 7

## Common questions

### What is the ContextOS — Powered Exoskeleton for AI Coding MCP server?

ContextOS — Powered Exoskeleton for AI Coding is an MCP server listed in the public MCP registry as io.github.yubinbin32-ops/contextos. Powered exoskeleton for AI coding: auto-governs context via MCP to cut 90%+ context waste. This page covers its container image (ghcr.io/yubinbin32-ops/contextos:2.5.1).

### Is the ContextOS — Powered Exoskeleton for AI Coding MCP server safe to use?

ContextOS — Powered Exoskeleton for AI Coding scores 7 out of 100 on VerifyMCP. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the ContextOS — Powered Exoskeleton for AI Coding MCP server expose?

ContextOS — Powered Exoskeleton for AI Coding exposes 5 tools: explore, change, verify, ship, ops. Their descriptions and schemas cost roughly 547 tokens of context every time the server is loaded.

### Is the ContextOS — Powered Exoskeleton for AI Coding MCP server still maintained?

ContextOS — Powered Exoskeleton for AI Coding is still listed as active in the MCP registry. We last reached this channel on 21 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

## Links

- Repository: https://github.com/yubinbin32-ops/ContextOS
- Changelog RSS feed: https://verifymcp.io/servers/yubinbin32-ops-contextos/ghcr-io-yubinbin32-ops-contextos-2-5-1.xml
- Changelog JSON feed: https://verifymcp.io/servers/yubinbin32-ops-contextos/ghcr-io-yubinbin32-ops-contextos-2-5-1.json
- HTML version of this page: https://verifymcp.io/servers/yubinbin32-ops-contextos/ghcr-io-yubinbin32-ops-contextos-2-5-1
