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/krishddd/social_dive/claude-mdgit clone --depth 1 https://github.com/krishddd/social_diveWrote 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/krishddd/social_dive/claude-md)<a href="https://agentmods.dev/instructions/krishddd/social_dive/claude-md"><img src="https://agentmods.dev/badge/instructions/krishddd/social_dive/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.00521 | $0.00521 |
| Opus 5 | $0.00260 | $0.00260 |
| Sonnet 5 | $0.00104 | $0.00104 |
| Haiku 4.5 | $0.00052 | $0.00052 |
Grade A, and why
social_dive 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 3d 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 — 46 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Social Dive — Developer Conventions
Language & Environment
- Python 3.10+ with type hints on every function/method signature
- Rust (edition 2021) for the
_social_dive_coreextension module via PyO3/maturin logurufor all logging (neverprint()for diagnostic output)richfor all CLI terminal outputhttpxfor Python-side HTTP requests (async-capable)openaiSDK for all OpenAI-compatible API calls (NVIDIA NIM, OpenAI, MiniMax)
Architecture Rules
- This is a glue/routing layer, not a wrapper — agents call upstream tools directly after setup
- Never modify upstream open-source tool source code
- Every channel must implement all four abstract methods:
can_handle(),read(),search(),check() - A broken channel must never crash the doctor report or affect other channels
- Config/credentials stored only at
~/.social-dive/config.yamlwith 0600 permissions - Environment variables always override config file values
Version Sync
Version string must stay in sync across:
pyproject.toml→[project].versionsocial_dive/__init__.py→__version__Cargo.toml→[package].versiontests/test_cli.py→ version assertion
Testing
pytest tests/ -vmust pass before any commit- Every channel needs: URL pattern test, mock-response parse test, error-handling test
test_channel_contracts.pyuses reflection to verify all Channel subclasses implement the interface- Work on a branch, PR to main
Code Style
rufffor linting (pyproject.tomlhas the config)mypyfor type checking- Max line length: 100 characters
- Use
from __future__ import annotationsin every module - Docstrings: Google style
Adding a New Channel
- Create
social_dive/channels/<name>.py - Subclass
Channel, setname,tier,backends - Implement
can_handle(),read(),search(),check() - Decorate the class with
@register_channel - Add tests in
tests/test_channels.py - Auto-discovery handles the rest — no manual registration needed
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.
- 3d ago First seen · 46 lines · 521 tokens per session scan A 396c692c68dd
social_dive CLAUDE.md is an instructions file published in the GitHub repository krishddd/social_dive (1 stars, last pushed 2mo ago), licensed MIT. It adds 521 tokens to every session, about $0.0026 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
mcp-deep-search CLAUDE.md
Claude Code instructions for just-every/mcp-deep-search, covering claude.md, project overview, core modules & files, commands and development.
agent-web-search AGENTS.md
AGENTS.md instructions for JerryLiu369/agent-web-search: Read ARCHITECTURE.md before changing transports, configuration, authentication, deployment, providers, tool schemas, or public entry points.
airweave CLAUDE.md
Instructions for airweave-ai/airweave, covering claude.md, what is airweave?, architecture, common commands and local development (docker).
ai-dial-core CLAUDE.md
Claude Code instructions for epam/ai-dial-core, covering claude.md, build & run, set credentials via environment variables, build (skip tests) and run all tests.
ai AGENTS.md
AGENTS.md instructions for vercel/ai, covering agents.md, project overview, repository structure, key directories and core package dependencies.
InvestSkill GEMINI.md
Gemini CLI instructions for yennanliu/InvestSkill, covering investskill — gemini cli setup & usage guide, installation & setup, quick start, navigate to the investskill directory and start gemini cli (loads gemini.md automatically).