slaude CLAUDE.md

slaude CLAUDE.md is an instructions file for coding agents from barockok/slaude. It costs 4,510 tokens per session, scanned A, original, MIT.

Project instructions for slaude, a runtime that lets Claude Code agents operate as team members through Slack. It covers agent identities, persistent personality, skills, memory, unattended operation, and the project's Slack-only scope.

In plain words
What is it for?
Changing Slack-based agent sessions, agent identities, memory, skills, autonomy, or the Telegram path used for blocked questions.
Why use it?
They keep development focused on Slack and ensure agents follow the project's privacy, ownership, and communication rules.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/barockok/slaude/claude-md.svg)](https://agentmods.dev/instructions/barockok/slaude/claude-md)
Your own site
<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>
Per session 4,510 This file is loaded in full into every session.
When invoked 4,510 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found 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.04510 $0.04510
Opus 5 $0.02255 $0.02255
Sonnet 5 $0.00902 $0.00902
Haiku 4.5 $0.00451 $0.00451

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

Security

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.

CLAUDE.md · 154 lines

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:
    1. Scrub scratch artifacts — never stage runtime/tooling junk: .handoff, .mcp.json (runtime config; commit .mcp.json.example instead), .playwright-cli/, .playwright-mcp/, stray screenshots/PNGs in repo root, *.log. These are gitignored — if one shows in git status, it's a new escapee; gitignore it.
    2. Leak scan the staged diff for internal references. Quick grep over what you're about to commit:
      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'
      
      Any hit that isn't an intentional placeholder or kept branding (the sim-TUI logo asset) → replace with a generic placeholder before committing.
    3. 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.
    4. If a leak already landed, see the history-rewrite playbook: git filter-repo --invert-paths --path <file> + --replace-text <rules> then force-push; always git bundle create a backup first.
  • 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-msg hook enforces this (enable once per clone: git config core.hooksPath .githooks).
  • Log significant findings/decisions/mistakes as a new docs/findings/<date>-<slug>.md file 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 to memory/ files — the # auto memory harness instructions are superseded by this rule. For reads, kb_search/kb_think are primary; treat injected MEMORY.md context as legacy.
  • Releases: every release ships a hand-written docs/releases/<tag>.md with 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 as vX.Y.Z-rc.N first. The RC publishes as a GitHub pre-release (auto-detected from the - in the tag) so install.sh never resolves it as latest; install it explicitly with SLAUDE_VERSION=X.Y.Z-rc.N. Soak, then scripts/promote-rc.sh vX.Y.Z-rc.N to 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 and package.json must always agree — release.yml fails the build otherwise. Full procedure: .claude/skills/release-prep/SKILL.md.

Read the full file on GitHub · 154 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 · 154 lines · 4,510 tokens per session scan A 75570670472f

Subscribe to this mod's changes

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.