zeroclaw: Skill for Claude Code

.claude/skills/feature-matrix-parity/SKILL.md

feature-matrix-parity is a skill for Claude Code from zeroclaw-labs/zeroclaw. It costs 127 tokens per session (2,451 once invoked), scanned A, original, Apache-2.0.

A workflow for updating ZeroClaw's feature comparison matrix. The matrix compares ZeroClaw with OpenClaw and Hermes, two other software projects, across supported features.

In plain words
What is it for?
Use it to refresh support data, verify competitor capabilities, and add comparison rows or sections to the feature matrix.
Why use it?
It keeps comparison claims tied to evidence in the competing projects' source code instead of guesses based on names or folders. This makes the documentation easier to review and update.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: built for openclaw.

This is zeroclaw-labs/zeroclaw's own configuration. It tells Claude Code how to work on zeroclaw itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything zeroclaw configures →

About the project

ZeroClaw is a Rust-based runtime for running a personal AI assistant on a user's own machine, with connections to language-model providers, communication channels, and external tools. It is for people who want to operate an assistant across channels such as Discord, Telegram, email, voice, webhooks, or a command line while keeping control of its data and credentials. The catalogue add-ons provide workflows and agents for using ZeroClaw.

zeroclaw-labs/zeroclaw · 32,755 stars · on GitHub · zeroclaw.com

Reuse

Borrowing it

Nothing to install: this file belongs to zeroclaw-labs/zeroclaw. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/zeroclaw-labs/zeroclaw/master/.claude/skills/feature-matrix-parity/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/zeroclaw-labs/zeroclaw

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for feature-matrix-parity

README.md
[![agentmods](https://agentmods.dev/badge/skills/zeroclaw-labs/zeroclaw/feature-matrix-parity/github.svg)](https://agentmods.dev/skills/zeroclaw-labs/zeroclaw/feature-matrix-parity)
Your own site
<a href="https://agentmods.dev/skills/zeroclaw-labs/zeroclaw/feature-matrix-parity"><img src="https://agentmods.dev/badge/skills/zeroclaw-labs/zeroclaw/feature-matrix-parity/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for feature-matrix-parity

Your own site · 80×15
<a href="https://agentmods.dev/skills/zeroclaw-labs/zeroclaw/feature-matrix-parity"><img src="https://agentmods.dev/badge/skills/zeroclaw-labs/zeroclaw/feature-matrix-parity.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 127 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,451 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Snyk warn 7 Sept 2026
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00127 $0.02451
Opus 5 $0.00063 $0.01226
Sonnet 5 $0.00025 $0.00490
Haiku 4.5 $0.00013 $0.00245

Measured 11d ago against content hash 09fa47e7c2e2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

feature-matrix-parity scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s "http://127.0.0.1:3000/en/reference/feature-matrix.html" -o /tmp/fm-live.html
.claude/skills/feature-matrix-parity/SKILL.md · 208 lines

How it starts

The opening of the file, as written. The whole thing — 208 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ZeroClaw Feature Matrix Parity

You maintain the two competitor columns (OpenClaw, Hermes) of the feature and support matrix at docs/book/src/reference/feature-matrix.md. The ZeroClaw column is walked from the binary's own registries at docs-build time and is never hand-edited. Only the external columns live in docs/book/feature-matrix-parity.toml, and that file is the single reviewable source for every parity fact.

The cardinal rule: every cell you write is source-walked from the competitor's actual tree, never inferred from a folder name, an alias, or memory. A directory called signal is not proof of Signal support; the implementing module is.

Clone URLs

Both repositories are recorded in the parity TOML header (the Sources block). Read them from there so there is one source of truth:

  • OpenClaw: https://github.com/openclaw/openclaw
  • Hermes: https://github.com/NousResearch/hermes-agent

Always shallow-clone. These trees are large (OpenClaw ~340MB, Hermes ~200MB even shallow) and full history is never needed for a registry walk:

git clone --depth 1 https://github.com/openclaw/openclaw /tmp/parity-openclaw
git clone --depth 1 https://github.com/NousResearch/hermes-agent /tmp/parity-hermes

Clone both in parallel, and delete both when finished. For a quick single-file spot-check without a full clone, the GitHub contents API reads any tree file directly, which is enough to confirm one module's existence:

gh api "repos/openclaw/openclaw/contents/<path>" --jq '.content' | base64 -d

Status vocabulary

Cells use the page legend exactly: supported, partial, experimental, planned, none, unknown. The verdict turns on what the tree actually wires and runs, not on what a module merely defines. Finding a named module is necessary but not sufficient: before calling a cell supported, rule out the downgrade patterns below.

  • supported when the tree ships a first-class module for it AND it is wired into a real path and on by default. A module that exists but fails one of the downgrade patterns below is not supported; it is partial or none per those rules.
  • partial when support is real but qualified. Use it when the module is:
    • reachable only through a generic gateway rather than a dedicated module, or
    • covers a subset of the surface, or
    • default-off / opt-in (present but disabled unless explicitly enabled; read the config defaults, not just that the code path exists), or
    • selectively wired (live on some trigger/transport paths, dead on others).
  • none when the tree has no equivalent, OR the only match is defined-but-dead (a module with no non-test callers) or a degraded/orphan path (it starts but produces no end-to-end behavior). A directory name or alias is not a match; the implementing, called module is.
  • Leave a walked ZeroClaw row with no TOML entry to render unknown; fill it in as parity is confirmed rather than guessing.

Read the full file on GitHub · 208 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 208 lines · 127 tokens per session scan A 09fa47e7c2e2

Subscribe to this mod's changes

feature-matrix-parity is a skill published in the GitHub repository zeroclaw-labs/zeroclaw (32,755 stars, last pushed today), licensed Apache-2.0. It adds 127 tokens to every session and 2,451 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

trello

Manages Trello boards, lists, and cards via the Trello REST API. Use when the user wants to create cards, move tasks between lists, list boards, add comments, archive cards, or check what is on a Trello board. Handles authentication, pagination, and rate-limit awareness for all Trello REST endpoints.

elizaOS/eliza · 69 tokens

things-mac

Manage Things 3 via the things CLI on macOS (add/update projects+todos via URL scheme; read/search/list from the local Things database). Use when a user asks Otto to add a task to Things, list inbox/today/upcoming, search tasks, or inspect projects/areas/tags.

elizaOS/eliza · 67 tokens

00-async-dev

Drive the async-dev pipeline from one entry point, whether setup, run, or review. Use when the user wants to install async dev, run a ready issue, or address PR review comments, or on a webhook trigger. Not for plain status checks.

ai-driven-dev/framework · 56 tokens

01-sdlc

Autonomously orchestrates a request from framing to a draft pull request, isolating implementation, independent review, and final outcome challenge. Use when the user wants to deliver a change end to end. Not for running one development step.

ai-driven-dev/framework · 52 tokens

02-backlog

Orchestrates a product backlog end to end. Use when the user wants to ask what it holds, or to run intake, triage, refinement, review, lifecycle events, ordering, health checks, or repair. Not for one known artifact step.

ai-driven-dev/framework · 55 tokens

02-user-stories

Produces or refines ordered User Stories from an Epic, Product Brief, PRD, or bounded request. Use when the user wants to slice, write, assess, order, or persist Stories. Not for Epics or implementation.

ai-driven-dev/framework · 51 tokens