{"id":48801507,"url":"https://github.com/feed-mob/omni-collect","last_synced_at":"2026-04-14T03:03:44.365Z","repository":{"id":346746333,"uuid":"1191411761","full_name":"feed-mob/omni-collect","owner":"feed-mob","description":"Multi-platform topic intelligence API for AI agents. Install a Skill guide, auto-collect data from Xiaohongshu,   GitHub, Twitter and more, then generate structured intel reports locally.","archived":false,"fork":false,"pushed_at":"2026-03-25T08:30:33.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-26T12:13:59.760Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/feed-mob.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-25T08:07:42.000Z","updated_at":"2026-03-25T08:30:38.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/feed-mob/omni-collect","commit_stats":null,"previous_names":["feed-mob/omni-collect"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/feed-mob/omni-collect","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feed-mob%2Fomni-collect","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feed-mob%2Fomni-collect/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feed-mob%2Fomni-collect/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feed-mob%2Fomni-collect/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/feed-mob","download_url":"https://codeload.github.com/feed-mob/omni-collect/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feed-mob%2Fomni-collect/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31779953,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T02:24:21.117Z","status":"ssl_error","status_checked_at":"2026-04-14T02:24:20.627Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-14T03:03:32.214Z","updated_at":"2026-04-14T03:03:44.358Z","avatar_url":"https://github.com/feed-mob.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# OmniCollect\n\nMulti-platform topic intelligence API for AI agents. Install a Skill guide, auto-collect data from Xiaohongshu, GitHub, Twitter and more, then generate structured intel reports locally.\n\n## How It Works\n\n```\n┌──────────────┐     install skill      ┌──────────────────┐\n│  AI Agent    │◄───────────────────────│  Skill (API Guide)│\n│  Claude Code │                        └──────────────────┘\n│  Codex       │── HTTP + secret key ──►┌──────────────────┐\n│  Continue    │◄── structured JSONL ───│  OmniCollect API │\n│  OpenClaw    │                        │  (FastAPI+SQLite) │\n│  ...         │                        └───────┬──────────┘\n└──────┬───────┘                                │\n       │ local AI analysis                      │ Agent-Reach\n       ▼                                        ▼\n┌──────────────┐                     ┌─────────────────────┐\n│  Intel Report│                     │ Xiaohongshu│GitHub  │\n│  JSONL + MD  │── sync report ─────►│ Twitter    │ ...    │\n└──────────────┘                     └─────────────────────┘\n```\n\n- **Platform (cloud)**: Data collection API, auth, report sync\n- **Skill (local)**: A Markdown guide that teaches any AI agent how to call our APIs\n- **AI analysis (local)**: Runs on the user's own model — we don't do inference\n\n## Supported Platforms\n\n| Platform | Method | Status |\n|----------|--------|--------|\n| Xiaohongshu | mcporter + Cookie | Planned |\n| GitHub | REST API (HTTP) | Planned |\n| Twitter/X | bird + Cookie | Planned |\n| More (HN, Reddit, ...) | TBD | Future |\n\n## Tech Stack\n\n- **Python + FastAPI + Pydantic** — lightweight async API, auto-generated Swagger docs\n- **SQLite + aiosqlite** — lightweight, zero-ops, async\n- **SQLAlchemy 2.0** — async ORM with declarative models\n- **Jinja2** — server-side page rendering (planned)\n- **Agent-Reach** — native Python integration for multi-platform data fetching\n\n## Auth (Planned — M2)\n\nNo human registration needed. The AI agent handles everything:\n\n1. AI generates a key pair locally\n2. AI calls `POST /api/v1/auth/register` with the public key\n3. Server stores the key (max 3 registrations per IP)\n4. Key is persisted in the skill directory — done\n\n\u003e **Note**: Auth endpoints are not yet implemented. Currently only `GET /health` and `GET /` are available. See [ARCHITECTURE.md](./ARCHITECTURE.md) for the full API roadmap.\n\n## Quick Start\n\n```bash\n# Install\npip install -e \".[dev]\"\n\n# Run\npython -m omni_collect.main\n\n# Visit\n# http://localhost:8000/docs  — Swagger UI\n# http://localhost:8000/health — Health check\n```\n\n## Project Structure\n\nSee [ARCHITECTURE.md](./ARCHITECTURE.md) for the full architecture document, module breakdown, and development schedule.\n\n## License\n\nTBD\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffeed-mob%2Fomni-collect","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffeed-mob%2Fomni-collect","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffeed-mob%2Fomni-collect/lists"}