Customization
Before executing, check for user customizations at:
~/.opencode/PAI/USER/SKILLCUSTOMIZATIONS/OSINT/
If this directory exists, load and apply any PREFERENCES.md, configurations, or resources found there. These override default behavior. If the directory does not exist, proceed with skill defaults.
OSINT Skill
Open Source Intelligence gathering for authorized investigations.
Voice Notification
When executing a workflow, do BOTH:
Send voice notification:
curl -s -X POST http://localhost:8888/notify \
-H "Content-Type: application/json" \
-d '{"message": "Running the WORKFLOWNAME workflow from the OSINT skill"}' \
> /dev/null 2>&1 &
Output text notification:
Running the **WorkflowName** workflow from the **OSINT** skill...
Workflow Routing
| Investigation Type |
Workflow |
Context |
| People lookup |
Workflows/PeopleLookup.md |
PeopleTools.md |
| Company lookup |
Workflows/CompanyLookup.md |
CompanyTools.md |
| Investment due diligence |
Workflows/CompanyDueDiligence.md |
CompanyTools.md |
| Entity/threat intel |
Workflows/EntityLookup.md |
EntityTools.md |
Trigger Patterns
People OSINT:
- "do OSINT on [person]", "research [person]", "background check on [person]"
- "who is [person]", "find info about [person]", "investigate this person"
-> Route to
Workflows/PeopleLookup.md
Company OSINT:
- "do OSINT on [company]", "research [company]", "company intelligence"
- "what can you find about [company]", "investigate [company]"
-> Route to
Workflows/CompanyLookup.md
Investment Due Diligence:
- "due diligence on [company]", "vet [company]", "is [company] legitimate"
- "assess [company]", "should we work with [company]"
-> Route to
Workflows/CompanyDueDiligence.md
Entity/Threat Intel:
- "investigate [domain]", "threat intelligence on [entity]", "is this domain malicious"
- "research this threat actor", "check [domain]", "analyze [entity]"
-> Route to
Workflows/EntityLookup.md
Authorization (REQUIRED)
Before ANY investigation, verify:
STOP if any checkbox is unchecked. See EthicalFramework.md for details.
Resource Index
| File |
Purpose |
EthicalFramework.md |
Authorization, legal, ethical boundaries |
Methodology.md |
Collection methods, verification, reporting |
PeopleTools.md |
People search, social media, public records |
CompanyTools.md |
Business databases, DNS, tech profiling |
EntityTools.md |
Threat intel, scanning, malware analysis |
Integration
Automatic skill invocations:
- Research Skill - Parallel researcher agent deployment (REQUIRED)
- Recon Skill - Technical infrastructure reconnaissance
Agent fleet patterns:
- Quick lookup: 4-6 agents
- Standard investigation: 8-16 agents
- Comprehensive due diligence: 24-32 agents
Researcher types:
| Researcher |
Best For |
| PerplexityResearcher |
Current web data, social media, company updates |
| DeepResearcher |
Academic depth, professional backgrounds |
| GeminiResearcher |
Multi-perspective, cross-domain connections |
| GrokResearcher |
Contrarian analysis, fact-checking |
File Organization
Active investigations:
~/.opencode/MEMORY/WORK/$(jq -r '.work_dir' ~/.opencode/MEMORY/STATE/current-work.json)/scratch/YYYY-MM-DD-HHMMSS_osint-[target]/
Archived reports:
~/.opencode/History/research/YYYY-MM/[target]-osint/
Ethical Guardrails
ALLOWED: Public sources only - websites, social media, public records, search engines, archived content
PROHIBITED: Private data, unauthorized access, social engineering, purchasing breached data, ToS violations
See EthicalFramework.md for complete requirements.
Version: 2.0 (Canonical Structure)
Last Updated: December 2024
1---2name: osint3description: Open source intelligence gathering. USE WHEN OSINT, due diligence, background check, research person, company intel, investigate. SkillSearch('osint') for docs.4---56## Customization78**Before executing, check for user customizations at:**9`~/.opencode/PAI/USER/SKILLCUSTOMIZATIONS/OSINT/`1011If this directory exists, load and apply any PREFERENCES.md, configurations, or resources found there. These override default behavior. If the directory does not exist, proceed with skill defaults.1213# OSINT Skill1415Open Source Intelligence gathering for authorized investigations.1617---1819## Voice Notification2021**When executing a workflow, do BOTH:**22231. **Send voice notification**:24 ```bash25 curl -s -X POST http://localhost:8888/notify \26 -H "Content-Type: application/json" \27 -d '{"message": "Running the WORKFLOWNAME workflow from the OSINT skill"}' \28 > /dev/null 2>&1 &29 ```30312. **Output text notification**:32 ```33 Running the **WorkflowName** workflow from the **OSINT** skill...34 ```3536## Workflow Routing3738| Investigation Type | Workflow | Context |39|-------------------|----------|---------|40| People lookup | `Workflows/PeopleLookup.md` | `PeopleTools.md` |41| Company lookup | `Workflows/CompanyLookup.md` | `CompanyTools.md` |42| Investment due diligence | `Workflows/CompanyDueDiligence.md` | `CompanyTools.md` |43| Entity/threat intel | `Workflows/EntityLookup.md` | `EntityTools.md` |4445---4647## Trigger Patterns4849**People OSINT:**50- "do OSINT on [person]", "research [person]", "background check on [person]"51- "who is [person]", "find info about [person]", "investigate this person"52-> Route to `Workflows/PeopleLookup.md`5354**Company OSINT:**55- "do OSINT on [company]", "research [company]", "company intelligence"56- "what can you find about [company]", "investigate [company]"57-> Route to `Workflows/CompanyLookup.md`5859**Investment Due Diligence:**60- "due diligence on [company]", "vet [company]", "is [company] legitimate"61- "assess [company]", "should we work with [company]"62-> Route to `Workflows/CompanyDueDiligence.md`6364**Entity/Threat Intel:**65- "investigate [domain]", "threat intelligence on [entity]", "is this domain malicious"66- "research this threat actor", "check [domain]", "analyze [entity]"67-> Route to `Workflows/EntityLookup.md`6869---7071## Authorization (REQUIRED)7273**Before ANY investigation, verify:**74- [ ] Explicit authorization from client75- [ ] Clear scope definition76- [ ] Legal compliance confirmed77- [ ] Documentation in place7879**STOP if any checkbox is unchecked.** See `EthicalFramework.md` for details.8081---8283## Resource Index8485| File | Purpose |86|------|---------|87| `EthicalFramework.md` | Authorization, legal, ethical boundaries |88| `Methodology.md` | Collection methods, verification, reporting |89| `PeopleTools.md` | People search, social media, public records |90| `CompanyTools.md` | Business databases, DNS, tech profiling |91| `EntityTools.md` | Threat intel, scanning, malware analysis |9293---9495## Integration9697**Automatic skill invocations:**98- **Research Skill** - Parallel researcher agent deployment (REQUIRED)99- **Recon Skill** - Technical infrastructure reconnaissance100101**Agent fleet patterns:**102- Quick lookup: 4-6 agents103- Standard investigation: 8-16 agents104- Comprehensive due diligence: 24-32 agents105106**Researcher types:**107| Researcher | Best For |108|------------|----------|109| PerplexityResearcher | Current web data, social media, company updates |110| DeepResearcher | Academic depth, professional backgrounds |111| GeminiResearcher | Multi-perspective, cross-domain connections |112| GrokResearcher | Contrarian analysis, fact-checking |113114---115116## File Organization117118**Active investigations:**119```120~/.opencode/MEMORY/WORK/$(jq -r '.work_dir' ~/.opencode/MEMORY/STATE/current-work.json)/scratch/YYYY-MM-DD-HHMMSS_osint-[target]/121```122123**Archived reports:**124```125~/.opencode/History/research/YYYY-MM/[target]-osint/126```127128---129130## Ethical Guardrails131132**ALLOWED:** Public sources only - websites, social media, public records, search engines, archived content133134**PROHIBITED:** Private data, unauthorized access, social engineering, purchasing breached data, ToS violations135136See `EthicalFramework.md` for complete requirements.137138---139140**Version:** 2.0 (Canonical Structure)141**Last Updated:** December 2024