Skip to content

darkzeroagent/darkzero

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DARKZERO banner

DARKZERO

An AI-native Web3 build studio and on-chain workspace.

Research, ideation, and product execution in one place — powered by autonomous agents.

Website Telegram X License Status


Overview

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.

Features

  • 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$DZRO utility token for workspace access and governance.

Tech Stack

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)

Project Structure

.
├── 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)

Getting Started

Prerequisites

  • PHP 8.0+ with curl and openssl extensions
  • SMTP credentials (any provider: Hostinger, Gmail, Mailgun, etc.)
  • Anthropic API key — console.anthropic.com

Installation

  1. Clone the repository:

    git clone https://github.com/darkzeroagent/darkzero.git
    cd darkzero
  2. Upload all files to your web host's public directory (e.g. public_html/).

  3. Open api/config.php and 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'],
  4. Ensure api/_otp_store/ is writable by PHP (auto-created on first run, chmod 700).

  5. Open https://yourdomain.com/ — you're live.

API Endpoints

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

Tokenomics

$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.

Roadmap

  • 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.

Security

  • 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.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you'd like to change.

Community

Disclaimer

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.

License

MIT © DARKZERO

About

AI-native Web3 workspace for builders, founders & DAOs. Research → Spec → Ship — all in one place.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors