nano CLAUDE.md

nano CLAUDE.md is an instructions file for Claude Code from NanoNative/nano. It costs 1,065 tokens per session, scanned A, original, Apache-2.0.

A set of project instructions for developing NanoNative/nano, a Java microservice framework. It documents the project structure and the Maven commands used to compile, test, package, and create a native build.

In plain words
What is it for?
Use it when changing Nano code, running its Maven build or tests, checking coverage, or preparing a release build.
Why use it?
It gives a coding agent the repository-specific rules and commands needed to work on this project consistently.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: mentions CLAUDE.md; mentions Claude Code.

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/nanonative/nano/claude-md
Clone the repo
git clone --depth 1 https://github.com/NanoNative/nano

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/nanonative/nano/claude-md.svg)](https://agentmods.dev/instructions/nanonative/nano/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/nanonative/nano/claude-md"><img src="https://agentmods.dev/badge/instructions/nanonative/nano/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,065 This file is loaded in full into every session.
When invoked 1,065 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.1 $0.01065 $0.01065
Opus 5 $0.00532 $0.00532
Sonnet 5 $0.00213 $0.00213
Haiku 4.5 $0.00106 $0.00106

Measured yesterday against content hash 5a2bae75cb7c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

nano 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 yesterday.

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 · 98 lines

How it starts

The opening of the file, as written. The whole thing — 98 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.

Project Overview

Nano is a lightweight Java microservice framework that revolutionizes development by eliminating traditional OOP patterns (Controllers, Services, Repositories) in favor of static event listeners that react to events in a functional, stateless manner.

Core Philosophy:

  • Static Methods, Not Objects: Business logic lives in static methods, not service objects
  • Event-Driven Communication: Everything communicates through events, not direct method calls
  • Universal Services: Services are generic connectors for external systems - no business logic
  • TypeMap Integration: Built-in type conversion using Berlin Yuna's TypeMap library
  • Global Error Handling: Errors are events that can be subscribed to globally

Build & Development Commands

Maven Commands

  • Build: ./mvnw clean compile or mvn clean compile
  • Test: ./mvnw test or mvn test
  • Package: ./mvnw clean package or mvn clean package
  • Coverage Report: ./mvnw clean verify (generates Jacoco coverage in target/site/jacoco/)
  • Release Build: ./mvnw clean deploy -P release (requires GPG setup)

GraalVM Native Image

  • Add the native-image profile to pom.xml and run: mvn package -Pnative-image
  • Project is designed to be fully compilable with GraalVM for native executables

Architecture & Code Structure

Core Components

  • Nano: Main application class extending NanoServices
  • Context: Central hub for configuration, event channels, and service management
  • Event<T, R>: Generic event system with payload and response types
  • Service: Base interface for external system connectors (HTTP, databases, etc.)
  • Channel: Event routing and subscription mechanism

Key Directories

  • src/main/java/org/nanonative/nano/core/: Core framework classes
  • src/main/java/org/nanonative/nano/services/: Built-in services (HTTP, logging, metrics, file watching)
  • src/main/java/org/nanonative/nano/helper/: Utility classes and event system
  • src/test/java/org/nanonative/nano/examples/: Working examples and patterns
  • docs/: Comprehensive documentation

Read the full file on GitHub · 98 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. yesterday First seen · 98 lines · 1,065 tokens per session scan A 5a2bae75cb7c

Subscribe to this mod's changes

nano CLAUDE.md is an instructions file published in the GitHub repository NanoNative/nano (107 stars, last pushed 26d ago), licensed Apache-2.0. It adds 1,065 tokens to every session, about $0.0053 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-09-04.

Related

Other instructions, from other repositories