Little-Claude: Instructions file for Claude Code

CLAUDE.md

Little-Claude CLAUDE.md is an instructions file for Claude Code from qingyu321/Little-Claude. It costs 3,809 tokens per session, scanned A, a copy of tokenicode-deepseek-alpha CLAUDE.md, Apache-2.0.

Project instructions for Little Claude, a desktop application that gives Claude Code a graphical interface. It is built with Tauri, React, TypeScript, and Rust, and includes sessions, file browsing, checkpoints, and MCP management.

In plain words
What is it for?
Use it to install dependencies, run the desktop or frontend development servers, build releases, and check the Rust and frontend parts.
Why use it?
It identifies the technology stack and the correct commands for developing the desktop app or checking only its web interface.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions Claude Code.

This is qingyu321/Little-Claude's own configuration. It tells Claude Code how to work on Little-Claude itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything Little-Claude configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/qingyu321/Little-Claude/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/qingyu321/Little-Claude

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 Little-Claude CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/qingyu321/little-claude/claude-md/github.svg)](https://agentmods.dev/instructions/qingyu321/little-claude/claude-md)
Your own site
<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.

agentmods 80×15 button for Little-Claude CLAUDE.md

Your own site · 80×15
<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>
Per session 3,809 This file is loaded in full into every session.
When invoked 3,809 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 92% copy Near-identical to another mod 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.03809 $0.03809
Opus 5 $0.01904 $0.01904
Sonnet 5 $0.00762 $0.00762
Haiku 4.5 $0.00381 $0.00381

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

Security

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.

Origin

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.

CLAUDE.md · 244 lines

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:dev passes --config src-tauri/tauri.dev.conf.json, which switches the identifier to com.tinyzhuang.tokenicode.dev; additionally, all Rust data-dir helpers (app_data_dir, safe_data_dir, ~/.tokenicode*) append a .dev suffix when cfg!(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. Use pnpm 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)

Read the full file on GitHub · 244 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. 10d ago First seen · 244 lines · 3,809 tokens per session scan A d66a7822abdb

Subscribe to this mod's changes

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.

Related

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.

julianoczkowski/create-trimble-app · 583 tokens

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.

vercel/next.js · 7,296 tokens

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.

openai/codex · 5,153 tokens

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).

microsoft/vscode · 6,785 tokens

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).

microsoft/vscode · 5,001 tokens

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.

langchain-ai/langchain · 4,469 tokens