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

@talocode/worklane

v0.1.1

Published

Open-source AI coworker platform for teams

Readme

WorkLane

Open-source AI coworker platform for teams.

Mention agents in chat. Route work. Return finished output.
Self-hostable. Provider-agnostic. Built by Talocode.

What is WorkLane?

WorkLane lets teams mention AI agents inside chat tools and get real work done without opening another dashboard or learning prompt engineering.

Features

  • Telegram-first: Start with Telegram, expand to Slack, Teams, Discord, and more
  • Provider-agnostic: Works with OpenAI, OpenRouter, Ollama, and more
  • Self-hostable: Run on your own infrastructure
  • Open-source: MIT licensed, community-driven

Quick Start

# Install globally
npm install -g @talocode/worklane

# Initialize
worklane init

# Run a task
worklane run "summarize this discussion"

# List agents
worklane agents list

Telegram Bot Setup

  1. Create a bot with @BotFather
  2. Get your bot token
  3. Set environment variable: export TELEGRAM_BOT_TOKEN=your_token
  4. Run: worklane telegram

Agents

  • Manager: Routes tasks to appropriate agents
  • Research: Conducts research on topics
  • Writer: Creates written content
  • Engineer: Plans technical implementation
  • QA: Reviews work for quality
  • Support: Handles support requests
  • Marketing: Creates marketing content

Workflows

  • Summarize: Summarize discussions and extract action items
  • Draft Reply: Draft replies to messages
  • Launch Plan: Create launch plans for products
  • Research: Conduct research on topics
  • Create Issue: Create GitHub issue drafts
  • Create Post: Create social media posts
  • Video Brief: Create video briefs for ClipLoop

Configuration

WorkLane uses a TOML config file at ~/.worklane/config.toml:

model = "gpt-4"
provider = "openai"

[providers.openai]
base_url = "https://api.openai.com/v1"
env_key = "OPENAI_API_KEY"

[providers.openrouter]
base_url = "https://openrouter.ai/api/v1"
env_key = "OPENROUTER_API_KEY"

[providers.ollama]
base_url = "http://localhost:11434/v1"

Architecture

worklane/
├── apps/
│   ├── telegram-bot/    # Telegram bot interface
│   └── api-server/      # HTTP webhook server
├── packages/
│   ├── core/            # Core routing and types
│   ├── agents/          # Agent definitions
│   ├── memory/          # Local memory storage
│   ├── providers/       # Provider-agnostic model layer
│   ├── workflows/       # Workflow definitions
│   ├── connectors/      # Platform connectors
│   └── cli/             # CLI interface
└── docs/                # Documentation

Security

  • Never print API keys
  • Never expose .env files
  • No automatic external sends
  • No destructive actions without approval
  • Log what agents do
  • Store runs locally

Documentation

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Run tests: npm test
  5. Submit a pull request

License

MIT © Talocode