add-partial-recon

add-partial-recon is a skill for Claude Code, Codex from samugit83/redamon. It costs 103 tokens per session (763 once invoked), scanned A, original, MIT.

A workflow for making one security-scanning tool run on demand as a single phase, using information already stored in the scan's graph database.

In plain words
What is it for?
It is for adding single-phase scan reruns, connecting their inputs to the graph, building the input form, and sharing the setup with full scans.
Why use it?
It prevents partial runs from creating duplicate graph records or asking users to manually enter values that should come from existing scan data.

Skill for Claude CodeCodex

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 skills/samugit83/redamon/add-partial-recon
Any agent
npx skills add samugit83/redamon --skill add-partial-recon
Clone the repo
git clone --depth 1 https://github.com/samugit83/redamon

Made for: Claude Code, Codex.

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 add-partial-recon

README.md
[![agentmods](https://agentmods.dev/badge/skills/samugit83/redamon/add-partial-recon.svg)](https://agentmods.dev/skills/samugit83/redamon/add-partial-recon)
Your own site
<a href="https://agentmods.dev/skills/samugit83/redamon/add-partial-recon"><img src="https://agentmods.dev/badge/skills/samugit83/redamon/add-partial-recon.svg" alt="Measured on agentmods" height="20"></a>
Per session 103 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 763 The whole file, excluding the scripts and references it only reads on demand.
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.00103 $0.00763
Opus 5 $0.00051 $0.00381
Sonnet 5 $0.00021 $0.00153
Haiku 4.5 $0.00010 $0.00076

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

Security

Grade A, and why

add-partial-recon 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 4d 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.

skills/add-partial-recon/SKILL.md · 71 lines

How it starts

The opening of the file, as written. The whole thing — 71 lines — stays where its author put it; the contents beside it link to each section on GitHub.

When to Use

  • Making an existing recon tool runnable as a single on-demand phase from the graph.

For adding the tool to the full pipeline, use recon-tool-integration. For the graph write itself, use graph-db-writes. This skill is the partial-recon path: graph-sourced inputs, the modal, and the single-phase re-run.


Critical Rules

  • NEVER let partial-recon results create duplicate nodes. Partial runs merge into the existing graph and must dedup via MERGE on the tenant triple - see graph-db-writes. Partial and full share the same graph.
  • NEVER expose a graph-only input type as a manual textarea. SECTION_INPUT_MAP in nodeMapping.ts lists what the tool reads from the graph, but only the types that make sense for manual entry get a user field. Types like Port and Endpoint come from the graph only and must not be hand-entered.
  • ALWAYS wire the shared entry so it works in BOTH the full pipeline AND partial recon. Partial recon is spawned as a separate container from the full pipeline (recon_orchestrator/container_manager.py); hook the shared entry function once so both inherit (see recon-ai-enrichment for the same rule).
  • ALWAYS mirror the reference impl matching your tool's input shape, not an arbitrary one: Naabu (Subdomain + IP), Masscan (IP only), Nmap (IP + Port), Katana (URL). The input-node shape drives the whole wiring.

Input-node shape -> reference impl

Tool reads User enters Mirror
Subdomain + IP Subdomain + IP (two textareas) Naabu
IP only IP (one textarea) Masscan
IP + Port IP (Port from graph) Nmap
BaseURL URL (maps to a BaseURL node) Katana

Commands

# recon/*.py is spawned fresh per job (volume-mounted) - no rebuild
./redamon.sh test unit                    # recon + root-recon sections

Resources

Read the full file on GitHub · 71 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. 4d ago First seen · 71 lines · 103 tokens per session scan A 91b1a9b14280

Subscribe to this mod's changes

add-partial-recon is a skill published in the GitHub repository samugit83/redamon (2,380 stars, last pushed yesterday), licensed MIT. It adds 103 tokens to every session and 763 once invoked, about $0.0005 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-30.

Related

Other skills, from other repositories

workflow-orchestrator

Module Loop and Iteration Skill for orchestrating multi-phase penetration testing workflows. Use when coordinating sequential tool execution, managing dependencies between reconnaissance and vulnerability scanning modules, implementing adaptive fallback strategies, or managing workflow state across iterations.…

SHAdd0WTAka/Zen-Ai-Pentest · 85 tokens

poc-validator

Proof-of-Concept (PoC) Validation Skill for security exploit verification. Use when validating exploitability of vulnerabilities, generating tailored payloads, executing exploits in sandboxed environments, or verifying successful exploitation (e.g., SQL injection, CVE exploitation, command injection). Triggers on…

SHAdd0WTAka/Zen-Ai-Pentest · 86 tokens

Reconnaissance & OSINT Automation

Passive and active reconnaissance, subdomain enumeration, DNS analysis, technology fingerprinting, and OSINT data correlation for authorized security assessments.

Masriyan/Claude-Code-CyberSecurity-Skill · 33 tokens

research-orchestrator

Parallel research with 4 specialized agents (Official, Practical, Edge Cases, Future).

SHAdd0WTAka/Zen-Ai-Pentest · 22 tokens

tdd-agent

Autonomous test-driven development agent that writes code to make tests pass.

SHAdd0WTAka/Zen-Ai-Pentest · 17 tokens

kali-pentest

Execute authorized penetration testing via Kali Linux CLI tools over SSH or Docker. Covers: information gathering, vulnerability analysis, sniffing & spoofing, web/API testing, exploitation, password attacks, wireless, cloud-native security, RFID/NFC, VoIP/ICS, reverse engineering, forensics, post-exploitation/C2, and…

x-glacier/kali-pentest · 73 tokens