CCM
/MCP
SkillsMCPMarketplacesDigestLearnAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Learn
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

ZS - Zobr Script

docxi-org/zobr-script
HTTP
Summary

This server connects Claude to ZS (Zobr Script), a formal language for LLM reasoning workflows. It exposes three tools: zs_execute injects the full spec and interpreter context so Claude can run .zobr scripts step by step, zs_validate runs the same PEG parser and semantic checks as the CLI tool, and zs_operations surfaces quick reference docs for the 12 cognitive operations (survey, ground, assert, doubt, contrast, synthesize, etc.). Reach for this when you want repeatable analytical patterns you can version control, audit variable flow in complex reasoning, or route structured cognitive work to smaller models. Scripts look like SQL for thinking: you define the operations, the LLM fills them with content.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Categories
AI & LLM Tools
TransportHTTP
UpdatedMar 14, 2026
View on GitHub

ZS — Zobr Script

ZS (Zobr Script)

A cognitive scripting language for structured reasoning with LLMs


ZS provides formal constructs for describing reasoning processes — not as rigid instructions, but as composable cognitive operations with variables, control flow, and result formatting.

Think of it as SQL for thinking: you define what cognitive steps to take, the LLM decides how to execute them.

Scripts are executed by an LLM as interpreter: the model reads a .zobr file, executes operations step by step, tracks variables, follows control flow, and produces structured output.

Quick Example

task: "Evaluate risks of AI in education"

risks = survey("main risks of AI in education", count: 4)
evidence = for r in risks {
  concrete = ground(r, extract: [examples, studies])
  yield { risk: r, evidence: concrete }
}
overview = synthesize(evidence, method: "rank by severity")

result = conclude {
  top_risks: list
  most_critical: string
  recommendation: string
  confidence: low | medium | high
}

12 Built-in Cognitive Operations

Operations are organized into five categories:

Discovery — explore and extract

OperationDescription
survey(topic, count?)Explore a topic and identify key elements — positions, factors, perspectives
ground(claim, extract?)Connect a claim to concrete evidence, facts, or experience

Argument — reason and challenge

OperationDescription
assert(thesis, based_on?)State a position with reasoning
doubt(target)Problematize a claim — find weaknesses, hidden assumptions, edge cases
contrast(target, with?)Find or construct the strongest opposing position or counterexample
analogy(target, from?)Transfer understanding from another domain to reveal hidden structure

Synthesis — combine and transform

OperationDescription
synthesize(sources, method?)Combine multiple findings into emergent insight (not just a summary)
reframe(target, lens?)Reformulate a problem in different terms, change the analytical lens

Meta — reflect and steer

OperationDescription
assess(scale?)Reflective pause — evaluate the current state of reasoning (open/converging/stuck)
pivot(reason)Explicitly change reasoning strategy when the current approach is insufficient
scope(narrow|wide)Control analytical zoom — from specific mechanisms to systemic connections

Output

OperationDescription
conclude { ... }Define the structure and format of the final result

Plus: variables, for/if/loop control flow, user-defined functions (define), yield, import, @last/@N references.

zobr-check — Static Validator

The package includes a CLI tool for static validation of .zobr scripts:

# Install from source
git clone https://github.com/docxi-org/zobr-script.git
cd zobr-script
npm install && npm run build

# Validate a script
node dist/cli.js script.zobr

The validator checks:

  • Syntax correctness (PEG grammar)
  • Undefined variable references
  • Correct operation signatures (positional/named argument counts)
  • Unused variables (warnings)
  • Reserved word misuse

How It Works

In the current version, a ZS script is executed by an LLM as interpreter:

  1. Provide the language spec and system prompt as context — together they define the full operation semantics, control flow rules, and output format
  2. Pass a .zobr script as the task
  3. The LLM executes operations step by step, tracking variables and following control flow
  4. Output is structured according to the conclude block

MCP Server

Connect ZS to Claude, Claude Desktop, or any MCP client — no installation needed.

MCP endpoint: https://zobr-script-mcp.docxi-next.workers.dev/mcp

In claude.ai: Settings → Connectors → Add custom connector → paste the URL above.

Tools provided:

  • zs_execute — feed a script, get full spec + interpreter context injected automatically
  • zs_validate — full PEG parser + semantic validation (same as zobr-check)
  • zs_operations — quick reference for all 12 operations

Also available on Smithery.

Benchmark Results

Tested with three Claude models across 5 tasks of increasing complexity:

ModelComposite ScoreStructural ComplianceContent QualityGeneration Quality
Claude Opus 4.69.4 / 109.89.49.0
Claude Sonnet 4.69.3 / 109.79.39.0
Claude Haiku 4.57.9 / 109.37.07.5

Key findings:

  • Structure compresses the capability gap: Sonnet achieves near-parity with Opus (9.3 vs 9.4) — when reasoning structure is provided by the script, the model's job shifts from organizing thought to filling containers with content
  • Even the smallest model follows scripts with 93% structural fidelity: ZS is a reasoning amplifier, not a capability test
  • All models generate valid scripts: Task 05 (script generation) produced 0 syntax errors across all models

Full results: benchmark report ・ infographic ・ на русском ・ инфографика

Use Cases

  • Repeatable analysis patterns — encode your best analytical workflow once as a .zobr script, apply it to any new input
  • Quality assurance for AI reasoning — auditable operations with visible variable flow, not black-box responses
  • Cost optimization via model routing — use smaller models for structural tasks, larger models only where depth matters
  • Knowledge capture — distill exceptional AI reasoning into reusable .zobr artifacts
  • Education & critical thinking — externalize the structure of rigorous thinking: survey before asserting, doubt your own claims, contrast with the strongest counter
  • Multi-agent cognitive workflows — scripts as shared protocols between agents

What ZS Is Not

  • Not a prompt template engine (see POML)
  • Not an LLM orchestration framework (see DSPy, LangChain)
  • Not chain-of-thought prompting

ZS operates at a different level: it formalizes cognitive operations themselves as first-class language constructs.

Documentation

  • Language Specification v0.1
  • System Prompt for LLM Interpreter
  • Test Tasks
  • Benchmark Report ・ на русском

Status

Spec v0.1. Benchmark complete (3 models × 5 tasks). Static validator shipped.

License

Apache License 2.0 — see LICENSE


Part of the Black Zobr ecosystem.

Related AI & LLM Tools MCP Servers

View all →
SkillFM LLM Cost Optimizer

io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage

LLM cost optimizer for OpenAI, Anthropic, token usage, BYOK, and SkillFM Beacon audits.
Llm Orchestration Agent

io.github.mikerawsonnz/llm-orchestration-agent

Run a prompt through a LangChain (system + human) chain over Gemini on Vertex AI; optional LangSmith
Authenticated Llm Agent

io.github.mikerawsonnz/authenticated-llm-agent

JWT-gated LLM gateway: authenticate (bcrypt/JWT), then run a LangChain-on-Vertex Gemini completion.
Copilot Memory MCP

labforgedev/copilot-memory-mcp

Persistent semantic memory for AI agents using local ChromaDB vector search. No cloud required.
1
Agent Prompt Injection Firewall Mcp

csoai-org/agent-prompt-injection-firewall-mcp

The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Authenticated Multi Llm Agent

io.github.mikerawsonnz/authenticated-multi-llm-agent

Google-OAuth-gated LLM gateway: verify a Google ID token, then run a Gemini (Vertex AI) completion f