소스 정보
- 저장소
- HezaoHezao/poirot
- 최근 소스 활동
- 2026년 7월 28일 12:58
- 감지된 SKILL.md 언어
- 영어
- 스타
- 212
- 포크
- 15
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/HezaoHezao/poirot --skill osint-investigation명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | osint-investigation |
| description | Public-records OSINT: SEC, sanctions, courts, property. |
| allowed-tools | ["bash","web_search","browse_page","write_file"] |
| enabled | true |
| related-skills | ["deep-research","arxiv"] |
| license | MIT |
| author | Adapted from hermes-agent (Nous Research, MIT); ShinMegamiBoson/OpenPlanter |
Investigative framework for public-records OSINT: government contracts, corporate filings, lobbying, sanctions, offshore leaks, property records, court records, web archives, knowledge bases, and global news. Resolve entities across heterogeneous sources, build cross-links with explicit confidence, and produce structured evidence chains.
Python stdlib only. Zero install. Most sources work with no API key.
Use when the user asks for:
| Source | What | Access |
|---|---|---|
| SEC EDGAR | US public company filings (10-K, 10-Q, 8-K, 13F) | curl to https://efts.sec.gov/LATEST/search-index?q=... |
| USAspending.gov | Federal contracts and grants | curl to https://api.usaspending.gov/api/v2/... |
| Senate Lobbying | Lobbying Disclosure Act filings | curl to https://lda.senate.gov/api/v1/... |
| OFAC SDN | Sanctions list | curl to https://www.treasury.gov/ofac/... |
| ICIJ Offshore Leaks | Panama Papers, Paradise Papers, etc. | browse_page to https://offshoreleaks.icij.org/... |
| OpenCorporates | Corporate registry (optional free token) | curl to https://api.opencorporates.com/... |
| Source | What | Access |
|---|---|---|
| NYC ACRIS | NYC property records (deeds, mortgages) | browse_page to https://a836-acris.nyc.gov/... |
| CourtListener | Federal + state court opinions | curl to https://www.courtlistener.com/api/... |
| Source | What | Access |
|---|---|---|
| Wayback Machine | Archived web pages | browse_page to https://web.archive.org/web/... |
| Wikipedia/Wikidata | Encyclopedia + structured data | bash with curl to Wikipedia API |
| GDELT | Global news monitoring | bash with curl to https://api.gdeltproject.org/... |
Before cross-referencing, resolve the entity across sources:
For each relevant source, query by entity name or identifier:
# SEC EDGAR — search for company filings
curl -s "https://efts.sec.gov/LATEST/search-index?q=%22Company+Name%22" | python3 -c "..."
# USAspending — federal contracts to entity
curl -s -X POST "https://api.usaspending.gov/api/v2/search/spending_by_award/" -d '{"filters":{...}}'
# OFAC SDN — check sanctions list
curl -s "https://www.treasury.gov/ofac/downloads/sdn.csv" | grep -i "entity name"
Build explicit cross-links between sources:
For each finding, assign confidence:
Construct an evidence chain showing how findings connect:
[Source A: fact 1] → [Source B: fact 2] → [Inference: conclusion]
confidence: High confidence: Medium confidence: Medium
Produce a structured investigation report:
# OSINT Investigation: [Entity / Topic]
## Executive Summary
[2-3 paragraph overview of findings]
## Entity Profile
- **Canonical Name**: ...
- **Aliases**: ...
- **Identifiers**: EIN, LEI, CIK, etc.
- **Known Addresses**: ...
## Findings by Source
### SEC EDGAR
[Findings with dates, filing types, key data]
### USAspending
[Contract awards, amounts, dates, agencies]
### OFAC SDN
[Sanctions status: CLEAR / MATCH (with details)]
### [Other sources...]
## Cross-Link Analysis
[Explicit connections between findings across sources]
## Evidence Chain
[Step-by-step reasoning from raw data to conclusions]
## Confidence Assessment
[Summary of confidence levels for key conclusions]
## Sources
[All URLs queried, with access dates]
Save to .poirot/outputs/osint-{entity}-{YYYYMMDD}.md.