npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

ideaco

v1.1.8

Published

Idea Unlimited - An LLM-powered AI enterprise simulator where you boss around AI employees

Readme


What is IdeaCo?

IdeaCo is not another multi-agent framework. It's an AI employee management system — you run a virtual company, hire AI agents as employees, assign tasks, and they collaborate autonomously to produce real deliverables.

Each employee has persistent memory, a unique personality, social relationships with coworkers, and can be powered by different backends — from cloud LLMs to local CLI tools like Claude Code, Codex, and CodeBuddy.

The name comes from Idea Unlimited Company (金点子无限公司), inspired by Yang Hongying's children's story, playfully turning a "Limited Company" into "Unlimited".


🚀 Quick Start

Option 1: NPM (Recommended)

Requires Node.js 20+

# Install globally
npm install -g ideaco

# Start your company (opens dashboard automatically)
ideaco start

# Open the dashboard
ideaco ui

Option 2: Desktop Client (Mac/Windows/Linux)

Grab the latest release for your platform:

Download IdeaCo

| Platform | File | |----------|------| | macOS (Apple Silicon) | IdeaCo-x.x.x-arm64.dmg | | macOS (Intel) | IdeaCo-x.x.x-x64.dmg | | Windows | IdeaCo-x.x.x-Setup.exe | | Linux | IdeaCo-x.x.x.AppImage / .deb |

Since IdeaCo is not signed with an Apple Developer certificate, macOS will show a security warning. To open it:

  1. Right-click the app → OpenOpen again in the dialog
  2. Or: System Settings → Privacy & Security → scroll down → Open Anyway
  3. Or via Terminal: xattr -cr /Applications/IdeaCo.app

Option 3: From Source

git clone https://github.com/ymssx/IdeaCo.git
cd IdeaCo
yarn install
yarn dev

Option 4: Docker

docker compose up -d

Data is persisted via Docker volumes (app-data, app-workspace).


🧬 Why IdeaCo?

Most agent frameworks create stateless workflows. IdeaCo manages long-living AI employees with memory, personality, and social bonds.

| | Typical Agent Framework | IdeaCo | |---|---|---| | Agents | Ephemeral, per-task | Persistent employees with memory & personality | | Memory | None or simple RAG | Layered: long-term + short-term + social impressions + rolling summary | | Social | Agents don't know each other | Employees form opinions, track affinity, and remember coworkers | | Orchestration | DAG / workflow graph | Company org structure — departments, teams, roles | | Backend | Single LLM | Mix LLMs + CLI tools (Claude Code, Codex, CodeBuddy) | | Autonomy | Triggered by code | Employees poll, think, decide to speak or stay silent on their own | | Interface | Code / YAML | Visual — pixel office, group chats, dashboards |


Architecture

┌───────────────────────────────────────────────────┐
│                  👤 User (Boss)                    │
├───────────────────────────────────────────────────┤
│                🧑‍💼 Secretary                       │
│     Intent Parsing · HR · Task Dispatch · Reports │
├───────────────────────────────────────────────────┤
│               🏢 Organization                      │
│       Company · Department · Team · Requirement   │
├───────────────────────────────────────────────────┤
│                👥 Employee                          │
│     Memory · Personality · Skills · Lifecycle     │
├───────────────────────────────────────────────────┤
│                🤖 Agent                             │
│       LLM Agent · CLI Agent · Web Agent           │
│      (Unified interface, zero business logic)     │
└───────────────────────────────────────────────────┘
  • Agent — Pure LLM communication engine. Supports API, CLI, and Web backends behind a single chat() interface. Zero business logic.
  • Employee — The atomic unit. Wraps an Agent with persistent memory, personality, skills, and autonomous poll-think-reply behavior.
  • Organization — Company structure: departments, teams, group chats, requirements workflow.
  • Secretary — Boss's AI assistant that understands intent, manages HR, and coordinates departments.

📖 See ARCHITECTURE.md for the full deep-dive — employee lifecycle, memory system design, flow-of-thought pipeline, anti-spam gates, and social memory details.


⚙ Configuration

LLM Providers

Configure via the Setup Wizard on first launch, or later through the Brain Providers page.

| Provider | Endpoint | Notes | |----------|----------|-------| | DeepSeek | platform.deepseek.com | Best cost-effectiveness | | OpenAI | platform.openai.com | GPT-4o / GPT-4 | | Anthropic | console.anthropic.com | Claude 3.5 / 4 | | Any OpenAI-compatible | Custom base URL | Ollama, vLLM, etc. |

CLI Coding Backends

IdeaCo can dispatch coding tasks to local CLI assistants. Install any of these and they'll be auto-detected:

| Backend | Command | Description | |---------|---------|-------------| | Claude Code | claude | Anthropic's AI coding assistant | | Codex | codex | OpenAI's coding agent | | CodeBuddy | codebuddy | Tencent's AI coding assistant |

No API key or CLI tool is strictly required — the system falls back to a built-in rule engine, but agents will only give mechanical responses.


📁 Project Structure

IdeaCo/
├── src/
│   ├── app/                  # Next.js App Router + API Routes
│   ├── components/           # React UI (Pixel Office, Group Chat, Dashboards...)
│   ├── core/                 # Core engine
│   │   ├── agent/            # Agent layer (LLM / CLI / Web)
│   │   ├── employee/         # Employee layer (memory, lifecycle, skills)
│   │   ├── organization/     # Org layer (company, dept, team, HR)
│   │   ├── system/           # System services (audit, cron, plugins)
│   │   ├── prompts.js        # All LLM prompt templates
│   │   └── requirement.js    # Requirement workflow engine
│   ├── lib/                  # Frontend utilities (Zustand store, i18n)
│   └── locales/              # i18n (zh/en/ja/ko/es/de/fr)
├── data/                     # Runtime data (auto-created)
├── workspace/                # Agent-produced files per department
├── electron/                 # Electron desktop app shell
└── package.json