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

workflow-agent-vscode

v0.1.0

Published

Self-evolving workflow management with real-time validation

Readme

Workflow Agent - VS Code Extension

Real-time workflow validation and enforcement for VS Code.

Features

🔍 Real-Time Validation

  • Commit Message Validation: Validates conventional commit format as you type
  • Branch Name Validation: Checks branch naming patterns against your workflow config
  • Scope Validation: Ensures scopes match your project's defined scopes

📊 Status Bar Integration

  • Shows current branch name and enforcement mode
  • Visual indicators for validation state (green = valid, yellow = warning, red = error)
  • Click to view full configuration

⌨️ Command Palette

Access all Workflow Agent features from the command palette:

  • Workflow: Initialize - Set up workflow configuration
  • Workflow: Validate Branch - Validate current branch name (Ctrl+Shift+W / Cmd+Shift+W)
  • Workflow: Suggest Improvement - Submit a suggestion to the improvement tracker
  • Workflow: Run Doctor - Check for configuration issues
  • Workflow: Show Configuration - View current workflow configuration

💡 IntelliSense

  • Autocomplete for commit scopes
  • Hover tooltips for validation errors
  • Quick fixes for common issues

Installation

From VSIX

  1. Download the latest .vsix file from releases
  2. Open VS Code
  3. Go to Extensions view (Ctrl+Shift+X)
  4. Click the ... menu → "Install from VSIX..."
  5. Select the downloaded file

From Marketplace

code --install-extension workflow-agent

Configuration

Extension Settings

Configure the extension through VS Code settings:

{
  "workflowAgent.enabled": true,
  "workflowAgent.validateOnType": true,
  "workflowAgent.showStatusBar": true,
  "workflowAgent.autoSuggest": false,
  "workflowAgent.strictMode": false
}

Workspace Configuration

Initialize workflow configuration in your workspace:

  1. Open command palette (Ctrl+Shift+P / Cmd+Shift+P)
  2. Run Workflow: Initialize
  3. Select a preset or create custom configuration

Or use the CLI:

workflow init --preset library --name my-project

Usage

Validating Commits

The extension automatically validates commit messages as you type in:

  • Git commit input boxes
  • .git/COMMIT_EDITMSG files
  • SCM view commit message field

Invalid messages will show:

  • Red squiggly underlines in the editor
  • Diagnostic messages in the Problems panel
  • Error icons in the status bar

Validating Branches

Press Ctrl+Shift+W (or Cmd+Shift+W on Mac) to validate the current branch name.

Valid branch format:

<type>/<scope>/<description>

Examples:

  • feature/auth/add-oauth
  • bugfix/api/fix-rate-limit
  • docs/readme/update-installation
  • fix-bug
  • feature_new_thing

Suggesting Improvements

  1. Open command palette
  2. Run Workflow: Suggest Improvement
  3. Enter your suggestion
  4. Select a category (feature, bug, documentation, etc.)
  5. Suggestion is submitted to the improvement tracker

Troubleshooting

Extension Not Working

  1. Check if workflow is initialized: Look for workflow.config.json in workspace root
  2. Run Workflow: Run Doctor to diagnose issues
  3. Check Output panel → "Workflow Agent" for errors

Validation Not Triggering

  1. Ensure workflowAgent.enabled is true
  2. Check if you're in a git repository
  3. Verify workflow.config.json exists and is valid

Status Bar Not Showing

  1. Ensure workflowAgent.showStatusBar is true
  2. Check if you're in a git repository
  3. Try reloading the window (Ctrl+R)

Development

Building

pnpm install
pnpm build

Testing

# Launch extension development host
pnpm dev

# Run in VS Code
# Press F5 to open Extension Development Host

Packaging

pnpm package

Creates a .vsix file in the root directory.

License

MIT - see LICENSE