Skip to content

astronomagent/astronom

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ASTRONOM — Transferring Diverse Human Web Behavior Into Agentic General Intelligence

ASTRONOM AGENTIC

⚛ ASTRONOM

Transferring Diverse Human Web Behavior Into Agentic General Intelligence

A decentralized network where everyday browsing becomes the training fuel for autonomous AI agents — verifiable, owned, and rewarded on-chain.

License: MIT Status Twitter Telegram Website


🌐 What is ASTRONOM?

ASTRONOM is the data infrastructure for the agentic web — combining browser-native capture, trajectory replay, and synthetic augmentation to train autonomous agents that actually navigate the real internet.

While compute can be rented and models can be downloaded, real-world web behavior is different. It cannot — and should not — be hoarded by closed labs. It must emerge from the wisdom of millions, captured ethically, and owned by those who created it.

Agent intelligence isn't built by a few; it's built by all.


🧬 The Stack

┌─────────────────────────────────────────────────────────────┐
│  CAPTURE LAYER                                              │
│  Browser-native simulator turns everyday navigation,        │
│  clicks, and form-fills into structured trajectories.       │
│  No special hardware, no compute required.                  │
├─────────────────────────────────────────────────────────────┤
│  SYNTHESIS ENGINE                                           │
│  Cleaned trajectories are replayed and expanded into        │
│  thousands of domain-randomized samples across              │
│  distributed GPU networks.                                  │
├─────────────────────────────────────────────────────────────┤
│  TRAINING LAYER                                             │
│  Collaborating with model providers to train                │
│  Vision-Language-Action policies that generalize across     │
│  browsers, websites, and tasks.                             │
└─────────────────────────────────────────────────────────────┘

📁 Repository Structure

astronom/
├── public_html/                # Website (deployable to any LAMP host)
│   ├── index.html              # Landing — Three.js particle hero (6 forms)
│   ├── dashboard.html          # User dashboard — stats, $ASTRO XP, active missions, leaderboard
│   ├── mission.html            # Live mission workspace (iframe sandbox + trajectory recorder)
│   ├── network.html            # Network overview
│   ├── research.html           # Research papers & whitepaper hub
│   ├── whitepaper.html         # Technical whitepaper
│   ├── docs.html               # Documentation
│   ├── contact.html            # Contact + waitlist
│   ├── diagnostic.html         # Backend health check
│   │
│   ├── sandbox/                # Embeddable mission sandboxes (web3-themed)
│   │   ├── search.html         # Find the Trend — fake search engine sandbox
│   │   ├── scan.html           # Token Hunt — DEX trending scanner
│   │   ├── predict.html        # Market Oracle — prediction market UI
│   │   ├── arena.html          # Agent Compare — AI agent matchup arena
│   │   ├── feed.html           # KOL Pulse — crypto signal feed
│   │   ├── launchpad.html      # Trench Sniper — pump.fun-style launchpad
│   │   └── astrotrade.html     # AstroTrade — Hyperliquid-style trading terminal
│   │
│   ├── api/                    # PHP backend
│   │   ├── auth/               # send-otp, verify-otp, wallet, logout, me
│   │   ├── trajectory/         # submit (trajectory ingestion)
│   │   ├── mission/            # notify (launch waitlist)
│   │   ├── claude/             # Claude chat proxy
│   │   └── health.php          # Health probe
│   │
│   ├── lib/                    # PHP helpers
│   │   ├── bootstrap.php       # Config loader, CORS, helpers
│   │   ├── auth.php            # Session signing
│   │   ├── mailer.php          # SMTP wrapper (Hostinger / generic)
│   │   └── storage.php         # File-based JSON storage
│   │
│   ├── data/                   # Runtime user data (gitignored)
│   ├── config.example.php      # ← Copy to config.php and fill in secrets
│   ├── .htaccess               # HTTPS, pretty URLs, security headers
│   └── favicon.ico
│
├── assets/
│   └── images/
│       └── banner.png          # Hero banner (used in this README)
│
├── README.md                   # You are here
├── LICENSE                     # MIT
├── DEPLOYMENT.md               # Hostinger / LAMP deploy guide
└── .gitignore

🎯 Active Missions

Teleoperate a simulated web3 agent. Hunt trending tokens, compare AI agents, scan DEX data — every trajectory you capture trains the next generation of Agentic AI.

Mission Difficulty Reward ETA What you do
Find the Trend 🟢 Easy +50 $ASTRO ~2 min Search "best memecoin solana 2026"; click organic result #1, skip ads.
Token Hunt 🟢 Easy +75 $ASTRO ~3 min Scan DEX trending tokens on Solana, pick 1, add to watchlist, view chart.
Market Oracle 🟡 Medium +200 $ASTRO ~5 min Stake YES/NO on prediction markets — "Will SOL hit $500?", "Will $ASTRO 10x?".
Agent Compare 🟡 Medium +250 $ASTRO ~6 min Compare top AI agents — Claude, GPT, Gemini, ElizaOS, OpenClaw. Pick your favorite.
KOL Pulse 🔴 Hard +500 $ASTRO ~10 min Curate crypto signals. Like, RT, bookmark posts from @aixbt, @aeyakovenko, @AnsemBased.
Trench Sniper 🔴 Hard +750 $ASTRO ~15 min Snipe pre-graduation launches on pump.fun-style launchpad. Track King of the Hill.
AstroTrade Agent 🟠 Elite ✨ +1,500 $ASTRO ~12 min Special — trade live Solana data via CoinGecko. Approve/reject AI trade proposals to train the AstroTrade routing layer.

Each completed mission emits a trajectory — a structured record of clicks, navigations, form-fills, and decisions — that gets ingested via /api/trajectory/submit and contributes to the on-chain dataset.


🚀 Quick Start (Local)

# Clone
git clone https://github.com/astronomagent/astronom.git
cd astronom/public_html

# Setup config
cp config.example.php config.php
# Edit config.php → fill SMTP password + Anthropic API key

# Generate a secure session_secret (paste output into config.php)
php -r "echo bin2hex(random_bytes(32));"

# Run local PHP server
php -S localhost:8000

# Open in browser
open http://localhost:8000

🌍 Production Deploy (Hostinger)

See DEPLOYMENT.md for the full guide.

TL;DR:

  1. Upload public_html/ contents to your Hostinger public_html/ directory
  2. Copy config.example.phpconfig.php and fill in:
    • SMTP password (create noreply@astronom.xyz email in hPanel)
    • Anthropic API key (from console.anthropic.com)
    • Random session_secret (run the PHP one-liner above)
  3. Confirm SSL is enabled (Hostinger gives free SSL)
  4. Visit /diagnostic.html to verify all systems green

🔧 Configuration Reference

config.example.php exposes:

Key Purpose
smtp.* SMTP server for OTP and waitlist emails
anthropic.api_key Claude API key for in-app chat proxy
anthropic.model Claude model id (defaults to Sonnet)
security.session_secret 64-char random secret for session signing
security.session_ttl_hours Session lifetime (default 168h = 7d)
cors.allowed_origins Allowed CORS origins
rate_limits.* Anti-spam thresholds

🪙 $ASTRO Token

Property Value
Ticker $ASTRO
Chain Solana
Contract Address Coming Soon
Launch May 14, 2026 — 7:00 PM UTC
Buy on launch pump.fun · Jupiter · Axiom

🌟 Vision: Crypto × Agentic AI

We are constructing the infrastructure of the global agent economy. Every unique trajectory, model, and skill module is registered on-chain — as a verifiable, tradable, and value-accumulating asset.

  • Data IDs & Provenance — certify ownership, provenance, and value evolution along the lifecycle of every learning trajectory
  • Decentralized Coordination — Web3 enables trusted coordination across capture clients, simulation backends, and human contributors at global scale

🤝 Contributing

We welcome contributors of every stripe — frontend devs, ML researchers, web3 protocol designers, mission writers, doc-writers. Open an issue, fork the repo, send a PR.


📡 Links


📜 License

MIT — see LICENSE.

Built with intent. Owned by all.

About

◇ The Browser-Based AGI Network Transferring diverse human web behavior into agentic general intelligence.

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors