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

claude-tasker

v1.1.0

Published

Micro-task development workflow for Claude Code with specialized AI agents

Downloads

5

Readme

Tasker System

Micro-task development workflow for Claude Code with specialized AI agents. Optimized for startup velocity with focused, single-task iterations.

Installation

Option 1: NPX

npx claude-tasker init

Option 2: Manual Setup (Current)

  1. Navigate to your project directory and copy the required files:

    # Copy configuration files from claude-tasker repository
    cp /path/to/claude-tasker/.claude .
    cp /path/to/claude-tasker/.claude-settings.json .
    cp /path/to/claude-tasker/CLAUDE.md .
  2. Initialize the docs structure:

    mkdir -p docs/features
    echo "# Global Business Ideas" > docs/backlog.md
  3. Verify setup by checking files are in place:

    ls -la .claude* CLAUDE.md docs/

Quick Start

Once installed, use these commands in Claude Code:

/tasker-start [feature-name]    # Create new feature with business analysis
/tasker-continue [feature-name] # Resume workflow with intelligent next-step detection
/tasker-status [feature-name]   # Show current progress and backlog management
/tasker-implement [feature-name] # Execute development task with strict TDD
/tasker-close [feature-name]    # Mark feature complete, cleanup files

Required Files

The Tasker system requires these files in your project root:

  • .claude - Claude Code hooks and workflow commands
  • .claude-settings.json - Tool configuration and TDD enforcement hooks
  • CLAUDE.md - Complete development guidelines and workflow documentation
  • docs/backlog.md - Global business ideas backlog
  • docs/features/ - Feature-specific workflows and backlogs

Intelligent Workflow

Philosophy: Each agent focuses on ONE task only, everything else goes to backlog for later prioritization.

Smart Agent Skipping: Agents automatically detect when they're not needed and skip themselves:

  • Business Analyst: Skips technical fixes, refactoring, internal tooling
  • Product Manager: Skips pure backend work, technical changes with no UX impact
  • Solution Architect: Skips simple bug fixes, low-risk changes, styling/config
  • QA Engineer: Skips refactoring, docs, config changes with no user-facing impact
  • Security Analyst: Skips styling, docs, changes with no data/auth/external interactions

Agents Process:

  1. Business Analyst → Business need (2-3 lines) + ideas to global backlog
  2. Product Manager → UX details (2-3 lines) + feature ideas to backlog
  3. Solution Architect → Risk assessment (can REJECT and redirect to safer alternatives)
  4. Tech Lead → Single implementation task (1-2 days max) + Frontend/Backend focus
  5. Full-Stack Developer → TDD implementation (one side per task)
  6. QA Engineer → Quick validation with ✅ QA APPROVED marker
  7. Security Analyst → Fast security check with ✅ SECURITY APPROVED marker

File Structure

docs/
├── backlog.md                           # Global business ideas across features
└── features/
    ├── YY-MM-DD-[feature-name]/         # Active features (folders)
    │   ├── work.md                      # Current single task (all agents append)
    │   └── backlog.md                   # Feature-specific backlog by section
    └── YY-MM-DD-[completed].md          # Done features (files)

Status Logic: Folders = active work, Files = completed features

Append-Only Workflow

All agents append to single work.md with standardized approval markers:

**Business Need**: [2-3 sentences about problem and solution]
**Current Task**: [The one thing we'll build]  
**Success Metric**: [How we know this task worked]

**User Experience**: [How users will interact with this task]
**Priority Rationale**: [Why this task first vs alternatives]

**✅ TECHNICAL APPROVED**
**Implementation Notes**: [Key technical approach or constraints]

**Development Task**: [Single focused implementation story]
**Focus**: [Frontend | Backend] - which side to implement
**Files to Change**: 
- Create: [specific-file-path]
- Modify: [specific-file-path:line-numbers]

**✅ QA APPROVED**
**Acceptance Criteria Verified:**
- [✓] [Criteria 1] - Works as expected

**✅ SECURITY APPROVED**  
**Security Check:**
- [✓] Input validation present
- [✓] No obvious injection vulnerabilities

Two-Tier Backlog System

Global Backlog (docs/backlog.md): Cross-feature concepts and new feature ideas

Feature Backlog (backlog.md): Sectioned by role (Product Features, Technical Concerns, Development Tasks)

Decision Gates and User Control

  • Solution Architect can REJECT tasks → redirects to safer alternatives
  • QA Engineer can REJECT implementation → back to Developer for fixes
  • Security Analyst can BLOCK deployment → back to Developer for security fixes
  • User chooses next direction after each task completion

TDD Enforcement

TEST-DRIVEN DEVELOPMENT IS NON-NEGOTIABLE

  • Red→Green→Refactor cycle enforced
  • Every single line of production code written in response to failing test
  • No exceptions, no shortcuts

Key Features

  • Micro-tasks: 1-2 day implementation cycles maximum
  • Single focus: One agent, one task at a time
  • Quality gates: Standardized approval markers for QA and Security
  • Two-tier backlog: Global ideas + feature-specific backlogs
  • Strict TDD: Non-negotiable test-first development
  • Intelligent skipping: Agents skip themselves when not needed

See CLAUDE.md for comprehensive development guidelines and technology stack details.