An AI-native Web3 build studio and on-chain workspace.
Research, ideation, and product execution in one place — powered by autonomous agents.
DARKZERO is a Web3 build studio paired with an AI-native on-chain workspace. It helps founders, DAOs, and communities move from raw idea to shipped product — researching the market, structuring ideas into specifications, and executing on-chain — with autonomous agents assisting at every step.
This repository contains the public source for the DARKZERO landing site, whitepaper, and AI workspace dashboard.
- AI Research Agent — Briefings that search the web and summarize Web3 topics into structured, sourced reports.
- Idea → Product — Turns a rough idea into a full product spec: features, tech stack, on-chain design, roadmap, and risks.
- Knowledge Base — Every brief and spec is stored, searchable, and exportable as Markdown.
- Email OTP Login — Native PHP SMTP backend, no third-party dependency.
- Phantom Wallet Login — Native Solana wallet integration.
- Token-gated Access —
$DZROutility token for workspace access and governance.
| Layer | Stack |
|---|---|
| Frontend | HTML, Tailwind CSS (CDN), vanilla JS |
| Backend | PHP 8+ (no Composer dependency) |
| AI | Anthropic Claude API (server-side proxy) |
| Auth | Email OTP (native SMTP) + Phantom Wallet |
| Storage | Filesystem JSON (OTP cache), localStorage (KB) |
.
├── index.html # Landing page
├── dashboard.html # AI workspace + login gate
├── whitepaper.html # Whitepaper v0.1
├── logo.png # Brand mark / favicon
├── hero.jpg # Landing hero image
└── api/
├── config.php # Credentials (gitignored in production)
├── _helper.php # CORS, JSON, SMTP, OTP store
├── send-otp.php # POST /send-otp
├── verify-otp.php # POST /verify-otp
└── ai.php # POST /ai (Anthropic proxy)
- PHP 8.0+ with
curlandopensslextensions - SMTP credentials (any provider: Hostinger, Gmail, Mailgun, etc.)
- Anthropic API key — console.anthropic.com
-
Clone the repository:
git clone https://github.com/darkzeroagent/darkzero.git cd darkzero -
Upload all files to your web host's public directory (e.g.
public_html/). -
Open
api/config.phpand fill in your credentials:'anthropic' => [ 'api_key' => 'sk-ant-...', ], 'smtp' => [ 'host' => 'smtp.yourdomain.com', 'port' => 587, 'username' => 'noreply@yourdomain.com', 'password' => 'your-email-password', ], 'allowed_origins' => ['https://yourdomain.com'],
-
Ensure
api/_otp_store/is writable by PHP (auto-created on first run,chmod 700). -
Open
https://yourdomain.com/— you're live.
All endpoints accept POST with Content-Type: application/json.
| Endpoint | Body | Response |
|---|---|---|
POST /api/send-otp.php |
{ email } |
{ ok, expires_in } |
POST /api/verify-otp.php |
{ email, code } |
{ ok, email, token } |
POST /api/ai.php |
{ system, user, use_search? } |
Anthropic response passthrough |
$DZRO — utility token aligning the community with studio output.
| Total supply | 100,000,000 (indicative) |
| Launch | May 28, 2026 · 4:00 PM UTC |
| Chain | TBA (multi-chain ready) |
| Allocation | % |
|---|---|
| Community & ecosystem | 40% |
| Liquidity | 25% |
| Team (vested) | 15% |
| Treasury | 12% |
| Advisors / partners | 8% |
Figures are indicative. Final, audited tokenomics will be published before launch.
- Phase 1 — Foundation. Workspace prototype (Research, Idea→Product, Knowledge Base), brand, and community.
- Phase 2 — Launch. Token launch, contract verification, OTP + Phantom auth, token-gated access.
- Phase 3 — Expansion. Studio service pipeline, additional agent skills, multi-chain support, and governance.
- API keys are never exposed to the browser. All Anthropic and SMTP calls are routed through server-side PHP.
- OTPs are stored hashed by email (SHA-256), expire in 5 minutes, and are rate-limited (60s cooldown, 5 tries max).
- The
api/_otp_store/directory is protected by.htaccess. - Found a vulnerability? Please report privately via Telegram.
Pull requests are welcome. For major changes, please open an issue first to discuss what you'd like to change.
- Website — darkzero.studio
- Telegram — @darkzeroagent
- X (Twitter) — @darkzero_agent
This repository is provided for informational and educational purposes. Nothing in this repository constitutes financial, investment, legal, or tax advice. Cryptoassets are high-risk and you may lose your entire investment. Always verify the official contract address from DARKZERO's verified X and Telegram channels before participating.
MIT © DARKZERO