Borrowing it
Nothing to install: this file belongs to qingyu321/Little-Claude. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/qingyu321/Little-Claude/main/CLAUDE.mdgit clone --depth 1 https://github.com/qingyu321/Little-ClaudeWrote 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.
[](https://agentmods.dev/instructions/qingyu321/little-claude/claude-md)<a href="https://agentmods.dev/instructions/qingyu321/little-claude/claude-md"><img src="https://agentmods.dev/badge/instructions/qingyu321/little-claude/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.
<a href="https://agentmods.dev/instructions/qingyu321/little-claude/claude-md"><img src="https://agentmods.dev/badge/instructions/qingyu321/little-claude/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.03809 | $0.03809 |
| Opus 5 | $0.01904 | $0.01904 |
| Sonnet 5 | $0.00762 | $0.00762 |
| Haiku 4.5 | $0.00381 | $0.00381 |
Grade A, and why
Little-Claude 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 10d 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.
This is a copy
92% identical to tokenicode-deepseek-alpha CLAUDE.md — 95 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 244 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 when working with this repository.
Project Overview
Little Claude is a native desktop GUI for Claude Code (Anthropic's CLI), built with Tauri 2 + React 19 + TypeScript + Tailwind CSS 4 + Zustand 5. It wraps the Claude CLI in a rich interface with multi-session tabs, file exploration, rewind/checkpoint restore, slash commands, a command palette, MCP server management, and a multi-provider API configuration system.
Version: 1.2.2 (single source of truth: package.json + src-tauri/tauri.conf.json)
Package manager: pnpm
Platforms: macOS (primary), Windows (supported)
For the full architecture reference (data flow diagrams, store relationships, component hierarchy), see ARCHITECTURE.md.
Development Commands
# Install dependencies
pnpm install
# Development (Vite dev server + Tauri app) — isolated dev data directories
pnpm tauri:dev
# Build production app (uses the release identifier/data dirs)
pnpm tauri:build
# Frontend only (Vite dev server)
pnpm dev
# Type check + Vite build (frontend only)
pnpm build
# Rust checks (from src-tauri/)
cd src-tauri && cargo check && cargo clippy
The Tauri dev command runs npm run dev as its beforeDevCommand (configured in tauri.conf.json).
Dev/release isolation: dev builds must NOT share data with the released app.
pnpm tauri:devpasses--config src-tauri/tauri.dev.conf.json, which switches the identifier tocom.tinyzhuang.tokenicode.dev; additionally, all Rust data-dir helpers (app_data_dir,safe_data_dir,~/.tokenicode*) append a.devsuffix whencfg!(debug_assertions). This keeps the CLI install (npm-global), providers, sessions, and WebView settings of the dev build fully separate from the released app — a CLI update in dev can never touch the production CLI. Usepnpm tauri:build(release profile, plain identifier) for anything that must behave like the release.
Tech Stack
| Layer | Technologies |
|---|---|
| Frontend | React 19, TypeScript 5.8, Tailwind CSS 4, Zustand 5 |
| Backend | Rust (Tauri 2), tokio, serde, reqwest 0.12, notify 7 |
| Rich text input | TipTap 3 (editor), CodeMirror 6 (code preview) |
| Markdown | react-markdown 10, rehype-highlight, remark-gfm |
| Build | Vite 7, @vitejs/plugin-react, @tailwindcss/vite |
| macOS native | cocoa 0.26, objc 0.2 (window customization) |
| Auto-update | In-app web update (web_update.rs, ed25519-signed manifests via GitHub raw + jsdelivr; CLI updates via check_cli_update/update_claude_cli) |
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.
- 10d ago First seen · 244 lines · 3,809 tokens per session scan A d66a7822abdb
Little-Claude CLAUDE.md is an instructions file published in the GitHub repository qingyu321/Little-Claude (21 stars, last pushed 15d ago), licensed Apache-2.0. It adds 3,809 tokens to every session, about $0.0190 per session on Opus 5. A static security scan graded it A with 0 findings. It is 92% identical to tokenicode-deepseek-alpha CLAUDE.md, differing in 95 lines, and is treated as a copy.
Other instructions, from other repositories
create-trimble-app typescript.instructions.md
Instructions for julianoczkowski/create-trimble-app, covering typescript patterns for modus components, event type casting, common event types, component ref types and modal ref pattern.
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.
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.
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).
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).
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.