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

@abhinav2203/codeflow-agent

v0.1.3

Published

Orchestration layer for subagent-driven development using Claude Code agents.

Downloads

548

Readme

codeflow-agent

Orchestration layer for subagent-driven development using Claude Code agents.

Overview

codeflow-agent is a task orchestration package that spawns specialized Claude Code subagents to execute implementation tasks in parallel. It provides:

  • Task Queue Management - Handles task dependencies and parallel execution
  • Agent Spawning - Spawns fresh subagents per task using Claude Code's Agent tool
  • Skill Integration - 15+ built-in skills from the superpowers plugin
  • MCP Integration - 6 built-in MCP servers for extended capabilities
  • Plugin System - 6 built-in plugins for specialized workflows
  • Result Aggregation - Collects and reports results from all subagents

Installation

npm install @abhinav2203/codeflow-agent

Usage

CLI

# Execute a plan
codeflow-agent --plan path/to/plan.json

# List available capabilities
codeflow-agent --list-skills
codeflow-agent --list-mcp
codeflow-agent --list-plugins

Programmatic

import { AgentSpawner } from '@abhinav2203/codeflow-agent';
import type { AgentTask } from '@abhinav2203/codeflow-agent';

const tasks: AgentTask[] = [
  {
    id: 'task-1',
    name: 'Create user model',
    description: 'Create the User model with email and password fields',
    files: ['src/models/user.ts'],
    verify: 'npm test -- --filter=user',
    done: 'User model created with validated email and hashed password',
    dependsOn: [],
    skills: ['superpowers:subagent-driven-development'],
    agentType: 'coder'
  }
];

const spawner = new AgentSpawner({ maxConcurrent: 3 });
const results = await spawner.executeWithQueue(tasks, async (task) => {
  // Execute the task
  return 'Task completed';
});

Capabilities

Built-in Skills

| Skill | Description | Use Cases | |-------|-------------|-----------| | superpowers:subagent-driven-development | Execute plans via subagent dispatch | execution | | superpowers:executing-plans | Batch execution with checkpoints | execution | | context7 | Documentation retrieval | research | | code-review | Comprehensive code review | review, security | | frontend-design | Modern web technologies | frontend, design | | mcp-builder | Build MCP servers | backend, ml | | security-guidance | Security-first development | security | | pr-review-toolkit | PR review and test coverage | review, testing | | simplify | Code simplification | refactor | | github | GitHub integration | ops | | serena | Codebase intelligence | research | | playwright | Browser automation | testing | | sentry | Error tracking | ops |

Built-in MCP Servers

| MCP Server | Description | Tools | |------------|-------------|-------| | claude-peers | Inter-agent communication | list_peers, send_message | | context7 | Documentation retrieval | resolve-library-id, query-docs | | serena | Codebase navigation | find_symbol, search_for_pattern | | playwright | Browser automation | browser_navigate, browser_snapshot | | github | GitHub API | gh_prompt, gh_api | | circleback | Meeting intelligence | search_meetings, search_transcripts |

Built-in Plugins

| Plugin | Description | |--------|-------------| | superpowers | Subagent development framework | | frontend-design | Web UI implementation | | code-review | Quality assurance | | github | Repository management | | context7 | Documentation | | playwright | Testing |

Architecture

packages/codeflow-agent/
├── src/
│   ├── index.ts              # Main exports
│   ├── agent/
│   │   ├── types.ts          # Type definitions
│   │   ├── agent-spawner.ts  # Core spawning logic
│   │   ├── task-queue.ts     # Dependency management
│   │   ├── result-aggregator.ts
│   │   └── prompts/          # Agent prompts
│   ├── skills/
│   │   ├── registry.ts       # Skill registry
│   │   └── loader.ts         # Skill loader
│   ├── mcp/
│   │   ├── registry.ts       # MCP registry
│   │   └── connector.ts     # MCP connector
│   └── plugins/
│       ├── registry.ts       # Plugin registry
│       └── loader.ts         # Plugin loader

License

MIT