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

@tellet/create

v0.9.0

Published

The open-source platform for running an Agentic Company

Readme

Tell it. Let it.

The open-source platform for running an Agentic Company.

npx create-tellet

tellet is a management platform for AI-powered companies. One command generates your AI agent team, website, dashboard, Knowledge Base, and Orchestrator — ready to deploy anywhere.

What you get

  • AI Agent Team — 3-5 agents auto-generated for your business (CS, marketing, sales, ops)
  • Orchestrator — Manage your entire company through conversation
  • Knowledge Base — pgvector-powered, agents reference it for accurate answers
  • Dashboard — Stats, agent chat, conversations, onboarding
  • Tool Marketplace — Stripe, Email, GitHub, Slack, Notion via MCP
  • Embeddable Widget — One script tag to add AI chat to any website
  • 3-Tier Deployment — Free (Vercel) / Cloud (Railway) / Enterprise (AWS)

How it works

npx create-tellet

? New or Connect?          → New business or add AI to existing
? Deployment?              → Quick Start / Cloud / Enterprise
? AI Provider?             → Anthropic / OpenAI
? Company name?            → Sunny Coffee
? Describe your business   → We sell specialty coffee...

  Generating your AI team and website...

  Your team:
  Barista (customer_support)
  Roaster (marketing)
  Grinder (sales)

  Your website:
  "Coffee worth waking up for"

  ✓ Project created!

Quick start

# Quick Start (Vercel + Supabase, free)
npx create-tellet
cd your-company
npm install && npm run dev

# Cloud (Docker + Railway, $5/mo)
npx create-tellet  # choose "Cloud"
cd your-company
docker compose up         # local dev
railway up                # deploy

# Enterprise (AWS CDK, $5-15/mo)
npx create-tellet  # choose "Enterprise"
cd your-company/infra
npm install && npx cdk deploy

Architecture

┌─ tellet Platform ─────────────────────────┐
│  Owner ↔ Orchestrator                      │
│              ↕                             │
│  Agent Team (CS · Marketing · Sales · Ops) │
│              ↕                             │
│  MCP Bridge Layer                          │
│  (KB, Stripe, DB, Email, Custom API...)    │
└────────────────────────────────────────────┘

Project structure

your-company/
├── agents/                # AI agent definitions (auto-generated)
├── app/
│   ├── (site)/            # Public website with chat widget
│   ├── (dashboard)/       # Management dashboard + Orchestrator
│   └── api/
│       ├── chat/          # Streaming chat API (tool use)
│       ├── orchestrator/  # Orchestrator API (tool use loop)
│       └── cron/          # Scheduled agent tasks
├── components/
│   ├── chat/              # ChatWidget, Markdown
│   ├── dashboard/         # Sidebar, Stats, AgentChat, Orchestrator
│   └── sections/          # Landing page sections
├── lib/
│   ├── engine/            # Agent runtime with tool use agentic loop
│   ├── providers/         # LLM providers (Anthropic, OpenAI)
│   ├── mcp/               # MCP client, Knowledge Base, tool registry
│   ├── orchestrator/      # Orchestrator tools + executor
│   └── scheduler.ts       # Cron/heartbeat agent scheduler
├── public/widget.js       # Embeddable chat widget
├── tellet.json            # Configuration (single source of truth)
├── Dockerfile             # Docker deployment (Cloud/Enterprise)
├── docker-compose.yml     # Local dev with PostgreSQL + pgvector
├── railway.toml           # Railway auto-deploy
└── infra/                 # AWS CDK (Enterprise only)

Orchestrator

The Orchestrator is your AI company manager. Talk to it from the dashboard:

  • "Show my stats" — conversations, messages, costs
  • "Update the website tagline" — modifies site content
  • "Add Stripe to my agents" — installs tools from marketplace
  • "Schedule marketing to post daily at 9am" — sets up cron tasks
  • "Add our refund policy to the Knowledge Base" — agents reference it

Tool Marketplace

Connect tools via the Orchestrator or tellet.json:

| Tool | Package | Use case | |------|---------|----------| | Stripe | @stripe/mcp | Payments, invoices, subscriptions | | Email | resend-mcp | Send emails, campaigns | | GitHub | @modelcontextprotocol/server-github | Issues, PRs, repos | | Slack | @anthropic-ai/mcp-server-slack | Messages, channels | | Notion | @anthropic-ai/mcp-server-notion | Docs, databases |

19,000+ MCP servers available via the MCP Registry.

Deployment options

| Tier | Provider | Cost | Best for | |------|----------|------|----------| | Quick Start | Vercel + Supabase | $0 | Prototyping, new business | | Cloud | Railway / Render / Fly.io | $5-20/mo | Production, startups | | Enterprise | AWS CDK (Lambda + RDS) | $5-15/mo | Scale, existing AWS |

Connect mode

Already have a business? Use Connect mode:

npx create-tellet  # choose "Connect"
  • Skips site generation, keeps dashboard + API
  • Embeddable widget for your existing site:
<script src="https://your-tellet.com/widget.js"
        data-agent="support"
        data-api="https://your-tellet.com"></script>

Configuration

All configuration lives in tellet.json:

{
  "company": { "name": "Sunny Coffee", "industry": "Food & Beverage" },
  "mode": "new",
  "llm": { "provider": "anthropic", "defaultModel": "claude-sonnet-4-6" },
  "agents": [
    { "id": "barista", "role": "customer_support", "tools": ["search_knowledge"] },
    { "id": "roaster", "role": "marketing", "tools": ["email"] }
  ],
  "tools": {
    "search_knowledge": { "type": "builtin" },
    "email": { "type": "mcp", "package": "resend-mcp" }
  },
  "site": { "tagline": "Coffee worth waking up for", "..." : "..." }
}

Tech stack

License

MIT

Links