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

@dttai/endiorbot

v0.1.0-beta.1

Published

Solo developer tool for enterprise-scale projects: Claude Code + SDLC framework automation + Multi-model orchestrator (beta)

Readme

EndiorBot

CI npm version License: MIT

Beta: APIs may change between releases. Not recommended for production use yet.

CEO Power Tool — AI assistant that answers in <30s instead of 30-60 min

EndiorBot is a personal AI power tool for solo developers working on enterprise-scale projects. It integrates with Claude Code as an Agent Orchestrator, enabling @agent invocations with SDLC governance across CLI, Web, Telegram, and Zalo channels.

Identity: CEO Power Tool (LOCKED) — not a platform, not an SDLC enforcer.

Prerequisites

  • Node.js >= 20
  • pnpm (via corepack: corepack enable)
  • An AI API key (Anthropic, OpenAI, or Gemini)

Install

# Via npx (no install needed)
npx endiorbot --help
npx endiorbot init
npx endiorbot serve

# Or install globally
npm install -g endiorbot

# Or via Docker
docker run -p 18790:18790 endiorbot/endiorbot serve

Quick Start

# Initialize SDLC structure
endiorbot init                              # Auto-detect tech stack
endiorbot init --tier STANDARD              # Specify tier
endiorbot compliance check                  # Verify SDLC compliance

# Unified Serve (Web + Telegram + Zalo)
endiorbot serve                             # Start all channels
endiorbot serve --no-zalo                   # Skip Zalo adapter

# Agent Orchestration (via CLI)
endiorbot @pm "plan payment gateway"        # PM agent
endiorbot @coder --patch "fix auth bug"     # Coder agent (PATCH mode)
endiorbot @consult "Redis vs PostgreSQL?"   # Multi-model consultation

Architecture

┌─────────────────────────────────────────────────────────────────┐
│                    EndiorBot Unified Serve                       │
│                                                                  │
│  ┌──────────┐  ┌──────────┐  ┌──────────┐  ┌──────────┐        │
│  │   Web    │  │ Telegram │  │   Zalo   │  │   CLI    │        │
│  │:18790/ws │  │  @bot    │  │ Bot API  │  │ endiorbot│        │
│  └────┬─────┘  └────┬─────┘  └────┬─────┘  └────┬─────┘        │
│       └──────────────┼───────────┬─┘             │              │
│                ┌─────▼─────┐     │               │              │
│                │ MessageBus│◄────┘               │              │
│                │ (debounce │                     │              │
│                │  + dedup) │                     │              │
│                └─────┬─────┘                     │              │
│                ┌─────▼──────────────────────┐    │              │
│                │     GatewayIngress         │◄───┘              │
│                │  /commands → Dispatcher    │                   │
│                │  @agents  → ChannelRouter  │                   │
│                └─────┬─────────────┬────────┘                   │
│                      │             │                            │
│          ┌───────────▼──┐   ┌──────▼──────┐                    │
│          │ CommandDisp. │   │ChannelRouter│                    │
│          │ (30 commands)│   │ Bridge+Cloud│                    │
│          └──────────────┘   └──────┬──────┘                    │
│                                    │                            │
│  ┌─────────────┐  ┌───────────┐  ┌▼────────────┐              │
│  │ Claude Code │  │  Gemini   │  │   Ollama    │              │
│  │  Bridge     │  │  2.5 Flash│  │ (local LLM) │              │
│  │ (Primary)   │  │ (Fallback)│  │ (Router)    │              │
│  └─────────────┘  └───────────┘  └─────────────┘              │
│                                                                  │
│  Per-Chat Workspace: /repos + /focus + resolveWorkspace()       │
│  SOUL Templates: 13 agents × tier-aware model selection          │
└─────────────────────────────────────────────────────────────────┘

Channels

| Channel | Access | Purpose | |---------|--------|---------| | Web UI | http://localhost:18790 | Browser chat interface | | Telegram | @Endior_bot | Mobile OTT | | Zalo | Bot Endior (zapps.me) | Mobile OTT (Vietnam) | | CLI | endiorbot @agent "task" | Terminal |

OTT Commands (Telegram / Zalo)

/link                           # Bind identity (required after restart)
/repos add myapp /path/to/repo  # Register a repo
/focus myapp                    # Set active repo for this chat
/where                          # Show current focus
@pm plan the next sprint        # Talk to PM agent
@coder fix the login bug        # Talk to Coder agent
/launch claude --as coder       # Launch Claude Code in tmux
/sessions                       # List active tmux sessions
/switch <sessionId>             # Switch active session
/help                           # Full command list (30 commands)

Agent Orchestration

13 SOUL-based agents with tier-aware model selection:

| Agent | Category | Mode | Use Case | |-------|----------|------|----------| | @pm | executor | READ | Planning, requirements, sprints | | @architect | executor | READ | Design decisions, ADRs | | @coder | executor | PATCH | Code generation, bug fixes | | @reviewer | executor | READ | Code review, quality audit | | @tester | executor | READ | Test strategy, test writing | | @fullstack | executor | PATCH | Full-stack implementation | | @devops | executor | PATCH | CI/CD, infrastructure | | @pjm | executor | READ | Project management | | @researcher | executor | READ | Research, analysis | | @ceo | advisor | READ | Strategic decisions | | @cto | advisor | READ | Technical review | | @cpo | advisor | READ | Product review | | @assistant | router | READ | General queries |

Multi-Agent Routing

Messages with multiple @agents or complex tasks are automatically decomposed:

@pm @cto review the authentication module
→ GoalDecomposer splits task → MultiAgentDispatcher runs in parallel

SDLC Framework

| Tier | Files | Stages | Agents | |------|-------|--------|--------| | LITE | 2 (CLAUDE.md, IDENTITY.md) | 4 | 3 | | STANDARD | 3 (+AGENTS.md) | 7 | 6 | | PROFESSIONAL | 4 (+USER.md) | 10 | 10 | | ENTERPRISE | 6 (+TOOLS.md, HEARTBEAT.md) | 11 | 13 |

Per-Chat Workspace

Different chats can focus on different repos simultaneously:

# Chat A (Telegram DM): focused on EndiorBot
/focus endiorbot
@pm check sprint status

# Chat B (Zalo): focused on openfang-auto-clip
/focus openfang
@coder fix the video parser

Docker

# Build
docker build -t endiorbot .

# Run
docker run -p 18790:18790 \
  -e ANTHROPIC_API_KEY=your-key \
  endiorbot

# With env file
docker run -p 18790:18790 --env-file .env endiorbot

Development

pnpm install      # Install dependencies
pnpm dev          # Watch mode
pnpm build        # Build TypeScript
pnpm test         # Run tests (6,500+ passing)
pnpm lint         # Check style
pnpm lint:souls   # Validate 13 SOUL templates

Invariants

1. THIN CLIENT PATTERN: Commands call ./endiorbot.mjs core
2. STDIN JSON FOR HOOKS: Hooks receive JSON via stdin
3. ENDIORBOT SOUL = GOVERNANCE: EndiorBot decides WHAT, Claude Code executes HOW
4. DEFAULT MODEL = SONNET: Opus only for explicit architecture decisions

Documentation

Known Limitations (beta)

  • Composio tool integration not bundled (install separately if needed)
  • API surface may change between beta releases
  • No SLA or production support guarantee
  • Single-developer tested — community feedback welcome

Links

  • Website: https://endiorbot.nhatquangholding.com
  • Repository: https://github.com/Minh-Tam-Solution/EndiorBot

Contributing

See CONTRIBUTING.md for development setup and guidelines.

License

MIT


EndiorBot v0.1.0-beta.1 | CEO Power Tool | SDLC Framework v6.2.0