Skip to content
@elixpo

elixpo

An organization created to orchestrate the products made under the Elixpo Series.

Elixpo

Elixpo Chapter

The open-source umbrella for an open, ethical, and accessible ecosystem of AI and developer tools.
Free and open source, built by a global community of contributors since 2023.

Website · Discussions · Monorepo · Sponsor

Elixpo Banner

💖 If you believe in open and accessible projects, please leave a ⭐ on the repository!

Built with Pollinations Docker Compose Vercel Kubernetes JavaScript Minecraft Bot Discord Bot Chrome Extension Hacktoberfest


About

Elixpo Chapter is the open-source umbrella / monorepo for the whole Elixpo ecosystem — the org's flagship repository. It began in 2023 as a small college initiative and has grown into a collaborative, community-driven ecosystem of interconnected tools for creating, writing, drawing, searching, and building on the web. In just a couple of years it has grown into a series of 9+ projects, a global community, and participation in numerous hackathons and open-source programs.

Our belief is simple: AI and great software should be open, ethical, and free for everyone. Every tool below is open source, free to use, and shaped by contributors from around the world. No paywalls, no premium tiers, no sign-up walls on our public tools.

This repository is the monorepo / chapter umbrella for the ecosystem. The individual products inside it each live as a sub-project and declare their own product-specific terms.

🚀 Our mission & vision

At Elixpo, we are dedicated to building a future where AI is open, ethical, and accessible to everyone. Our mission is to create a community-driven ecosystem where developers, creators, and enthusiasts can collaborate, learn, and innovate without barriers like paywalls or proprietary restrictions. We believe in transparency, responsible development, and the power of interconnected tools to build a better future.

Key features

  • 🔓 100% Open Source: Licensed under the Elixpo standard (MIT for code, CC-BY-4.0 for assets) to keep everything free and reusable.
  • 💸 Completely Free: All our tools and platforms are free to use, forever.
  • 🤖 AI-Powered: From art generation to search, AI is at the core of what we do.
  • 🤝 Community-Driven: We thrive on collaboration and welcome contributions from all.
  • 🌐 Web-Based & Embeddable: Easily accessible through web interfaces and simple to integrate.

👑 Key achievements

  • 9+ Open Source Projects successfully built and deployed.
  • 45+ Global Contributors have shaped the Elixpo ecosystem.
  • 20+ Hackathons participated in, fostering innovation and rapid development.
  • Featured in Major Programs like GSSOC, Pollinations.AI, and OSCI.
  • Recognized by MS Startup Foundations with funding in 2024.
  • Active Participant in Hacktoberfest 2024 & 2025.
Star History Chart

The ecosystem

Tool What it does Link
🎨 Elixpo Art AI image generation (under dev) art.elixpo.com
✍️ Elixpo Blogs A rich, modern writing and publishing space blogs.elixpo.com
🖊️ LixSketch A hand-drawn style whiteboard for ideas and diagrams sketch.elixpo.com
💬 Elixpo Chat A fluid, real-time AI chat experience (under dev) chat.elixpo.com
🔎 Elixpo Search Fast, AI-assisted search search.elixpo.com
👤 Elixpo Accounts One identity (SSO) across the ecosystem accounts.elixpo.com
🔗 lixrl Our flagship URL shortener lixrl.com
🪪 Portfolios Personal pages to showcase your work me.elixpo.com
🐼 Oreo The mascot's home oreo.elixpo.com

Developers can drop our editors into their own projects with the @elixpo/lixsketch and @elixpo/lixeditor packages, on npm and as VS Code extensions.

Recent releases

  • Elixpo BlogsOfficial blogging site of Elixpo: easily write and upload technical blogs.
  • Elixpo Accountsaccounts.elixpo.com: the parent platform that orchestrates accounts across every Elixpo service.
  • lixrllixrl.com: our flagship URL shortener for Elixpo and other orchestrations, on Cloudflare's edge.
  • Elixpo Sketchsketch.elixpo.com: a WYSIWYG canvas for collaborative short visual presentations.
  • Elixpo Chatchat.elixpo.com: an open web UI powered by the lixSearch service.
  • Elixpo Searchsearch.elixpo.com: a search pipeline built on a 3-tier caching architecture.
  • Elixpoelixpo.com: the official platform for all of our projects in the Elixpo series.
  • Elixpo Portfoliome.elixpo.com: a personal portfolio service for Elixpo developers.
  • TommyDiscord-GitHub orchestrator: fully orchestrate GitHub Issues, PRs, and Projects directly from Discord.

Extended flagship releases (packages & extensions)

  • @elixpo/lixsketch — open-source SVG whiteboard engine with a hand-drawn aesthetic; the core drawing engine behind LixSketch.
  • @elixpo/lixeditor — a rich WYSIWYG block editor and renderer built on BlockNote, with LaTeX, Mermaid diagrams, and syntax-highlighted code; the core editor behind LixBlogs.
  • LixSketch VS Code Extension — open-source whiteboard diagrams inside VS Code; draw, sketch, and save .lixsketch files.
  • LixEditor VS Code Extension — a rich block editor for .lixeditor files with LaTeX, Mermaid diagrams, and syntax-highlighted code.

Architecture

Everything runs on Cloudflare's edge. A shared platform layer backs the ecosystem — accounts.elixpo (SSO / identity), mails.elixpo (mail infra), and payouts.elixpo (payments) — sitting behind the edge gateway and the D1 / Workers KV data layer. The SaaS products (Blogs, Sketch, Search, Art, Chat) and the flagship lixrl.com all authenticate through Accounts and share the Mail and Payouts infra, while the login-free surfaces (elixpo.com, oreo.elixpo, me.elixpo) stay standalone. admin.elixpo and status.elixpo observe it all.

graph TD
  classDef edge fill:#1c1610,stroke:#F6821F,color:#F2D8BE,stroke-width:1.5px;
  classDef gw fill:#1d1d1d,stroke:#DEDBC8,color:#E1E0CC,stroke-width:1.5px;
  classDef data fill:#0f1a18,stroke:#00B4A5,color:#CDECE8,stroke-width:1.5px;
  classDef shared fill:#1d1d1d,stroke:#DEDBC8,color:#E1E0CC,stroke-width:1.5px;
  classDef saas fill:#141414,stroke:#9a9a9a,color:#E1E0CC;
  classDef flag fill:#2a2410,stroke:#FFBE1E,color:#ffffff,stroke-width:1.5px;
  classDef solo fill:#121a14,stroke:#3CC864,color:#D7ECDB;
  classDef ops fill:#1a1214,stroke:#FF5D68,color:#F3D4D8;

  USER([Users / Browsers]):::solo

  subgraph CF[" Cloudflare "]
    direction TB
    DNS["Cloudflare DNS<br/>*.elixpo.com routing"]:::edge
    GW["Edge Gateway<br/>Workers · Pages · WAF"]:::gw
    subgraph DATA["Data layer"]
      direction LR
      KV[("Workers KV<br/>sessions · cache")]:::data
      D1[("D1<br/>relational store")]:::data
    end
  end

  subgraph CORE["Identity & shared services"]
    direction LR
    ACC["accounts.elixpo<br/>SSO / identity"]:::shared
    MAIL["mails.elixpo<br/>mail infra"]:::shared
    PAY["payouts.elixpo<br/>payments"]:::shared
  end

  subgraph SAAS["SaaS products · authenticated"]
    direction LR
    BLOGS["blogs.elixpo"]:::saas
    SKETCH["sketch.elixpo"]:::saas
    SEARCH["search.elixpo"]:::saas
    ART["art.elixpo · dev"]:::saas
    CHAT["chat.elixpo · dev"]:::saas
  end

  LIXRL["lixrl.com<br/>URL shortener · flagship"]:::flag

  subgraph SOLO["Standalone · no login"]
    direction LR
    HOME["elixpo.com"]:::solo
    OREO["oreo.elixpo"]:::solo
    ME["me.elixpo"]:::solo
  end

  subgraph OPS["Operations"]
    direction LR
    ADMIN["admin.elixpo<br/>dashboard"]:::ops
    STATUS["status.elixpo<br/>monitoring"]:::ops
  end

  USER --> DNS
  DNS --> GW
  GW --> ACC
  GW --> BLOGS & SKETCH & SEARCH & ART & CHAT
  GW --> LIXRL
  GW --> HOME & OREO & ME
  BLOGS & SKETCH & SEARCH & ART & CHAT & LIXRL --> ACC
  BLOGS & SKETCH & SEARCH & ART & CHAT & LIXRL --> MAIL
  BLOGS & SKETCH & SEARCH & ART & CHAT & LIXRL --> PAY
  ACC --> KV
  ACC --> D1
  MAIL --> D1
  PAY --> D1
  LIXRL --> KV
  ADMIN -.-> GW
  STATUS -.-> GW
Loading

A rendered, interactive version lives at elixpo.com/architecture.

Development note: Elixpo is a parallel development initiative with multiple sub-projects evolving simultaneously within this monorepo. Each project follows its own dedicated development track and process, covering diverse fields across computer science. We actively welcome external open-source projects — if you'd like your project featured here, submit a proposal! Accepted projects are listed as contributors and included under the Elixpo licensing standard.

Built by the community

Elixpo is made by people, in the open. 45+ contributors have shaped these tools, with a small core team steering the way:

Everyone is welcome. See CONTRIBUTING.md and our Code of Conduct.

Funding

This project is funded through a mix of personal investment, community contributions, and generous infrastructure support. Our cloud compute and VPS resources are provided by Pollinations AI — special thanks to Thomas Haferlach and the Pollinations team for enabling our large-scale AI workloads.

We are actively seeking sponsors to help us grow and sustain the project. If you or your organization would like to support Elixpo, please visit our GitHub Sponsors page or reach out to discuss partnership opportunities. Your support helps us cover infrastructure costs, accelerate development, and expand our open-source initiatives.

Recognition & programs

Elixpo has taken part in and been supported by GSSOC, Hacktoberfest, Pollinations.AI, MS Startup Foundations, and OSCI.

🌟 GitHub Stars Program — your support matters!

image

Your support towards the nomination would mean a lot! If you are happy contributing to Elixpo Chapter, or you have known me from my tenure as a Google Developer Groups on Campus Organiser (2025-2026) and you are genuinely happy, please do leave a nomination.

How to nominate (takes < 20 seconds): Visit the GitHub Stars Program • sign in with your GitHub account • provide my GitHub username: Circuit-Overtime • add a short, honest note about how I've supported you.

Nominate for GitHub Stars

Get involved

  • 💬 Join the conversation in GitHub Discussions.
  • 🚀 Submit your project to be featured across the ecosystem.
  • 🛠️ Contribute - browse good first issues in the monorepo.
  • ❤️ Support us via GitHub Sponsors.

🎉 Hacktoberfest

We enthusiastically welcome contributions from developers around the world.

  • Find issues: We curate issues perfect for new contributors — look for ones tagged hacktoberfest accepted and hacktoberfest2025 in our issue tracker.
  • Read the guidelines: Before submitting a PR, please review our Code of Conduct and Contributing Guidelines.

Brand assets

The Elixpo and Oreo brand — marks, the mascot, palette, and usage rules — is the brand source of truth. A browsable kit is at elixpo.com/assets. Brand assets are provided under CC-BY-4.0 with the Oreo-trademarks exception.

License

Elixpo uses one licensing standard across every repository:

The Oreo mascot, the chest E-badge, and the "Elixpo" and "Oreo" names, domains, and palette are reserved - this protects the brand and its royalties while keeping the code and assets free. See LICENSE and the per-product notice board, NOTICE.

Exclusive

Per-repo "exclusive" artifacts (an npm package, a VS Code extension, a hosted SaaS, a paid tier) are declared here and in NOTICE.

This repository: None - it is the community umbrella / monorepo. The exclusive artifacts (npm packages, VS Code extensions, hosted services, and reserved domains) belong to the individual products and are declared in their own notice boards.

Our future

At Elixpo Chapter, we are dedicated to shaping a future where projects are:

  • Open & Accessible — AI should empower everyone, free from paywalls, proprietary barriers, or exclusivity.
  • Transparent & Ethical — we prioritize transparency in our models and workflows, ensuring ethical development and responsible use.
  • Community-Driven — our platform thrives on collaboration, inviting developers, creators, and enthusiasts to contribute and innovate together.
  • Interconnected — we're building an ecosystem where AI tools and services integrate seamlessly, enabling composable, synergistic solutions.
  • Continuously Evolving — we embrace rapid advancements in AI, adapting and improving while upholding our core values of openness and accessibility.
  • A Platform for Learning — we are more than just tools; we are a learning ecosystem, a welcoming space for new developers to learn, grow, and teach others.
  • Prioritizing the Developer Experience — our tools are built to be flexible, well-documented, and a joy to use.

Our mission is to advance AI for the benefit of all — respecting ethical standards, fostering responsible innovation, and building a collaborative community. Join us in making AI open, ethical, and impactful for everyone.

Made with ❤️ by Ayushman Bhattacharya & Collabs!

Pinned Loading

  1. elixpo_chapter elixpo_chapter Public

    A Collaborative Repository focusing on Computer Science from all the aspects that it deserves attention form!

    JavaScript 86 51

  2. falcon falcon Public archive

    An automated counting CI repository for automated GitHub commits! -- Falcon Flies high at 20000000 commits

    9

Repositories

Showing 10 of 31 repositories

Top languages

Loading…

Most used topics

Loading…