kotaro-kinoshita /
yomitoku
YomiTokuはAIを活用した日本語文書解析エンジンを提供するPythonパッケージです。 Yomitoku is an AI-powered document image analysis package designed specifically for the Japanese language.
80/100 healthLoading repository data…
aiassistsecure / repository
An AI-powered Python agent that discovers angel investors, micro funds, seed funds, family offices, and operator-investors who back companies in your category. Scans the web, extracts portfolio pages, monitors social signals across Reddit, Hacker News, and Twitter, and enriches every investor with verified Twitter and LinkedIn contacts.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
Find the investors already interested in what you're building.
An AI-powered Python agent that discovers angel investors, micro funds, seed funds, family offices, and operator-investors who back companies in your category. Scans the web, extracts portfolio pages, monitors social signals across Reddit, Hacker News, and Twitter, and enriches every investor with verified Twitter and LinkedIn contacts.
Built for founders raising pre-seed or seed rounds who need to find the right investors — not just any investors.
$ python angel.py "AI SaaS artificial intelligence" --max-funds 10
============================================================
Discovering investors & funds for: AI SaaS artificial intelligence
============================================================
Searching: top angel investors AI SaaS artificial intelligence startups
Searching: seed funds micro VCs investing in AI SaaS artificial intelligence
Searching: family offices venture capital AI SaaS artificial intelligence portfolio
...
Scanning signals across Reddit, Hacker News, Twitter...
Found 22 signal(s) from intelligence scan.
Identified 18 relevant funds/investors.
- Ben Lang (angel investor)
- Stella Garber (angel investor)
- Forum Ventures (seed fund)
- Y Combinator (venture fund)
- Andreessen Horowitz (a16z) (venture fund)
- Lightspeed Venture Partners (venture fund)
- NFX (venture fund)
- Carib Ventures, LLC (family office)
...
[1/10] Looking up investors at Forum Ventures...
Found 14 investor(s):
- Michael Cardamone (CEO & Managing Partner)
- Jonah Midanik (General Partner)
- James Murphy (Managing Partner)
...
[2/10] Looking up investors at Andreessen Horowitz (a16z)...
Found 10 investor(s):
- Martin Casado (General Partner)
- Anjney Midha (General Partner)
- Marc Andreessen (Co-Founder and General Partner)
...
============================================================
PROGRESS REPORT
============================================================
Funds/Orgs: 10 total, 8 scanned, 2 pending
Investors: 91 total
With Twitter: 37
With LinkedIn: 71
Has any contact: 77 (84%)
Needs enriching: 14
============================================================
Real results from a single topic — 10 funds, 91 investors, 84% with verified contact info.
| Fund | Type | Investors Found | With Contact |
|---|---|---|---|
| Lightspeed Venture Partners | venture fund | 46 | 44 |
| Forum Ventures | seed fund | 14 | 12 |
| NFX | venture fund | 13 | 8 |
| Andreessen Horowitz (a16z) | venture fund | 10 | 8 |
| ScOp Venture Capital | venture fund | 4 | 1 |
| Y Combinator | venture fund | 2 | 2 |
| Ben Lang | angel investor | 1 | 1 |
| Stella Garber | angel investor | 1 | 1 |
| Name | Title | Fund | ||
|---|---|---|---|---|
| Marc Andreessen | Co-Founder, GP | a16z | — | yes |
| Ben Horowitz | Co-Founder, GP | a16z | yes | yes |
| Justine Moore | Partner | a16z | yes | yes |
| Pete Flint | General Partner | NFX | yes | yes |
| Morgan Beller | General Partner | NFX | yes | yes |
| Semil Shah | Venture Partner | Lightspeed | yes | yes |
| Michael Mignano | Partner | Lightspeed | yes | yes |
| Nnamdi Iregbulem | Partner | Lightspeed | yes | yes |
| Brad Flora | Group Partner | Y Combinator | yes | yes |
| Stella Garber | Angel / CEO, Hoop | — | yes | yes |
| Bocar Dia | Partner | Forum Ventures | yes | yes |
| Guru Chahal | Partner | Lightspeed | yes | yes |
--enrich-only to fill in missing contacts without rediscovering.git clone https://github.com/youruser/angel.git
cd angel
pip install -r requirements.txt
cp .env.example .env # Add your AiAssist.net API key
python angel.py "your investment category here"
requests and httpx librariesaiassist-secure-intelligence SDK (for social signal scanning)/v1/chat/completions — AI analysis (GPT-5.4 via OpenAI provider)/v1/search — Web search/v1/web/extract — Web page extractionDiscover funds, find investors, scan signals, enrich contacts — the full pipeline:
python angel.py "AI SaaS artificial intelligence"
Focus on the top N most relevant funds:
python angel.py "AI SaaS" --max-funds 10
Already ran a scan but want more contacts? Skip discovery entirely:
python angel.py "AI SaaS" --enrich-only
Interrupted mid-run? Just run the same command again:
# Run 1 — scans 4 of 10 funds, then times out
python angel.py "AI SaaS" --max-funds 10
# Run 2 — resumes at fund 5, skips the first 4
python angel.py "AI SaaS" --max-funds 10
# Run 3 — all 10 done, enriches remaining contacts
python angel.py "AI SaaS" --max-funds 10
All output is saved to the output/ directory (gitignored). Each topic gets two persistent CSV files.
output/funds_<topic>.csv| Column | Description |
|---|---|
name | Fund or investor name |
type | angel investor, micro fund, seed fund, family office, syndicate, venture fund |
url | Website URL |
thesis | Investment thesis / focus area |
stage_focus | Pre-seed, seed, Series A, growth, etc. |
check_size | Typical check size if known |
notable_portfolio | Notable portfolio companies in the space |
relevance | Why they're relevant to your category |
source_url | Where the information was found |
output/investors_<topic>.csv| Column | Description |
|---|---|
name | Investor's full name |
title | Role — Partner, GP, Managing Director, Angel, etc. |
fund | Which fund or org they're with |
fund_url | Fund's website |
type | Fund type (angel, seed, venture, family office) |
thesis | Personal investment focus |
portfolio_overlap | Companies they've backed in your space |
signal_source | Social signal matched (Reddit post, tweet, etc.) |
email | Email address (if found) |
twitter | Twitter/X handle |
linkedin | LinkedIn profile URL |
source_url | Where the investor info was found |
┌─────────────┐ ┌──────────────┐ ┌────────────────┐
│ Discover │────>│ Extract │────>│ Scan Signals │
│ │ │ │ │ │
│ Web search │ │ Team pages, │ │ Intelligence │
│ for funds, │ │ portfolio │ │ SDK scans │
│ angels, │ │ pages, │ │ Reddit, HN, │
│ syndicates │ │ thesis → │ │ Twitter for │
│ in your │ │ individual │ │ investor │
│ category │ │ investors │ │ activity │
└─────────────┘ └──────────────┘ └────────────────┘
│
┌─────────────────────┘
v
┌────────────────────┐ ┌─────────────┐
│ Enrich Contacts │────>│ Save │
│ │ │ │
│ 1. Team page links │ │ Dedupe, │
│ 2. Individual │ │ sanitize, │
│ web search │ │ write CSV │
│ 3. Signal matching │ │ (incremental │
│ │ │ + resumable)│
└────────────────────┘ └─────────────┘
angel/
├── angel.py Main entry point — the agent
├── requirements.txt Python dependencies
├── .env.example Template for API key setup
├── .gitignore Excludes output/, .env, __pycache__/
├── output/ CSV output directory (gitignored)
│ ├── funds_<topic>.csv
│ └── investors_<topic>.csv
├── README.md
└── LICENSE
| Detail | Value |
|---|---|
| AI Model | GPT-5.4 (via AiAssist.net OpenAI proxy) |
| Intelligence SDK | aiassist-secure-intelligence v1.1.1 |
| Signal Sources | Reddit, Hacker News, Twitter (22 sources available) |
| Search Depth | advanced (full page analysis) |
| Max Content Extraction | 15,000 characters per page |
| Enrichment Batch Size | 3 investors per individual search |
| Team Page Scan | Extracts Twitter/LinkedIn links from /team, /people, /partners pages |
| Retry Policy | 3 attempts, exponential backoff (1.5x) |
| Retryable Status Codes | 408, 409, 429, 500, 502, 503, 504 |
| Connection Pooling | requests.Session reused across all calls |
| Deduplication | Funds by name + domain, investors by normalized name + fund |
| Incremental Saves | After every fund scan and every enrichment batch |
| Fabrication Policy | Never — only includes details verified from web sources |
MIT — see [LICE
Selected from shared topics, language and repository description—not editorial ratings.
kotaro-kinoshita /
YomiTokuはAIを活用した日本語文書解析エンジンを提供するPythonパッケージです。 Yomitoku is an AI-powered document image analysis package designed specifically for the Japanese language.
80/100 healthredhuntlabs /
An AI-powered Personal Identifiable Information (PII) scanner.
79/100 healthOWASP /
AI-powered Docker security scanner that explains vulnerabilities in plain English. An OWASP Lab Project.
81/100 healthscraperai /
ScraperAI is an open-source, AI-powered tool designed to simplify web scraping for users of all skill levels.
88/100 healthaibox22 /
An AI Powered README and Interactive Wiki Generator for Any Projects. AI驱动的README及交互式Wiki生成工具,面向中文的开源DeepWiki。
82/100 healthNayjest /
An AI-powered GitHub code review tool that uses LLMs to detect high-confidence, high-impact issues—such as security vulnerabilities, bugs, and maintainability concerns.
75/100 health