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 skills add dkyazzentwatwa/osint-ai --skill osint-claudegit clone --depth 1 https://github.com/dkyazzentwatwa/osint-aiWrote 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/skills/dkyazzentwatwa/osint-ai/osint-claude)<a href="https://agentmods.dev/skills/dkyazzentwatwa/osint-ai/osint-claude"><img src="https://agentmods.dev/badge/skills/dkyazzentwatwa/osint-ai/osint-claude/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/dkyazzentwatwa/osint-ai/osint-claude"><img src="https://agentmods.dev/badge/skills/dkyazzentwatwa/osint-ai/osint-claude.svg" alt="Reviewed on agentmods" width="80" 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.00256 | $0.06402 |
| Opus 5 | $0.00128 | $0.03201 |
| Sonnet 5 | $0.00051 | $0.01280 |
| Haiku 4.5 | $0.00026 | $0.00640 |
Grade A, and why
osint-investigator scanned grade A 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 12d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
3. **Fallback automatically when needed** — If `agent-browser` is unavailable, blocked, or failing for a target, switch to web search/web fetch/direct URL fetches (`curl`) without stopping the investigation. The source is not reproduced here
A licence we could not identify
The repository carries a LICENSE file, but it is custom or dual enough that GitHub cannot name it and neither can this catalogue. Unknown terms are not permission, so the body is not copied here. Read the licence at the source and decide for yourself.
What ships with it
32 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- core/entity-manager.md 23 KB
- core/entity-schema.json 11 KB
- core/evidence-system.md 19 KB
- core/state-manager.md 20 KB
- examples/domain-security-audit.md 19 KB
- examples/person-investigation.md 14 KB
- examples/username-correlation.md 6.7 KB
- intelligence/correlation-engine.md 9.4 KB
- intelligence/pattern-library.md 6.6 KB
- intelligence/risk-framework.md 11 KB
- LICENSE 1.6 KB
- modules/breach-intel.md 11 KB
- modules/document-intel.md 14 KB
- modules/geolocation.md 9.8 KB
- README.md 16 KB
- references/dork-library.md 7.0 KB
- references/recon-vectors.md 9.4 KB
- references/report-template.md 3.8 KB
- references/simple-report-template.md 3.1 KB
- reports/export-formats.md 29 KB
- reports/template-library.md 106 KB
- ux/accessibility/glossary.md 15 KB
- ux/complexity-levels.md 6.8 KB
- ux/feedback-mechanisms.md 12 KB
- ux/progress-system.md 9.7 KB
- ux/progressive-disclosure.md 12 KB
- ux/templates/due-diligence.md 12 KB
- ux/templates/security-audit.md 14 KB
- ux/wizards/domain-audit.md 14 KB
- ux/wizards/person-investigation.md 15 KB
- visualization/ascii-engine.md 33 KB
- visualization/dashboard.md 69 KB
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.
- 12d ago First seen · 721 lines · 256 tokens per session scan A fa9d6c42997e
osint-investigator is a skill published in the GitHub repository dkyazzentwatwa/osint-ai (54 stars, last pushed 6mo ago), with no licence file. It adds 256 tokens to every session and 6,402 once invoked, about $0.0013 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
orchestrator-container-spawn
Spawning and hardening scan containers from the recon orchestrator: the security flags that look correct and break the container, and the sibling bind-mount path handling. capdrop and no-new-privileges were each reverted after breaking real scans. Trigger: editing reconorchestrator/containermanager.py; changing how a…
redamon-testing
How RedAmon tests actually run and how to author them: the per-file Docker gate, the unit/integration/live tiers, and the failure modes that make a green run a lie. Trigger: editing any test.py, .test.ts(x) or tests/.sh; a test that is red, skipped or xfailed; a request to "run the tests", "make it green" or check…
agentic-tool-integration
Wiring a new tool the AI agent can call (not the recon pipeline): the tool registry, the phase map, the hardcoded dispatch chokepoint, and the duplicated execution paths that make a tool work in single mode but silently break in parallel plans. Trigger: adding or editing a tool the agent invokes; editing…
builtin-agent-skill
Adding a built-in Agent Skill (an attack technique like ssrf, xxe, rce) that ships hardcoded in RedAmon: classified by the Intent Router, injected into the agent prompt, toggled per project, badged in the chat drawer. Nine layers across agentic and webapp, two of which fail with no error. Trigger: adding or editing a…
graph-db-writes
Writing to the Neo4j attack-surface graph in RedAmon: the tenant-isolation MERGE key every entity node must carry, where graph methods live (mixins, not the client), and the schema places that must be updated together. A MERGE missing the tenant key silently merges one project's data into another's. Trigger: editing…
project-settings-cascade
Changing or adding a project setting / default value in RedAmon. A single setting is duplicated across Prisma, two separate Python settings modules, the orchestrator defaults endpoint, and the frontend fallback; miss a layer and the UI shows one value while the backend uses another, and existing projects keep the old…