zymtrace-skills: Instructions file for Claude Code

CLAUDE.md

zymtrace-skills CLAUDE.md is an instructions file for Claude Code from zystem-io/zymtrace-skills. It costs 1,920 tokens per session, scanned A, original, Apache-2.0.

A development guide for zymtrace-skills, a set of skills for installing, updating, exposing, troubleshooting, and analysing zymtrace, a continuous CPU and GPU profiling tool. It explains the repository structure and development conventions.

In plain words
What is it for?
Use it when developing or maintaining the zymtrace skills plugin for Claude Code, OpenAI Codex, or Cursor.
Why use it?
It gives developers one place to understand how the skills, plugin manifests, shared documents, and tests fit together.

Instructions file for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: reads .claude/ paths; mentions Claude Code; mentions Codex.

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

Runs only inside a plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else, and the catalogue could not identify which plugin ships it.

Reuse

Borrowing it

Nothing to install: this file belongs to zystem-io/zymtrace-skills. 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/zystem-io/zymtrace-skills/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/zystem-io/zymtrace-skills

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 zymtrace-skills CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/zystem-io/zymtrace-skills/claude-md/github.svg)](https://agentmods.dev/instructions/zystem-io/zymtrace-skills/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/zystem-io/zymtrace-skills/claude-md"><img src="https://agentmods.dev/badge/instructions/zystem-io/zymtrace-skills/claude-md/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 zymtrace-skills CLAUDE.md

Your own site · 80×15
<a href="https://agentmods.dev/instructions/zystem-io/zymtrace-skills/claude-md"><img src="https://agentmods.dev/badge/instructions/zystem-io/zymtrace-skills/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 1,920 This file is loaded in full into every session.
When invoked 1,920 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.01920 $0.01920
Opus 5 $0.00960 $0.00960
Sonnet 5 $0.00384 $0.00384
Haiku 4.5 $0.00192 $0.00192

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

Security

Grade A, and why

zymtrace-skills CLAUDE.md 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 9d 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.

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.md · 146 lines

How it starts

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

zymtrace-skills — Development Guide

Claude Code skills for installing, upgrading, exposing, troubleshooting, and analyzing zymtrace — continuous CPU/GPU profiling. This guide is for people developing the skills; end-user docs live in README.md.

Repository structure

A single plugin at zymtrace/ that installs into Claude Code, OpenAI Codex, and Cursor from one canonical source, plus repo-root marketplace manifests (one per tool) and the test suite.

.claude-plugin/marketplace.json   # Claude Code marketplace manifest
.agents/plugins/marketplace.json  # Codex (and generic) marketplace manifest
.cursor-plugin/marketplace.json   # Cursor marketplace manifest
zymtrace/                         # Plugin root  (== ${CLAUDE_PLUGIN_ROOT} at runtime)
  .claude-plugin/plugin.json      # Claude Code plugin manifest
  .codex-plugin/plugin.json       # Codex plugin manifest  (declares "skills": "./skills/")
  .cursor-plugin/plugin.json      # Cursor plugin manifest (declares "skills": "./skills/")
  shared/                         # Cross-skill docs (conventions.md, references.md)
  skills/<skill-name>/            # THE canonical source — every tool reads these
    SKILL.md                      # Required. Frontmatter + workflow.
    reference.md                  # Optional. Deep details for progressive disclosure.
    scripts/*.sh                  # Optional. Verify/diagnose helpers (executable).
    values/*.yaml                 # Optional. Helm values templates.
tests/                           # Structural pytest suite (no API keys / cluster)

Key conventions

  • Versions stay in sync — the repo-root VERSION file is the single source of truth. The plugin is the versioned unit; skills carry no version. All three product plugin.json files (.claude-plugin/, .codex-plugin/, .cursor-plugin/) and the Claude marketplace.json plugin entry must match VERSION. Don't hand-edit them — run ./scripts/sync-version.sh (or ./scripts/sync-version.sh <new> to bump) to propagate, then make test to enforce it (test_version_file_is_source_of_truth).
  • Multi-platform manifests are hand-written, not generated. One canonical source (zymtrace/skills/); each tool gets its own plugin.json (inside zymtrace/) and a repo-root marketplace file, all pointing at the same skills/. They differ only in per-tool metadata and field names. zymtrace bundles no MCP server, no hooks, no commands — the MCP is connected separately via configure-zymtrace-mcp and the gateway URL is per-deployment, so Codex install authentication is NONE. The product maps PRODUCT_PLUGIN_JSONS / PRODUCT_MARKETPLACE_JSONS in tests/conftest.py drive the structural tests that catch drift. Codex reads .agents/plugins/marketplace.json; Cursor reads .cursor-plugin/marketplace.json.
  • Intra-plugin paths use ${CLAUDE_PLUGIN_ROOT}, never bare relative paths. Skills run with the user's working directory, not the skill directory, as cwd. Any script the skill runs or reference file it reads must be addressed as ${CLAUDE_PLUGIN_ROOT}/skills/<skill>/scripts/<x>.sh / ${CLAUDE_PLUGIN_ROOT}/skills/<skill>/reference.md. Enforced by tests/structural/test_paths.py. (Markdown navigation links between skills, e.g. [expose-zymtrace-backend](../expose-zymtrace-backend/SKILL.md), may stay relative — the agent resolves those when reading a known file.)
  • Scripts are executable (chmod +x) and invoked as bash ${CLAUDE_PLUGIN_ROOT}/....
  • Skill name == directory name.
  • Frontmatter is just name and description (with Trigger phrases:) — the only fields skills use. No metadata block (author/repository/keywords live in plugin.json); no per-skill version (the plugin is the versioned unit).
  • Secrets never touch disk or chat — see each skill's ## Security constraints.
  • Helm conventions (namespace/release resolution, the single canonical values file, --reset-then-reuse-values, backups) are centralized in zymtrace/shared/conventions.md; skills link back to it rather than repeating it.

Read the full file on GitHub · 146 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. 9d ago First seen · 146 lines · 1,920 tokens per session scan A 2aa0b2c50552

Subscribe to this mod's changes

zymtrace-skills CLAUDE.md is an instructions file published in the GitHub repository zystem-io/zymtrace-skills (5 stars, last pushed 25d ago), licensed Apache-2.0. It adds 1,920 tokens to every session, about $0.0096 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-31.

Related

Other instructions, from other repositories

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

deepseek-harness AGENTS.md

AGENTS.md instructions for deepseek-ai/deepseek-harness, covering agents.md, pre-stable apis and released session data, repository layout, commands and host sandbox failures.

deepseek-ai/deepseek-harness · 3,735 tokens