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.
npx agentmods add instructions/dtormoen/tsk-tsk/claude-mdgit clone --depth 1 https://github.com/dtormoen/tsk-tskWhat 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 | $0.01695 | $0.01695 |
| Opus 5 | $0.00847 | $0.00847 |
| Sonnet 5 | $0.00339 | $0.00339 |
| Haiku 4.5 | $0.00169 | $0.00169 |
Grade A, and why
tsk-tsk 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.
How it starts
The opening of the file, as written. The whole thing — 85 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.
Important files:
- @justfile - key development commands. These should be used when possible over raw cargo commands.
- @README.md - user facing documentation for the project. This could cover key user facing details without going into too much detail. Make sure it stays up to date with your changes.
Architecture Overview
tsk implements a command pattern with dependency injection for testability. The core workflow: queue tasks → execute in containers (Docker or Podman) → create git branches for review. tsk can run in server mode for continuous task processing across multiple repositories.
Key Components
- CLI Commands (
src/commands/): Command handlers for alltsksubcommands. See README.md for the full command reference. - Task Management (
src/task.rs,src/context/task_storage.rs,src/task_manager.rs,src/task_runner.rs):TaskBuilderfor task creation, SQLite-backedTaskStorage, task lifecycle (Queued → Running → Complete/Failed/Cancelled). Two execution paths: server-scheduled (viaadd) and inline (viarun/shell). - Docker Integration (
src/docker/):DockerImageManager(layered image builds: base → stack → project → agent),ProxyManager(proxy lifecycle with per-configuration instances),DockerManager(container execution). Security-first with dropped capabilities and per-container network isolation. - Server Mode (
src/server/):TskServerdaemon withTaskSchedulerandWorkerPoolfor parallel task execution. Parent-aware scheduling, cascading failure handling, and auto-cleanup of old tasks. - TUI (
src/tui/): Interactive terminal dashboard using ratatui/crossterm. Two-panel layout (task list + log viewer) withServerEventchannel from scheduler. - Git Operations (
src/git.rs,src/git_sync.rs,src/git_operations.rs,src/repo_utils.rs): Repository cloning with configurable copy mode (CopyMode: working directory overlay or committed-only), branch creation, result fetching. Uses git CLI (not libgit2) for commits and post-overlay renormalization to support clean/smudge filters (e.g., Git LFS).GitSyncManagerfor concurrent access safety. Supports submodules, git worktrees, and Git LFS. - Storage/Config (
src/context/):AppContext(DI container),TskEnv(directory paths),TskConfig(user/project config with layered resolution). See README.md for config file reference. - Agents (
src/agent/):Agenttrait for AI agent integration (claude, codex, integ, no-op). Handles command building, validation, warmup, and version tracking. - Auto-Detection (
src/repository.rs): Stack detection from project files and project name from directory name. - Skills Marketplace (
skills/,.claude-plugin/marketplace.json): Claude Code skills following the Agent Skills open standard.
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.
- yesterday First seen · 85 lines · 1,695 tokens per session scan A 0f9992215d23
tsk-tsk CLAUDE.md is an instructions file published in the GitHub repository dtormoen/tsk-tsk (170 stars, last pushed 1mo ago), licensed MIT. It adds 1,695 tokens to every session, about $0.0085 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-30.
Other instructions, from other repositories
rowboat CLAUDE.md
Instructions for rowboatlabs/rowboat, covering claude.md - ai coding agent context, quick reference commands, electron app (apps/x), monorepo structure and electron app architecture (apps/x).
claude-code-tresor CLAUDE.md
Instructions for alirezarezvani/claude-code-tresor, covering claude.md - development guide, 🎯 repository purpose, 🏗️ architecture, 🛠️ common development commands and building & testing.
loom CLAUDE.md
Instructions for cosmix/loom, covering claude.md, project overview, build commands, architecture and source layout (loom/src/).
cybara CLAUDE.md
Instructions for metaspartan/cybara, covering ai coding rules for cybara agent platform, no code comments (strict), runtime environment, import rules and ✅ do.
cybara AGENTS.md
Instructions for metaspartan/cybara, covering cybara agent rules, package manager policy (strict), command translation, typescript type safety and no comments.
zerostack AGENTS.md
AGENTS.md instructions for gi-dellav/zerostack, a project described as: Lightweight coding agent written in Rust, optimized for memory footprint and performance.