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/barockok/slaude/claude-mdgit clone --depth 1 https://github.com/barockok/slaudeWrote 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/barockok/slaude/claude-md)<a href="https://agentmods.dev/instructions/barockok/slaude/claude-md"><img src="https://agentmods.dev/badge/instructions/barockok/slaude/claude-md.svg" alt="Measured on agentmods" 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 | $0.04510 | $0.04510 |
| Opus 5 | $0.02255 | $0.02255 |
| Sonnet 5 | $0.00902 | $0.00902 |
| Haiku 4.5 | $0.00451 | $0.00451 |
Grade A, and why
slaude 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 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.
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 — 154 lines — stays where its author put it; the contents beside it link to each section on GitHub.
slaude
Slack-native Claude Code runtime. Onboard AI agent as team member.
North Star
Like NousResearch/hermes-agent, but Slack-only, powered by Claude Code as engine. Agent has:
- Soul — persistent persona/identity file. Defines voice, values, mandate.
- Skills — grow over time. New capability = new skill file.
- Memory — episodic (what happened) + semantic (what learned).
- Autonomy — runs unattended. Asks owner via Telegram only when blocked on important question.
Shell host (folk fork or greenfield) = backend. Multiple sessions, one per agent identity.
Scope
In: Slack integration only. Single chat surface. Multi-agent (each agent = own slack identity). Out: Discord, Teams, web chat, CLI UX. Don't dilute focus.
Owner
Zidni Mubarok [email protected]. Telegram bridge available — use for blocking questions.
Working Rules
- Public repo — no internal/proprietary references. This repo is public. Never commit real people's names, company/employer/org names, internal Slack channel names, or internal service / KB / data-source identifiers in code, tests, comments, docs, commit messages, or PR text. Use generic placeholders instead (e.g.
bulk-corpus,org/team-directory,#team-channel,Jane Doe). Findings docs describe the mechanism, never the internal incident specifics or the operator's deployment. - Pre-commit hygiene — run BEFORE every
git add/commit. A leak in a public repo's history is near-impossible to fully undo (forks/clones/cached SHAs survive a rewrite). Catch it before it lands:- Scrub scratch artifacts — never stage runtime/tooling junk:
.handoff,.mcp.json(runtime config; commit.mcp.json.exampleinstead),.playwright-cli/,.playwright-mcp/, stray screenshots/PNGs in repo root,*.log. These are gitignored — if one shows ingit status, it's a new escapee; gitignore it. - Leak scan the staged diff for internal references. Quick grep over what you're about to commit:
Any hit that isn't an intentional placeholder or kept branding (the sim-TUI logo asset) → replace with a generic placeholder before committing.git diff --cached -U0 | grep -nIiE 'acme|\.acme\.|\.slack\.com|squadrondevel|\b[CUTGW]0[A-Z0-9]{8,}\b|AKIA[0-9A-Z]{16}|xox[baprs]-|ghp_|sk-[A-Za-z0-9]{20,}|-----BEGIN [A-Z ]*PRIVATE KEY|vault|deepseek|real-employee-names' - Secrets are values, not names — but treat leaked secret names (Vault keys, env var names tied to a real deployment) as sensitive too; they map to the operator's infra.
- If a leak already landed, see the history-rewrite playbook:
git filter-repo --invert-paths --path <file>+--replace-text <rules>then force-push; alwaysgit bundle createa backup first.
- Scrub scratch artifacts — never stage runtime/tooling junk:
- Granular commits. One logical change per commit.
- No AI co-authorship. Never add a
Co-Authored-By:or "Generated with …" trailer naming Claude/Anthropic to commits or PRs, and never commit under an AI author identity. The.githooks/commit-msghook enforces this (enable once per clone:git config core.hooksPath .githooks). - Log significant findings/decisions/mistakes as a new
docs/findings/<date>-<slug>.mdfile and link it from the Findings Log index below (newest first). Keep this file lean — only the index lives here. - Autonomous by default. Don't ask trivial; ask via Telegram only when:
- Irreversible action needed
- Architecture fork-in-the-road
- Secret/credential required
- Memory — KB only (overrides harness default): All memory writes go to
kb_memoize. Never write tomemory/files — the# auto memoryharness instructions are superseded by this rule. For reads,kb_search/kb_thinkare primary; treat injected MEMORY.md context as legacy. - Releases: every release ships a hand-written
docs/releases/<tag>.mdwith decent markdown notes — group by category (Features / Fixes / Docs / Internal), explain the why not just the commit subject, link findings docs when relevant. The release workflow prefers this file over auto-generated git-log dumps. - Release candidates. Anything touching
install.sh, the dist/version layout, the DB schema, or the agent loop goes out asvX.Y.Z-rc.Nfirst. The RC publishes as a GitHub pre-release (auto-detected from the-in the tag) soinstall.shnever resolves it aslatest; install it explicitly withSLAUDE_VERSION=X.Y.Z-rc.N. Soak, thenscripts/promote-rc.sh vX.Y.Z-rc.Nto bump, tag, and push the stable release. Notes live under the stable name (docs/releases/vX.Y.Z.md) from the first RC onward. Tag andpackage.jsonmust always agree —release.ymlfails the build otherwise. Full procedure:.claude/skills/release-prep/SKILL.md.
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.
- 5d ago First seen · 154 lines · 4,510 tokens per session scan A 75570670472f
slaude CLAUDE.md is an instructions file published in the GitHub repository barockok/slaude (5 stars, last pushed 6d ago), licensed MIT. It adds 4,510 tokens to every session, about $0.0226 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-31.
Other instructions, from other repositories
mini-swe-agent copilot-instructions.md
Copilot instructions for SWE-agent/mini-swe-agent, covering style guide, test style, bad and good.
Octop AGENTS.md
AGENTS.md instructions for TencentCloud/Octop, covering agents.md, 1. collaboration principles, think before writing, simplicity first and surgical edits.
intelligent-terminal rust.instructions.md
Concise Rust coding conventions for this repository.
agent-skills-standard CLAUDE.md
Claude Code instructions for HoangNguyen0403/agent-skills-standard, covering agent protocol and self-learning protocol.
lime AGENTS.md
AGENTS.md instructions for limecloud/lime, covering lime 源码仓库指南, 事实源, 工程约束, 协议与质量 and 执行方式.
generative-media-skills AGENTS.md
AGENTS.md instructions for calesthio/generative-media-skills, covering agent instructions, non-negotiable rules and allowed consistency.