ArgentOS Repository & Infrastructure Inventory
Repos
| Repo |
GitHub |
Agent |
Stack |
Deploy |
| argentos |
ArgentAIOS/argentos (private) |
Codex |
TypeScript, 90K+ LOC |
Local gateway |
| argentos-core |
ArgentAIOS/argentos-core (public) |
Codex |
Exported from argentos |
npm / installer |
| argentos.ai |
ArgentAIOS/argentos.ai |
Claude |
React + Vite + Express |
Railway |
| argent-marketplace |
ArgentAIOS/Marketplace |
Claude |
React + Vite + Express monorepo |
Railway |
| argent-docs |
ArgentAIOS/docs |
Claude |
Fumadocs + Next.js 15 |
Railway |
Database — Railway PostgreSQL
Host: caboose.proxy.rlwy.net:53346
Shared by: argentos.ai + argent-marketplace (same Railway DB)
argentos.ai tables
| Table |
Purpose |
blog_articles |
Blog posts (Prisma) |
edu_* (7 tables) |
Education LMS — modules, lessons, questions, progress, certificates |
analytics_sessions |
Custom analytics sessions |
analytics_events |
Page views, durations |
analytics_downloads |
Tracked install.sh downloads |
contacts |
Newsletter/waitlist signups — email, name, source, tags, status |
email_campaigns |
Newsletter sends |
email_sends |
Per-recipient send records |
argent-marketplace tables
| Table |
Purpose |
packages |
54+ marketplace packages — name, description, VT scan, badges |
package_versions |
Semver versions per package |
submissions |
User-submitted packages with scan results |
licenses |
License keys for paid packages |
license_activations |
Activation records |
organizations |
Enterprise orgs |
organization_packages |
Org-scoped private packages |
organization_secrets |
Encrypted org secrets |
organization_instances |
Instance-to-org membership |
registered_instances |
ArgentOS instance registry |
package_reports |
Community reports on packages |
argentos local (SQLite)
| Database |
Path |
Purpose |
| memory.db |
~/.argentos/memory.db |
MemU persistent memory (12.5K+ LOC) |
| dashboard.db |
~/.argentos/data/dashboard.db |
Tasks, projects, canvas docs |
Cloudflare R2
Bucket: argentos-licensing-marketplace
Prefixes:
packages/ — marketplace .argent-pkg files
blog/ — blog post images
submissions/ — uploaded submission files
Railway Services
| Service |
Domain |
Port |
| argentos.ai |
argentos.ai |
3000 |
| marketplace API + web |
marketplace.argentos.ai |
8080 |
| docs |
docs.argentos.ai |
3000 |
Key Environment Variables
argentos.ai (Railway)
DATABASE_URL, RESEND_API_KEY, ADMIN_PASSWORD, ADMIN_API_KEY,
R2_ACCESS_KEY_ID, R2_SECRET_ACCESS_KEY, R2_ACCOUNT_ID, R2_BUCKET_NAME,
GEMINI_API_KEY, GOOGLE_ANALYTICS_ID
argent-marketplace (Railway)
DATABASE_URL, JWT_SECRET, GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET,
VIRUSTOTAL_API_KEY, AUTO_APPROVE_ON_SCAN_PASS, RESEND_API_KEY,
ADMIN_API_KEY, ADMIN_EMAIL, R2_ACCOUNT_ID (triggers R2 storage mode)
External Services
| Service |
Purpose |
Key Location |
| Resend |
Transactional email |
Railway env |
| VirusTotal |
Package scanning (free, 500/day) |
Railway env |
| GitHub OAuth |
Marketplace login |
Railway env |
| Context7 |
Docs AI indexing |
context7.json in docs repo |
| Linear |
Project tracking |
Claude MCP config |
| CodeRabbit |
PR review |
GitHub org level |
| Blacksmith |
CI runners |
GitHub Actions |
Ports (Local Development)
| Service |
Port |
| ArgentOS Gateway |
18789 |
| PostgreSQL (local) |
5433 |
| Redis (local) |
6380 |
| argentos.ai dev |
3000 |
| marketplace web dev |
5173 |
| marketplace API dev |
3100 |
| docs dev |
3000 |
DNS
| Domain |
Points To |
| argentos.ai |
Railway |
| marketplace.argentos.ai |
Railway |
| docs.argentos.ai |
Railway |
| argentos.ai/install.sh |
Express route → scripts/install.sh |
1---2name: argentos-repo-inventory3description: Complete inventory of ArgentOS repos, databases, services, and infrastructure. Use when asking "which repo", "where does X live", "what database", "what table", "which service", "what port", "what env var", or when needing to understand the relationship between repos, services, and data.4---56# ArgentOS Repository & Infrastructure Inventory78## Repos910| Repo | GitHub | Agent | Stack | Deploy |11| ------------------ | --------------------------------- | ------ | ------------------------------- | --------------- |12| argentos | ArgentAIOS/argentos (private) | Codex | TypeScript, 90K+ LOC | Local gateway |13| argentos-core | ArgentAIOS/argentos-core (public) | Codex | Exported from argentos | npm / installer |14| argentos.ai | ArgentAIOS/argentos.ai | Claude | React + Vite + Express | Railway |15| argent-marketplace | ArgentAIOS/Marketplace | Claude | React + Vite + Express monorepo | Railway |16| argent-docs | ArgentAIOS/docs | Claude | Fumadocs + Next.js 15 | Railway |1718## Database — Railway PostgreSQL1920**Host:** `caboose.proxy.rlwy.net:53346`21**Shared by:** argentos.ai + argent-marketplace (same Railway DB)2223### argentos.ai tables2425| Table | Purpose |26| --------------------- | ------------------------------------------------------------------- |27| `blog_articles` | Blog posts (Prisma) |28| `edu_*` (7 tables) | Education LMS — modules, lessons, questions, progress, certificates |29| `analytics_sessions` | Custom analytics sessions |30| `analytics_events` | Page views, durations |31| `analytics_downloads` | Tracked install.sh downloads |32| `contacts` | Newsletter/waitlist signups — email, name, source, tags, status |33| `email_campaigns` | Newsletter sends |34| `email_sends` | Per-recipient send records |3536### argent-marketplace tables3738| Table | Purpose |39| ------------------------ | ------------------------------------------------------------- |40| `packages` | 54+ marketplace packages — name, description, VT scan, badges |41| `package_versions` | Semver versions per package |42| `submissions` | User-submitted packages with scan results |43| `licenses` | License keys for paid packages |44| `license_activations` | Activation records |45| `organizations` | Enterprise orgs |46| `organization_packages` | Org-scoped private packages |47| `organization_secrets` | Encrypted org secrets |48| `organization_instances` | Instance-to-org membership |49| `registered_instances` | ArgentOS instance registry |50| `package_reports` | Community reports on packages |5152### argentos local (SQLite)5354| Database | Path | Purpose |55| ------------ | ----------------------------- | ----------------------------------- |56| memory.db | ~/.argentos/memory.db | MemU persistent memory (12.5K+ LOC) |57| dashboard.db | ~/.argentos/data/dashboard.db | Tasks, projects, canvas docs |5859## Cloudflare R26061**Bucket:** `argentos-licensing-marketplace`62**Prefixes:**6364- `packages/` — marketplace .argent-pkg files65- `blog/` — blog post images66- `submissions/` — uploaded submission files6768## Railway Services6970| Service | Domain | Port |71| --------------------- | ----------------------- | ---- |72| argentos.ai | argentos.ai | 3000 |73| marketplace API + web | marketplace.argentos.ai | 8080 |74| docs | docs.argentos.ai | 3000 |7576## Key Environment Variables7778### argentos.ai (Railway)7980```81DATABASE_URL, RESEND_API_KEY, ADMIN_PASSWORD, ADMIN_API_KEY,82R2_ACCESS_KEY_ID, R2_SECRET_ACCESS_KEY, R2_ACCOUNT_ID, R2_BUCKET_NAME,83GEMINI_API_KEY, GOOGLE_ANALYTICS_ID84```8586### argent-marketplace (Railway)8788```89DATABASE_URL, JWT_SECRET, GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET,90VIRUSTOTAL_API_KEY, AUTO_APPROVE_ON_SCAN_PASS, RESEND_API_KEY,91ADMIN_API_KEY, ADMIN_EMAIL, R2_ACCOUNT_ID (triggers R2 storage mode)92```9394## External Services9596| Service | Purpose | Key Location |97| ------------ | -------------------------------- | -------------------------- |98| Resend | Transactional email | Railway env |99| VirusTotal | Package scanning (free, 500/day) | Railway env |100| GitHub OAuth | Marketplace login | Railway env |101| Context7 | Docs AI indexing | context7.json in docs repo |102| Linear | Project tracking | Claude MCP config |103| CodeRabbit | PR review | GitHub org level |104| Blacksmith | CI runners | GitHub Actions |105106## Ports (Local Development)107108| Service | Port |109| ------------------- | ----- |110| ArgentOS Gateway | 18789 |111| PostgreSQL (local) | 5433 |112| Redis (local) | 6380 |113| argentos.ai dev | 3000 |114| marketplace web dev | 5173 |115| marketplace API dev | 3100 |116| docs dev | 3000 |117118## DNS119120| Domain | Points To |121| ----------------------- | ---------------------------------- |122| argentos.ai | Railway |123| marketplace.argentos.ai | Railway |124| docs.argentos.ai | Railway |125| argentos.ai/install.sh | Express route → scripts/install.sh |