winkterm CLAUDE.md

winkterm CLAUDE.md is an instructions file for coding agents from Cznorth/winkterm. It costs 2,439 tokens per session, scanned A, a copy of winkterm AGENTS.md, MIT.

A set of Claude Code instructions for WinkTerm, an application where a person and an AI share an interactive terminal session. It documents the project, development commands, frontend and backend setup, packaging, and deployment.

In plain words
What is it for?
Use it when developing, testing, building, packaging, or deploying WinkTerm. It covers the backend server, frontend development, generated API types, Windows desktop packaging, and Docker startup.
Why use it?
It gives Claude Code the commands and architecture details needed to work in this specific repository. Without it, the agent would need to infer how to run the separate Python backend and frontend.

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/cznorth/winkterm/claude-md
Clone the repo
git clone --depth 1 https://github.com/Cznorth/winkterm

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/cznorth/winkterm/claude-md.svg)](https://agentmods.dev/instructions/cznorth/winkterm/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/cznorth/winkterm/claude-md"><img src="https://agentmods.dev/badge/instructions/cznorth/winkterm/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,439 This file is loaded in full into every session.
When invoked 2,439 The same file — it is already loaded in full.
Security scan A 1 finding. Scan, not verified.
Origin 89% 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 $0.02439 $0.02439
Opus 5 $0.01220 $0.01220
Sonnet 5 $0.00488 $0.00488
Haiku 4.5 $0.00244 $0.00244

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

Security

Grade A, and why

winkterm CLAUDE.md scanned grade A with 1 finding 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 5d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s http://localhost:8000/api/agent/handshake
Origin

This is a copy

89% identical to winkterm AGENTS.md — 38 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 · 258 lines

How it starts

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

WinkTerm is an AI + terminal "human-machine fusion" ops tool. The AI and the user share the same pty session, and all interaction happens inside the terminal. The user talks to the AI by typing a # message; the AI can suggest commands and write them into the input line, where the user presses Enter to run or Backspace to edit.

Common Commands

Backend Development

cd backend
python -m venv .venv
source .venv/bin/activate   # Windows: .venv\Scripts\activate
pip install -r requirements.txt

# Start the development server
python -m uvicorn backend.main:app --reload --port 8000

Frontend Development

cd frontend
npm install
npm run dev           # Development mode
npm run build         # Build (output to frontend/out/)
npm run lint          # Lint check
npm run gen:api       # Generate TypeScript types and react-query hooks from OpenAPI

Desktop App Packaging

# Windows
build\build.bat

# Or run manually
pyinstaller build\winkterm.spec --clean --noconfirm

Docker Deployment

docker compose up -d

Architecture

Core Data Flow

User keyboard input
    │
    ▼
Frontend Terminal (xterm.js)
    │  WebSocket
    ▼
ws_handler.py
    │
    ├── Normal input ──► pty_manager.write() ──► shell process
    │
    └── Lines starting with # ──► intercept ──► Agent (LangGraph)

Key Modules

Module Path Responsibility
WebSocket handling backend/terminal/ws_handler.py Message dispatch, # detection, Agent invocation
PTY management backend/terminal/pty_manager.py Shell process wrapper, read/write, context retrieval
Session management backend/terminal/session_manager.py Multi-terminal sessions, active state
Agent graph backend/agent/graph.py LangGraph StateGraph definition
Agent tools backend/agent/tools/ Terminal interaction tool definitions
SSH connections backend/ssh/ SSH connection management, file transfer

Read the full file on GitHub · 258 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. 5d ago First seen · 258 lines · 2,439 tokens per session scan A 853dc02f3e9f

Subscribe to this mod's changes

winkterm CLAUDE.md is an instructions file published in the GitHub repository Cznorth/winkterm (20 stars, last pushed 1mo ago), licensed MIT. It adds 2,439 tokens to every session, about $0.0122 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 89% identical to winkterm AGENTS.md, differing in 38 lines, and is treated as a copy.