layerkit-inventory-surfaces

layerkit-inventory-surfaces is a skill for Claude Code, Codex from hariharapanigrahy/layerkit. It costs 32 tokens per session (522 once invoked), scanned A, original, MIT.

A workflow step that records every programming language and code surface supported by a package before a multi-language integration change. A code surface is a separate implementation area, such as a server or client for one language.

In plain words
What is it for?
Use it to scan a package, create a surface-inventory.json file, track each language as pending, updated, or residual, and provide that record during handoff.
Why use it?
It prevents one supported language or implementation from being missed during an update and records any unfinished work explicitly.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/hariharapanigrahy/layerkit/layerkit-inventory-surfaces
Any agent
npx skills add hariharapanigrahy/layerkit --skill layerkit-inventory-surfaces
Clone the repo
git clone --depth 1 https://github.com/hariharapanigrahy/layerkit

Made for: Claude Code, Codex.

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 layerkit-inventory-surfaces

README.md
[![agentmods](https://agentmods.dev/badge/skills/hariharapanigrahy/layerkit/layerkit-inventory-surfaces.svg)](https://agentmods.dev/skills/hariharapanigrahy/layerkit/layerkit-inventory-surfaces)
Your own site
<a href="https://agentmods.dev/skills/hariharapanigrahy/layerkit/layerkit-inventory-surfaces"><img src="https://agentmods.dev/badge/skills/hariharapanigrahy/layerkit/layerkit-inventory-surfaces.svg" alt="Measured on agentmods" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 522 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00032 $0.00522
Opus 5 $0.00016 $0.00261
Sonnet 5 $0.00006 $0.00104
Haiku 4.5 $0.00003 $0.00052

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

Security

Grade A, and why

layerkit-inventory-surfaces 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 6d 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.

skills/layerkit-inventory-surfaces/SKILL.md · 59 lines

What it actually says

layerkit-inventory-surfaces

Before research/source-edit on a multi-language package, list every language or surface the package supports so Layerkit can block PR/handoff until each is updated or explicit residual.

This step is required for heal and full. Domain discover may be skipped on heal; surfaces is never skipped.

Protocol

  1. Walk the package (source:code): e.g. **/server/node, server/python, server/ruby, server/php*, server/java, server/go, server/dotnet, server/nextjs, client UIs.
  2. Write session inventory:
{projectDir}/memory/runbooks/surface-inventory.json
{
  "schemaVersion": 1,
  "package": "org/repo",
  "languages": [
    {
      "id": "node",
      "roots": ["fixed-price-subscriptions/server/node"],
      "status": "pending"
    },
    {
      "id": "python",
      "roots": ["fixed-price-subscriptions/server/python"],
      "status": "pending"
    }
  ],
  "notes": "Inventoried from package layout; source:code"
}
  1. Put the same JSON (or a pointer + summary) in mark-done --evidence.
  2. Later, during source-edit, update each language:
    • "status": "updated" + "paths": ["…/server.js"] when production files for that language were changed, or
    • "status": "residual" + "residual": "why not changed (SDK gap, out of scope, …)"
  3. Layerkit rejects source-edit complete / handoff while any language is still pending.

Forbidden

  • Listing only one language when the package clearly has more (freestyle single-lang heal)
  • Marking updated without real paths
  • Marking residual without a concrete residual reason
  • Skipping this step on heal

Success

  • surface-inventory.json exists with ≥1 language and non-empty roots[]
  • Evidence cites package layout (source:code)
  • Agent understands that multi-lang completeness is enforced before PR
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. 6d ago First seen · 59 lines · 32 tokens per session scan A d3e18be92643

Subscribe to this mod's changes

layerkit-inventory-surfaces is a skill published in the GitHub repository hariharapanigrahy/layerkit (8 stars, last pushed 29d ago), licensed MIT. It adds 32 tokens to every session and 522 once invoked, about $0.0002 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 skills, from other repositories

ultracite

Ultracite is a zero-config linting and formatting preset for JavaScript/TypeScript projects. Use when: (1) Setting up or initializing Ultracite in a project (ultracite init), (2) Running linting or formatting commands (check, fix, doctor), (3) Writing or reviewing JS/TS code in a project that uses Ultracite — to…

haydenbleasel/ultracite · 142 tokens

microsoft-typescript

TypeScript is a language for application scale JavaScript development. ALWAYS use when editing or working with .ts, .tsx, .mts, .cts files or code importing "typescript". Consult for debugging, best practices, or modifying typescript, TypeScript.

skilld-dev/skilld · 57 tokens

Agent Browser Automation

Fast Rust-based headless browser automation CLI with Node.js fallback for AI agents, featuring navigation, clicking, typing, snapshots, and structured commands optimized for agent workflows.

PramodDutta/qaskills · 37 tokens

type-safety

TypeScript type safety conventions for the Playwright scaffold — the "no any" rule, Zod 4 schema patterns (z.strictObject, top-level validators like z.uuid / z.email / z.url / z.int / z.enum), schemas built directly from the documented OpenAPI / Swagger contract (response envelope spelled out per endpoint), type…

idavidov13/agentic-playwright · 208 tokens

top-down-typescript

TypeScript and JavaScript coding style conventions, centered on top-down narrative ordering (caller first, helpers below) and functions over classes. Read before writing or reviewing TypeScript/JavaScript code, including code inside a spec or a plan.

paleo/alignfirst · 53 tokens

laravel-expert

Laravel & PHP Development Instructions for GitHub Copilot.

GulajavaMinistudio/awesome-copilot-id · 15 tokens