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

vscode-codechef

v0.5.0

Published

AI-powered task orchestration with LangGraph single-orchestrator architecture, 150+ MCP tools, and LangChain function calling. Submit development tasks via Copilot Chat.

Readme

code/chef - AI Agent Orchestrator

VS Code MCP Tools LangGraph

VS Code extension that integrates the code/chef orchestrator into Copilot Chat, enabling AI-powered task automation with 150+ MCP tools.

Features

  • @codechef Chat Participant - Submit tasks directly from Copilot Chat
  • LangGraph Workflow Engine - Single orchestrator with agent nodes and PostgreSQL checkpointing
  • 150+ MCP Tools - LangChain function calling with progressive disclosure (80-90% token savings)
  • Agent Routing - Routes to specialized agents (feature-dev, code-review, infrastructure, cicd, documentation)
  • Workspace Context - Automatically extracts git branch, open files, project type
  • HITL Approvals - Linear integration for human-in-the-loop workflow
  • Observability - LangSmith tracing + Prometheus metrics

Quick Start

1. Install Extension

From VS Code Marketplace or build locally:

cd extensions/vscode-codechef
npm install && npm run compile
npx vsce package
code --install-extension vscode-codechef-0.5.0.vsix

2. Configure

Press F1 → "code/chef: Configure"

Required Settings:

  • codechef.orchestratorUrl - Orchestrator endpoint (default: https://codechef.appsmithery.co/api)
  • codechef.apiKey - API key for authentication (get from administrator)

3. Use in Copilot Chat

Open Copilot Chat (Ctrl+I) and type:

@codechef Add JWT authentication to my Express API

Commands

Chat Commands

| Command | Description | Example | | -------------------------------------- | ------------------------ | ------------------------------- | | @codechef <task> | Submit development task | @codechef Add authentication | | @codechef /status <id> | Check task status | @codechef /status abc123 | | @codechef /approve <task> <approval> | Approve pending task | @codechef /approve abc123 xyz | | @codechef /tools | List available MCP tools | @codechef /tools |

Command Palette (F1)

  • code/chef: Submit Task - Submit via input box
  • code/chef: Check Status - Check task status
  • code/chef: Configure - Update settings
  • code/chef: Show Approvals - Open Linear approval hub
  • code/chef: Clear Cache - Clear session cache

Configuration

| Setting | Description | Default | | ------------------------------- | -------------------------- | ------------------------------------- | | codechef.orchestratorUrl | Orchestrator endpoint | https://codechef.appsmithery.co/api | | codechef.apiKey | API key for authentication | (required) | | codechef.linearHubIssue | Linear approval hub | DEV-68 | | codechef.linearWorkspaceSlug | Linear workspace slug | dev-ops | | codechef.autoApproveThreshold | Auto-approve risk level | low | | codechef.enableNotifications | Toast notifications | true | | codechef.langsmithUrl | LangSmith project URL | (set) |

Workspace Settings

Create .vscode/settings.json:

{
  "codechef.orchestratorUrl": "https://codechef.appsmithery.co/api",
  "codechef.apiKey": "your-api-key-here",
  "codechef.autoApproveThreshold": "low"
}

Example Workflow

@codechef Add user authentication with JWT tokens

Response:

✅ Task Submitted (abc123)

Subtasks (4):
💻 feature-dev: Implement JWT middleware
💻 feature-dev: Add login/logout endpoints
🔍 code-review: Security audit
📚 documentation: Generate API docs

Estimated Duration: 30 minutes

Approval Workflow

High-risk tasks require human approval via Linear:

  1. Task submitted → Risk assessment
  2. Sub-issue created under DEV-68
  3. User notified via toast/Linear
  4. Approve by marking "Done" in Linear
  5. Workflow continues

Troubleshooting

Cannot connect to orchestrator

  1. Check URL: F1 → "code/chef: Configure"
  2. Verify API key is set in settings
  3. Test health: curl https://codechef.appsmithery.co/api/health

401 Unauthorized

API key is missing or invalid:

  1. Get API key from administrator
  2. Set in VS Code settings: codechef.apiKey

No tools appearing

  1. Clear cache: F1 → "code/chef: Clear Cache"
  2. Restart VS Code

Development

# Build
npm run compile

# Package
npx vsce package

# Publish to npm
npm publish --ignore-scripts

License

MIT License - see LICENSE

Links