meerkat: Skill for Claude Code

.claude/skills/meerkat-platform/SKILL.md

meerkat-platform is a skill for Claude Code from lukacf/meerkat. It costs 133 tokens per session (18,384 once invoked), scanned A, original, Apache-2.0.

A guide to Meerkat, a library for running AI agents through command-line, web, API, SDK, and MCP interfaces. It covers sessions, memory, streaming, hooks, and multiple agents.

In plain words
What is it for?
It is for building agent applications, managing sessions and memory, streaming results, scheduling work, and coordinating multiple agents.
Why use it?
It explains how the platform shares or isolates state and how its different execution surfaces work.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is lukacf/meerkat's own configuration. It tells Claude Code how to work on meerkat 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 meerkat configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is rkat mob pack ./mobs/release-triage -o ./dist/release-triage.mobpack \.

Reuse

Borrowing it

Nothing to install: this file belongs to lukacf/meerkat. 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/lukacf/meerkat/main/.claude/skills/meerkat-platform/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/lukacf/meerkat

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 meerkat-platform

README.md
[![agentmods](https://agentmods.dev/badge/skills/lukacf/meerkat/meerkat-platform/github.svg)](https://agentmods.dev/skills/lukacf/meerkat/meerkat-platform)
Your own site
<a href="https://agentmods.dev/skills/lukacf/meerkat/meerkat-platform"><img src="https://agentmods.dev/badge/skills/lukacf/meerkat/meerkat-platform/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 meerkat-platform

Your own site · 80×15
<a href="https://agentmods.dev/skills/lukacf/meerkat/meerkat-platform"><img src="https://agentmods.dev/badge/skills/lukacf/meerkat/meerkat-platform.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 133 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 18,384 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 3 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 208
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 216
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 579
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
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.00133 $0.18384
Opus 5 $0.00067 $0.09192
Sonnet 5 $0.00027 $0.03677
Haiku 4.5 $0.00013 $0.01838

Measured today against content hash 351e1d7d5f49, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

meerkat-platform scanned grade A with 0 findings 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 today.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/meerkat-platform/SKILL.md · 1,185 lines

How it starts

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

Meerkat Platform Guide

Meerkat (rkat) is a library-first agent runtime exposed through multiple surfaces. One execution pipeline, realm-scoped state, runtime-backed semantics by default. This guide is task-oriented; deeper schemas live under references/.

References:

  • references/api_reference.md — per-surface methods, schemas, examples (CLI, REST, RPC, MCP, Python/TS/Rust SDKs).
  • references/mobs.md — multi-agent orchestration in depth.
  • references/migration_0_5.md — only if you're upgrading from 0.5 (host_modekeep_alive, etc.).

Realm-first model

realm_id is the logical sharing key across all surfaces.

  • Same realm_id plus the same physical storage provider/root => shared sessions and state.
  • Different realm_id => strict STATE isolation (sessions, stores, event logs are realm-local).
  • Backend (sqlite, jsonl, or feature-gated ephemeral memory) is pinned per realm in realm_manifest.json.

Config inheritance (state still never inherits):

  • A realm config doc may declare a parent ([realm.<id>] parent = "<other>"). Resolution walks the requested head, its parent chain, and an optional configured global tail. The reserved global root uses the single HOME-rooted ~/.rkat/config.toml. There is no flat sibling scan and no literal default realm.
  • CONFIG inherits down the chain: models, mcp servers, hooks, skills, limits, and auth bindings. Surfaces compose the effective config over the head realm on the agent-build path, so inheritance applies everywhere, not just to auth.
  • Credential READS inherit (a child resolves a binding defined in a parent or global); a resolved binding's owning realm is where it is DEFINED. Credential WRITES are strict-owner - callers must explicitly target the owner, and child-addressed inherited writes are rejected. Config get/set/patch instead read or mutate only the selected raw head doc; effective composition happens later on the agent-build path, so inherited entries are never flattened into a child automatically.
  • Children may add/override but cannot remove inherited mcp/hook entries (no tombstones).

Read the full file on GitHub · 1,185 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. today Changed 351e1d7d5f49
  2. yesterday Changed 138332e64f76
  3. 3d ago Changed aa585c8c6a8d
  4. 4d ago Changed b0cf4cd392b1
  5. 5d ago Changed 6592ab290678
  6. 9d ago First seen · 1,185 lines · 133 tokens per session scan A da23a3d4823e

Subscribe to this mod's changes

meerkat-platform is a skill published in the GitHub repository lukacf/meerkat (20 stars, last pushed today), licensed Apache-2.0. It adds 133 tokens to every session and 18,384 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. 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

write-microflows

Microflow syntax reference in MDL — every activity type, control flow, expressions, and the mistakes that fail mxcli check. Use before writing any CREATE MICROFLOW, and when debugging a microflow syntax error.

mendixlabs/mxcli · 49 tokens

java-actions

Create and call custom Java actions — extending Mendix with server-side Java, and invoking those actions from microflows in MDL. Use when logic needs a Java library, an algorithm microflows cannot express, or an integration only available in Java.

mendixlabs/mxcli · 52 tokens

json-structures-and-mappings

Create and manage JSON structures, import mappings and export mappings in MDL, plus the domain-model shapes they map onto. Use when turning a JSON payload into entities, mapping a REST or queue response, or exporting objects as JSON.

mendixlabs/mxcli · 53 tokens

database-connections

Connect a Mendix app to an external database over JDBC with the External Database Connector, and define the queries microflows run against it. Use when the app must read or write Oracle, PostgreSQL, MySQL or SQL Server directly from a microflow.

mendixlabs/mxcli · 55 tokens

migrate-k2-nintex

Assess and migrate K2 / Nintex K2 applications to Mendix — SmartObjects to domain models, SmartForms to pages, K2 workflows to microflows and Mendix workflows. Use when analysing or converting a K2 application.

mendixlabs/mxcli · 55 tokens

migrate-oracle-forms

Assess and migrate Oracle Forms applications to Mendix — .fmb forms to pages, PL/SQL to microflows, and a staged migration strategy. Use when analysing or converting an Oracle Forms system.

mendixlabs/mxcli · 47 tokens