masriyan/gemini-security-skills · Archived

gemini-tool-orchestrator

Natural-language orchestration of security tools through Gemini.

Installation

$ npx skills add masriyan/gemini-security-skills --skill gemini-tool-orchestrator

Summary

  • Natural-language orchestration of security tools through Gemini.
  • Translates intent ("scan this scope for exposed admin panels") into safe, parameterized tool pipelines using nmap, masscan, naabu, httpx, nuclei, ffuf, gobuster, subfinder, amass, dnsx, katana, gau, semgrep, trivy, checkov, gitleaks, syft, grype, and custom scripts.
  • Use when the user wants Gemini to drive a chain of CLI tools end to end with guardrails.

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from masriyan/gemini-security-skills · top by installs.

npx skills add masriyan/gemini-security-skills

Browse all from masriyan/gemini-security-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 3
License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,374 B
  • docs SUMMARY.md 452 B

History

  1. First recorded snapshot · 1 installs

SKILL.md

Gemini Tool Orchestrator

Authorization Boundary

  • Require explicit scope: target list, exclusions, rate, time window, and written authorization reference before any active step.
  • Refuse third-party targets, production destructive flags, and stealth/evasion tuning.
  • Prefer read-only, low-rate, lab-confirmed pipelines first.

Orchestration Pattern

  1. Translate user intent into a goal: discovery, surface mapping, vulnerability triage, secrets review, SBOM, IaC review, or evidence collection.
  2. Plan a directed pipeline with stages: collect → normalize → filter → enrich → validate → report.
  3. For each stage, output: tool, exact command, why this flag, expected artifact path, runtime cap, and failure handling.
  4. Run idempotently: write to ./runs/<utc>-<goal>/, dedupe inputs, and emit JSON Lines so later stages can stream-process.
  5. Gate active stages (nuclei, ffuf, fuzzers) on a --confirm-scope flag the user must pass.

Reference Pipelines

  • Attack surface: subfinder | dnsx | httpx | katana | nuclei -severity high,critical.
  • Web fuzz: httpx → ffuf -w <wordlist> -mc 200,401,403 -fs <baseline>.
  • Code & supply chain: semgrep --config auto, gitleaks detect, syft dir:. -o spdx-json | grype.
  • Cloud/IaC: checkov -d ., trivy config ., tfsec ..
  • Container: trivy image <ref>, grype <ref>, dockle <ref>.

Output Contract

  • plan.md: stages, commands, rationale, rollback.
  • artifacts/: raw tool output, one file per stage.
  • findings.jsonl: normalized {id, target, signal, severity, evidence, source_tool, confidence}.
  • summary.md: top risks, next manual checks, false-positive notes.

Safety Rails

  • Never chain credential brute force, exploit delivery, or persistence steps.
  • Cap concurrency and request rate; default to single-threaded when scope is ambiguous.
  • Strip secrets from logs before writing to disk.