# io.github.shofer-dev/slang-workflows (npm · slang-workflows)

Provable, declarative multi-agent workflows for Claude Code (typed .slang, non-LLM executor).

- Trust score: 34/100 (low)
- Change this week: +10
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `slang-workflows`: 34/100 (this document), [markdown](https://verifymcp.io/servers/shofer-dev-slang-workflows/slang-workflows.md), [page](https://verifymcp.io/servers/shofer-dev-slang-workflows/slang-workflows)

## Channel facts

- Registry: `npm`
- Package: `slang-workflows`
- Version: `0.1.2`
- 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-08-03.

- **Supply Chain Security**: 83/100
  - No malware found by supply-chain analysis.
  - CVE check failed: a known medium-severity CVE affects @hono/node-server 1.19.17, reached via @modelcontextprotocol/sdk > @hono/node-server. A fixed version is available.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (104 of 108), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (Apache-2.0).
  - Actively maintained (last published 28 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 0/100
  - Schema quality not yet verified: our sandbox run of this package did not complete, so we have no schema to assess.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: our sandbox run of this package did not complete, so we have no schema to compare.
- **Tool Coverage**: 0/100
  - Tool coverage not yet verified: our sandbox run of this package did not complete, so we have no tool definitions to assess.
- **Capabilities**: 0/100
  - Protocol version not yet verified: our sandbox run of this package did not complete, so we never saw its MCP handshake.

**Unverified: 4 categories.** Categories scored 0 because our sandbox run of this package has not given us the schema these checks need to read. That is a gap on our side rather than a finding about the package, and we only credit what we can confirm, so the score stands at 0 until the capture succeeds. We are working through the fleet, so this normally clears without any action from you.

## Install

### Claude

```bash
claude mcp add shofer-dev-slang-workflows -- npx -y slang-workflows
```

### Codex

```bash
codex mcp add shofer-dev-slang-workflows -- npx -y slang-workflows
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "shofer-dev-slang-workflows": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "slang-workflows"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add shofer-dev-slang-workflows --command npx --arg -y --arg slang-workflows
```

### Hermes

```yaml
mcp_servers:
  shofer-dev-slang-workflows:
    command: "npx"
    args: ["-y", "slang-workflows"]
```

### Other

```json
{
  "mcpServers": {
    "shofer-dev-slang-workflows": {
      "command": "npx",
      "args": [
        "-y",
        "slang-workflows"
      ]
    }
  }
}
```

## 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-08-02 (score 34, +29)

- [security regression] GHSA-frvp-7c67-39w9 affects this package: medium
- [security regression] Provenance: unverified → fail
- [security regression] Known CVEs: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: our sandbox run of this package did not complete, so we have no schema to compare.
- [functional improvement] License: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional] Tool coverage: Tool coverage not yet verified: our sandbox run of this package did not complete, so we have no tool definitions to assess.
- [functional] Schema quality: Schema quality not yet verified: our sandbox run of this package did not complete, so we have no schema to assess.
- [functional] Capabilities: Protocol version not yet verified: our sandbox run of this package did not complete, so we never saw its MCP handshake.
- [functional] Licence: Apache-2.0

### 2026-08-01 (score 5, 0)

- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [functional] Capabilities: Protocol version not yet verified: we do not have a sandbox capture of the MCP handshake this version of the package performs yet.
- [functional] Tool coverage: Tool coverage not yet verified: we do not have a sandbox capture of the tool definitions this version of the package serves yet.
- [functional] Schema quality: Schema quality not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.

### 2026-07-31 (score 5, −1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 6, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 24)

First indexed and scored.

## MCP tools (7)

### `list_workflows` (~49 tokens)

List workflows

Discover .slang workflow files in the project (.claude/workflows/) and global (~/.claude/workflows/) directories. Returns each flow's name, title, params, and agent count.

### `get_slang_grammar` (~67 tokens)

Get slang grammar

Return a concise slang grammar cheatsheet (constructs + a complete example) so you can GENERATE a workflow on the fly and run it inline via run_workflow(source). Validate generated source with validate_workflow(source) first; run_workflow also rejects parse/static-analysis errors.

### `validate_workflow` (~112 tokens)

Validate workflow

Parse and statically analyze one workflow (deadlock detection, unknown refs, missing converge/budget, orphan outputs) without running it. Identify it by `name` or absolute `path`.

Input parameters:

- `name` (string): Flow name or .slang filename (project scope preferred).
- `path` (string): Absolute path to a .slang file (overrides `name`).
- `source` (string): Inline .slang source to validate (overrides name/path) — validate generated flows before running.

### `run_workflow` (~264 tokens)

Run workflow

Parse and run a .slang workflow to completion, dispatching each agent through the Claude Agent SDK and validating results against output contracts. Identify it by `name` or `path`; pass flow `params` as an object. Returns the final flow status and each agent's output. Rejects parse/static-analysis errors before running. Default runs synchronously (returns the final status + each agent's output). Pass background:true to start the run and return a workflow_id immediately, then poll get_trace/get_topology/get_workflow_state to watch it live; @Human escalation only works in synchronous runs.

Input parameters:

- `background` (boolean): Start the run and return a workflow_id immediately, then poll get_trace/get_topology/get_workflow_state. (@Human escalation unsupported in background.)
- `model` (string): Default model for agents without api_configuration (e.g. sonnet).
- `name` (string): Flow name or .slang filename.
- `params` (object): Flow parameters as a key/value object.
- `path` (string): Absolute path to a .slang file (overrides `name`).
- `source` (string): Inline .slang source (overrides name/path) — e.g. a workflow an LLM generated on the fly.

### `get_workflow_state` (~64 tokens)

Get workflow state

Return the serialized FlowState for a run started by `run_workflow`: per-agent status, opIndex, bindings, round, budget usage, and flow status. Identify it by `workflow_id`.

Input parameters:

- `workflow_id` (string, required): Id returned by run_workflow.

### `get_topology` (~61 tokens)

Get workflow topology (Mermaid)

Return the current agent topology of a run as a Mermaid flowchart (nodes colored by status, plus live sending/waiting edges). Render it inline. Identify it by `workflow_id`.

Input parameters:

- `workflow_id` (string, required): Id returned by run_workflow.

### `get_trace` (~87 tokens)

Get workflow trace (Mermaid sequence + event log)

Return a run's execution trace as a Mermaid `sequenceDiagram` (round-by-round: who staked/routed to whom, commits, escalations, terminal event) plus the raw event log. The timeline counterpart to `get_topology`'s snapshot. Render the diagram inline. Identify it by `workflow_id`.

Input parameters:

- `workflow_id` (string, required): Id returned by run_workflow.

## Diagnostics

Captured diagnostic sections: Provenance, Vulnerabilities, Dependencies. The full working is on the page: https://verifymcp.io/servers/shofer-dev-slang-workflows/slang-workflows#diagnostics

## Score history

- 2026-08-03: 34
- 2026-08-02: 34
- 2026-08-01: 5
- 2026-07-31: 5
- 2026-07-30: 6
- 2026-07-28: 24
- 2026-07-27: 24

## Links

- npm package: https://www.npmjs.com/package/slang-workflows
- Socket report: https://socket.dev/npm/package/slang-workflows
- Repository: https://github.com/shofer-dev/claude-code-slang-orchestrator
- Changelog RSS feed: https://verifymcp.io/servers/shofer-dev-slang-workflows/slang-workflows/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/shofer-dev-slang-workflows/slang-workflows/changelog.json
- HTML version of this page: https://verifymcp.io/servers/shofer-dev-slang-workflows/slang-workflows
