skillsight CLAUDE.md

skillsight CLAUDE.md is an instructions file for coding agents from PackmindHub/skillsight. It costs 3,398 tokens per session, scanned A, original, Apache-2.0.

Repository instructions for Skillsight, a web application with a Bun backend and Vite frontend. They describe its commands, hexagonal architecture, technical choices, and development setup.

In plain words
What is it for?
Use them when developing the backend or frontend, running checks and tests, generating or applying database migrations, or working within the application's architecture.
Why use it?
They show contributors how to run, check, test, migrate, and structure the application without guessing its conventions.

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/packmindhub/skillsight/claude-md
Clone the repo
git clone --depth 1 https://github.com/PackmindHub/skillsight

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/packmindhub/skillsight/claude-md.svg)](https://agentmods.dev/instructions/packmindhub/skillsight/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/packmindhub/skillsight/claude-md"><img src="https://agentmods.dev/badge/instructions/packmindhub/skillsight/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 3,398 This file is loaded in full into every session.
When invoked 3,398 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.03398 $0.03398
Opus 5 $0.01699 $0.01699
Sonnet 5 $0.00680 $0.00680
Haiku 4.5 $0.00340 $0.00340

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

Security

Grade A, and why

skillsight 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 · 157 lines

How it starts

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

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Commands

Root (runs both packages):

bun run dev          # Start backend + frontend with hot reload
bun run build        # Build frontend (Vite) then backend (Bun)
bun run lint         # Biome lint on both packages
bun run typecheck    # TypeScript strict check on all packages
bun run test         # Run tests across all packages

Backend:

cd backend
bun run dev                    # Hot reload server on :4200
bun run migrate:generate       # Generate Drizzle migrations from schema changes
bun run migrate:run            # Run pending migrations
bun test src/path/to/file.test.ts   # Run a single test file

Frontend:

cd frontend
bun run dev          # Vite dev server on :5173 (proxies /api → :4200)
bun run check        # Biome lint + format check (`biome check src`)
bun test src/path/to/file.test.tsx   # Run a single test file

Architecture

Hexagonal architecture with three layers:

  • Domain (backend/src/domain/): Pure entities + repository/gateway port interfaces. No framework deps.
  • Application (backend/src/application/): Use cases that accept port interfaces as constructor args. Business logic lives here.
  • Infrastructure (backend/src/infrastructure/): Drizzle repository implementations, HTTP gateways (Loki, git), crypto utilities, schedulers.
  • HTTP (backend/src/http/): Hono route handlers — thin layer that calls application use cases and serializes responses.

Cross-cutting backend folders outside the hexagon:

  • backend/src/config/ — Zod-validated env schema (env.ts).
  • backend/src/middleware/ — Hono middleware (session-auth.ts for cookie JWT, ingestion-auth.ts for OTLP bearer).
  • backend/src/parsers/ — OTLP and Loki-stream payload parsers, shared by the push endpoint and the pull scheduler.
  • backend/src/lib/ — small framework-agnostic helpers (event-bus.ts, request-url.ts).

Read the full file on GitHub · 157 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 · 157 lines · 3,398 tokens per session scan A 3324d6c7d5fc

Subscribe to this mod's changes

skillsight CLAUDE.md is an instructions file published in the GitHub repository PackmindHub/skillsight (9 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 3,398 tokens to every session, about $0.0170 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.