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

@torka/claude-workflows

v0.10.0

Published

Claude Code workflow helpers: epic automation, git cleanup, agents, and design workflows

Readme

@torka/claude-workflows

Claude Code workflow helpers for epic automation, git management, and developer productivity.

Features

| Feature | Description | Standalone | |---------|-------------|------------| | Git Cleanup & Merge | Intelligent branch management, PR creation, CI monitoring | Yes | | Parallelization Analysis | Identify which epics can run in parallel with Git worktrees | Yes | | Agent Creator | Design and deploy custom Claude Code agents | Yes | | Designer-Founder | Transform ideas into dev-ready frontend artifacts | Yes | | Epic Orchestration | Automate multi-story epic execution with sub-agents | Requires BMAD | | Code Review Agent | Principal-level code review automation | Requires BMM | | Story Prep Agent | Convert requirements to developer-ready specs | Requires BMM |

Installation

Project-level (recommended)

npm install --save-dev @torka/claude-workflows

Global

npm install -g @torka/claude-workflows

The installer automatically copies files to your .claude/ directory:

  • Project-level: Files go to <project>/.claude/
  • Global: Files go to ~/.claude/

Post-Installation Setup

After installation, try running one of the commands to test:

/git-cleanup-and-merge
/plan-parallelization
/designer-founder

Usage

Commands

/git-cleanup-and-merge

Comprehensive git branch management workflow:

  • Analyzes all branches (merged, diverged, orphaned)
  • Handles Git worktrees correctly
  • Pushes unpushed commits
  • Creates PRs for unpushed branches
  • Waits for CI to pass
  • Merges approved PRs
  • Cleans up merged branches
/git-cleanup-and-merge

/plan-parallelization

Analyzes epic files to identify parallelization opportunities:

  • Detects epic-to-epic dependencies
  • Groups epics into execution phases
  • Generates worktree commands for parallel execution
  • Tracks progress against sprint status
/plan-parallelization

/implement-epic-with-subagents

Requires BMAD Method

Orchestrates sub-agents to execute all stories in an epic sequentially with minimal intervention.

/implement-epic-with-subagents

Agents

principal-code-reviewer

Requires BMM /code-review workflow

Expert-level code review agent. Launch after completing code to validate:

  • Code quality and correctness
  • Test coverage
  • Architecture compliance
  • Security and performance

story-prep-master

Requires BMM /create-story workflow

Converts product requirements into developer-ready specifications:

  • Breaks down epics into actionable stories
  • Ensures completeness with acceptance criteria
  • Creates story files ready for development

Skills

/agent-creator

Design and deploy custom Claude Code agents:

  • Step-by-step agent creation workflow
  • Templates for story-based and non-story agents
  • Registry system for tracking created agents
  • Community repository research guidance
/agent-creator

/designer-founder

Transform design ideas into production-ready frontend artifacts:

  • UI/UX design workflow optimized for solo developers
  • Component-first approach using shadcn/ui + Tailwind CSS
  • Multiple design tools: wireframes, MagicPatterns, SuperDesign
  • Dev-ready output: component strategies, layouts, user journeys

Philosophy:

  • Library-first: Start from "what existing component can I use?"
  • Decision-focused: Capture choices, not specifications
  • Speed over perfection: Working prototype beats perfect mockup
/designer-founder

Dependencies

Some components require the BMAD Method workflows:

| Component | Dependency | |-----------|------------| | implement-epic-with-subagents | @_bmad/bmm/workflows/ | | principal-code-reviewer | BMM /code-review workflow | | story-prep-master | BMM /create-story workflow |

Standalone components (no external dependencies):

  • /git-cleanup-and-merge
  • /plan-parallelization
  • /agent-creator skill
  • /designer-founder skill

File Structure

After installation, files are placed in:

.claude/
├── commands/
│   ├── implement-epic-with-subagents.md
│   ├── plan-parallelization.md
│   └── git-cleanup-and-merge.md
├── agents/
│   ├── principal-code-reviewer.md
│   └── story-prep-master.md
└── skills/
    ├── agent-creator/
    │   ├── SKILL.md
    │   ├── REGISTRY.yaml
    │   ├── STORY-AGENT-TEMPLATE.md
    │   ├── NON-STORY-AGENT-TEMPLATE.md
    │   └── COMMUNITY-REPOS.md
    └── designer-founder/
        ├── workflow.md
        ├── steps/
        ├── templates/
        └── tools/

Uninstallation

npm uninstall @torka/claude-workflows

Manual cleanup (if files remain after uninstall):

# Remove installed files
rm -rf .claude/commands/implement-epic-with-subagents.md \
       .claude/commands/plan-parallelization.md \
       .claude/commands/git-cleanup-and-merge.md \
       .claude/agents/principal-code-reviewer.md \
       .claude/agents/story-prep-master.md \
       .claude/skills/agent-creator \
       .claude/skills/designer-founder

Customization

Creating Custom Agents

Use the /agent-creator skill to create project-specific agents:

  1. Run /agent-creator
  2. Follow the 5-step workflow
  3. Agents are saved to .claude/agents/

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Submit a pull request

License

MIT License - see LICENSE for details.

Author

Varun Torka

Links