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/elnora-ai/elnora-slack/agents-mdgit clone --depth 1 https://github.com/Elnora-AI/elnora-slackWrote 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/elnora-ai/elnora-slack/agents-md)<a href="https://agentmods.dev/instructions/elnora-ai/elnora-slack/agents-md"><img src="https://agentmods.dev/badge/instructions/elnora-ai/elnora-slack/agents-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.1 | $0.01510 | $0.01510 |
| Opus 5 | $0.00755 | $0.00755 |
| Sonnet 5 | $0.00302 | $0.00302 |
| Haiku 4.5 | $0.00151 | $0.00151 |
Grade B, and why
elnora-slack AGENTS.md scanned grade B 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
chmod 600 ~/.config/elnora-slack/.env How it starts
The opening of the file, as written. The whole thing — 95 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Universal guide for any coding agent working with elnora-slack. Read natively by Codex, Cursor, Aider, Continue, Amp, Jules, and Roo. Claude Code reads CLAUDE.md / the plugin skills instead — see the Claude Code section.
What this is
@elnora-ai/slack — one npm package exposing the elnora-slack CLI, complete coverage of the Slack Web API (201 methods, 29 groups). Any agent shells out to the CLI; JSON output and typed exit codes are designed for self-correction.
The binary is
elnora-slack, notslack(Slack ships its ownslackCLI).
Setup
npm install -g @elnora-ai/slack
mkdir -p ~/.config/elnora-slack
printf 'SLACK_BOT_TOKEN=xoxb-your-bot-token\n' >> ~/.config/elnora-slack/.env # from your Slack app
chmod 600 ~/.config/elnora-slack/.env
elnora-slack auth test # smoke test
Create your Slack app from app-manifest.json at api.slack.com/apps. Add a user token (SLACK_USER_TOKEN=xoxp-…) only if you need search.*. For a guided install, see INSTALL_FOR_AGENTS.md.
Dispatch — when to use what
| User intent | Command |
|---|---|
| Post to a channel | elnora-slack chat postMessage --channel <C…> --text "…" |
| Reply in a thread | elnora-slack chat postMessage --channel <C…> --thread-ts <ts> --text "…" |
| DM a user (two steps) | elnora-slack conversations open --users <U…> --return-im --compact → take the D… id → elnora-slack chat postMessage --channel <D…> --text "…" |
| Read history | elnora-slack conversations history --channel <C…> --limit 50 --output json |
| List channels / users | elnora-slack conversations list --types public_channel --output json · elnora-slack users list --output json |
| Resolve a person by email | elnora-slack users lookupByEmail --email [email protected] |
| Search messages | elnora-slack search messages --query "…" — requires SLACK_USER_TOKEN (xoxp-) |
| React / pin / bookmark | elnora-slack reactions add … · elnora-slack pins add … · elnora-slack bookmarks add … |
| Upload a file | elnora-slack files upload --channels <C…> --filename f.txt --content "…" — --channels takes one channel id; use --file <path> to upload from disk |
| Anything else | elnora-slack --help, then elnora-slack <group> --help — full API coverage |
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 · 95 lines · 1,510 tokens per session scan B c8743196f002
elnora-slack AGENTS.md is an instructions file published in the GitHub repository Elnora-AI/elnora-slack (1 stars, last pushed 3d ago), licensed Apache-2.0. It adds 1,510 tokens to every session, about $0.0076 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
compounded CLAUDE.md
Instructions for ankitkr3/compounded, covering claude.md (compounded repository), what this repo is, conventions, how the lifecycle works and what you can change.
agent-plus AGENTS.md
Instructions for osouthgate/agent-plus, covering agents.md, plugins in this repo, installing agent-plus, the seven design patterns and keeping plans current (read this).
ship-it open-pr.instructions.md
Instructions for khrichtchatyi/ship-it: When the user asks to open, create, or submit a pull request, follow the skill in skills/open-pr/SKILL.md in full: verify gh is authenticated, resolve the target repository and default branch, push the current branch, open one pull request with a title and body derived from the…
plsql-intelligence AGENTS.md
Instructions for MuhDur/plsql-intelligence, covering agents.md — plsql-intelligence, founder constraints (plan.md §3, non-negotiable), plan rules to internalize (plan.md §4), rule 1 – absolute (do not ever violate this) and irreversible git & filesystem actions.
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.
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).