skit CLAUDE.md

skit CLAUDE.md is an instructions file for coding agents from balgaly/skit. It costs 717 tokens per session, scanned A, original, ISC.

A project guide for skit, a Node.js command-line package manager for installing and managing AI-agent skills. It describes the project structure, coding rules, dependencies, and planned parts.

In plain words
What is it for?
It is for developing skit commands, shared package-management logic, agent adapters, validation, tests, and documentation.
Why use it?
It gives an AI coding agent the context needed to make consistent changes to the skit package and handle inputs and errors safely.

Instructions file

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 instructions/balgaly/skit/claude-md
Clone the repo
git clone --depth 1 https://github.com/balgaly/skit

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 skit CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/balgaly/skit/claude-md.svg)](https://agentmods.dev/instructions/balgaly/skit/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/balgaly/skit/claude-md"><img src="https://agentmods.dev/badge/instructions/balgaly/skit/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 717 This file is loaded in full into every session.
When invoked 717 The same file — it is already loaded in full.
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 $0.00717 $0.00717
Opus 5 $0.00358 $0.00358
Sonnet 5 $0.00143 $0.00143
Haiku 4.5 $0.00072 $0.00072

Measured 4d ago against content hash e9771f62031c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

skit 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 4d 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 · 82 lines

How it starts

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

skit

A cross-platform package manager for AI agent skills.

Project Info

  • Name: skit
  • Type: npm CLI package (Node.js)
  • Entry point: bin/skit.js
  • Source: src/
  • Tests: tests/
  • Design spec: docs/design.md

Code Standards

  • Node.js (no TypeScript in v1 — ship fast, add types later)
  • Use const/let, never var
  • CommonJS (require/module.exports) for maximum Node.js compatibility
  • Validate all user inputs (URLs, paths, skill names)
  • Handle errors gracefully with clear user-facing messages
  • No exposed secrets or API keys
  • Follow DRY principle
  • Meaningful variable and function names

Architecture

  • src/commands/ — one file per CLI command, each exports a function
  • src/core/ — shared business logic (manifest, linker, git, scanner, importer)
  • src/agents/ — pluggable agent adapters (claude-code, cursor; add new ones with ~20 lines)
  • bin/skit.js — entry point, wires commands to commander

src/ui/ is planned (picker, spinner, formatting helpers) but not yet extracted. UI logic (chalk, inquirer, ora) is currently inline in each command file.

Dependencies (keep minimal)

  • commander — CLI arg parsing
  • inquirer — interactive prompts
  • chalk — terminal colors
  • ora — spinners

Cross-Platform

  • MUST work on Windows, macOS, and Linux
  • Windows: use NTFS junctions (fs.symlinkSync with 'junction')
  • macOS/Linux: use directory symlinks (fs.symlinkSync with 'dir')
  • Always use path.resolve() for absolute paths (junctions require it on Windows)
  • Always use path.join() for path construction, never string concatenation
  • Test with forward slashes in tests, but never assume slash direction in code

Git Conventions

  • Conventional commits: feat:, fix:, refactor:, test:, docs:, chore:
  • Work on feature branches, merge to master
  • Include Co-Authored-By: Claude <[email protected]> in commits

Testing

  • Test framework: Node.js built-in test runner (node --test)
  • Use temp directories for integration tests
  • Mock git operations where possible
  • Test cross-platform linking behavior
  • Every command gets at least basic happy-path + error-path tests

Read the full file on GitHub · 82 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. 4d ago First seen · 82 lines · 717 tokens per session scan A e9771f62031c

Subscribe to this mod's changes

skit CLAUDE.md is an instructions file published in the GitHub repository balgaly/skit (2 stars, last pushed 4d ago), licensed ISC. It adds 717 tokens to every session, about $0.0036 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.