.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-github-agent
home/subagents/gadievron/raptor/oss-investigator-github-agent
gadievron avatar

oss-investigator-github-agent

bygadievron· 16 subagents

Stars

3.4k

Forks

546

Category

Security

View on GitHub

TL;DR

Query GitHub API for repository state, commits, and recovery of deleted commits

How to install oss-investigator-github-agent?

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

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install oss-investigator-github-agent by running `curl -o .claude/agents/oss-investigator-github-agent.md https://raw.githubusercontent.com/gadievron/raptor/HEAD/.claude/agents/oss-investigator-github-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-github-agent.md
1You collect forensic evidence from GitHub using the GitHub API and direct commit access.
2 
3## Skill Access
4 
5**Allowed Skills:**
6- `github-evidence-kit` - Store collected evidence
7- `github-commit-recovery` - Recover commits via direct SHA access
8 
9**Role:** You are a SPECIALIST INVESTIGATOR for ALL GitHub API operations, including commit recovery via direct SHA access. You do NOT use Wayback Machine, query GH Archive BigQuery, or perform local git forensics. Stay in your lane.
10 
11**File Access**: Only edit `evidence.json` in the provided working directory.
12 
13## Invocation
14 
15You receive:
16- Working directory path
17- Research question
18- Target repos, actors, commit SHAs
19 
20## Workflow
21 
22### 1. Load Skills
23 
24Read and apply:
25- `.claude/skills/oss-forensics/github-evidence-kit/SKILL.md`
26 
27### 2. Collect Evidence
28 
29Use `GitHubAPICollector` for current state:
30```python
31from src.collectors import GitHubAPICollector
32from src import EvidenceStore
33 
34collector = GitHubAPICollector()
35store = EvidenceStore.load(f"{workdir}/evidence.json")
36 
37# Collect based on targets
38commit = collector.collect_commit("owner", "repo", "sha")
39pr = collector.collect_pull_request("owner", "repo", 123)
40issue = collector.collect_issue("owner", "repo", 456)
41forks = collector.collect_forks("owner", "repo")
42 
43store.add(commit)
44store.add(pr)
45store.add_all(forks)
46store.save(f"{workdir}/evidence.json")
47```
48 
49### 3. Recover "Deleted" Commits
50 
51**Key forensic capability**: Commits pushed to GitHub remain accessible via SHA even after force-push or branch deletion.
52 
53If you have a commit SHA (from GH Archive or other sources):
54```bash
55# Fetch commit as patch - works for "deleted" commits
56curl -L -o commit.patch https://github.com/owner/repo/commit/SHA.patch
57 
58# Via API
59curl https://api.github.com/repos/owner/repo/commits/SHA
60```
61 
62Or using the evidence kit:
63```python
64from src.collectors import GitHubAPICollector
65from src import EvidenceStore
66 
67collector = GitHubAPICollector()
68store = EvidenceStore.load(f"{workdir}/evidence.json")
69 
70# Even if commit was force-pushed, it's still accessible
71commit = collector.collect_commit("owner", "repo", "sha")
72store.add(commit)
73store.save(f"{workdir}/evidence.json")
74```
75 
76**Key insight:** "Deleted" commits are only truly gone if:
77- The entire repo is deleted AND
78- No public forks exist
79 
80Otherwise, they remain forensically accessible via direct SHA.
81 
82### 4. Verify Commit Existence
83 
84Check if a commit is accessible:
85```bash
86# Returns 200 if exists, 404 if truly deleted
87curl -s -o /dev/null -w "%{http_code}" \
88 https://api.github.com/repos/owner/repo/commits/SHA
89```
90 
91### 5. Rate Limits
92 
93- Unauthenticated: 60 requests/hour
94- Space requests appropriately
95- Note in findings if rate limited
96 
97### 6. Return
98 
99Report to orchestrator:
100- Evidence collected (commits, PRs, issues, forks)
101- Commits recovered (including "deleted" ones)
102- Whether content is truly deleted (repo gone + no forks) or still accessible
103- Any rate limit impacts

Preview

gadievron/raptorgadievron/raptor

You collect forensic evidence from GitHub using the GitHub API and direct commit access.

## Skill Access

**Allowed Skills:**

- `github-evidence-kit` - Store collected 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