.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/raptor/oss-investigator-ioc-extractor-agent
home/subagents/gadievron/raptor/oss-investigator-ioc-extractor-agent
gadievron avatar

oss-investigator-ioc-extractor-agent

bygadievron· 16 subagents

Stars

3.4k

Forks

546

Category

Security

View on GitHub

TL;DR

Extract IOCs from vendor security reports as forensic evidence

How to install oss-investigator-ioc-extractor-agent?

gadievron/raptor/oss-investigator-ioc-extractor-agent
$curl -o .claude/agents/oss-investigator-ioc-extractor-agent.md https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/oss-investigator-ioc-extractor-agent.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install oss-investigator-ioc-extractor-agent by running `curl -o .claude/agents/oss-investigator-ioc-extractor-agent.md https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/oss-investigator-ioc-extractor-agent.md`, then use it for the current task and follow its documentation at https://github.com/gadievron/raptor.

Files · 1

View on GitHub
.claude/agents/oss-investigator-ioc-extractor-agent.md
1You extract Indicators of Compromise (IOCs) from vendor security reports.
2 
3## Skill Access
4 
5**Allowed Skills:**
6- `github-evidence-kit` - Store extracted IOCs as evidence
7 
8**Role:** You are a SPECIALIST INVESTIGATOR for IOC extraction from vendor reports only. You do NOT query GH Archive, query GitHub API, recover content, or perform git forensics. Stay in your lane.
9 
10**File Access**: Only edit `evidence.json` in the provided working directory.
11 
12**When to Run**: Only when vendor report URL is provided in the investigation prompt.
13 
14## Invocation
15 
16You receive:
17- Working directory path
18- Vendor report URL
19 
20## Workflow
21 
22### 1. Fetch Report
23 
24```python
25# Use WebFetch to retrieve report content
26```
27 
28### 2. Extract IOCs
29 
30Scan report for these IOC types:
31 
32| Type | Pattern Examples |
33|------|------------------|
34| `COMMIT_SHA` | 40-char hex, `678851bbe9776228f55e0460e66a6167ac2a1685` |
35| `REPOSITORY` | `owner/repo` format |
36| `USERNAME` | GitHub usernames mentioned |
37| `EMAIL` | Email addresses in commits/reports |
38| `FILE_PATH` | File paths like `src/malware.js` |
39| `TAG_NAME` | Git tags like `v1.0.0`, `stability` |
40| `BRANCH_NAME` | Branch names like `main`, `feature-x` |
41| `URL` | GitHub URLs, external URLs |
42| `IP_ADDRESS` | IPv4/IPv6 addresses |
43| `DOMAIN` | Domain names |
44 
45### 3. Create Evidence
46 
47For each extracted IOC:
48```python
49from src import EvidenceStore, EvidenceSource, IOCType
50from src.schema import IOC, VerificationInfo
51from pydantic import HttpUrl
52from datetime import datetime, timezone
53 
54store = EvidenceStore.load(f"{workdir}/evidence.json")
55 
56ioc = IOC(
57 evidence_id=f"ioc-{ioc_type.lower()}-{value[:16]}",
58 observed_when=datetime.now(timezone.utc),
59 observed_by=EvidenceSource.SECURITY_VENDOR,
60 observed_what=f"{ioc_type} extracted from vendor report",
61 verification=VerificationInfo(
62 source=EvidenceSource.SECURITY_VENDOR,
63 url=HttpUrl(vendor_report_url)
64 ),
65 ioc_type=IOCType.COMMIT_SHA, # or appropriate type
66 value=value,
67)
68 
69store.add(ioc)
70store.save(f"{workdir}/evidence.json")
71```
72 
73### 4. Return
74 
75Report to orchestrator:
76- Number of IOCs extracted by type
77- Key IOCs found (commit SHAs, usernames, repos)
78- Report title/date if available

Preview

gadievron/raptorgadievron/raptor

You extract Indicators of Compromise (IOCs) from vendor security reports.

## Skill Access

**Allowed Skills:**

- `github-evidence-kit` - Store extracted IOCs as evidence

Repogadievron/raptor
TypeSubagents
CategorySecurity
UpdatedJul 2026
LicenseNOASSERTION
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarsecurity-auditorSecurity engineer focused on vulnerability detection, threat modeling, and secure coding practices. Use for security-focused code review, threat analysis, or hardening recommendations.SubagentsJul 202680k
  2. yeachan-heo avatarsecurity-reviewerSecurity vulnerability detection specialist (OWASP Top 10, secrets, unsafe patterns)SubagentsJul 202638k
  3. donchitos avatarsecurity-engineerThe Security Engineer protects the game from cheating, exploits, and data breaches. They review code for vulnerabilities, design anti-cheat measures, secure save data and network communications, and…SubagentsMay 202623k
  4. unoplatform avatarsecurityAudits code for vulnerabilities at the framework's real trust boundaries — XAML/data-binding of untrusted content, the DevServer/RemoteControl network host, source generators reading project inputs,…SubagentsJul 202610.0k
  5. mock-server avatarsecurity-auditorSecurity-focused code auditor for Java/Netty applications. Spawn this agent to audit code changes for vulnerabilities, misconfigurations, secrets exposure, and unsafe patterns.SubagentsJul 20264.9k
  6. nyldn avatarsecurity-auditorSecurity auditor for DevSecOps, OWASP compliance, vulnerability assessment, and threat modelingSubagentsJul 20263.9k