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

@atlashub/claude-tools

v1.6.1

Published

Claude Code automation toolkit - GitFlow, APEX, EF Core migrations, prompts and more

Readme

@atlashub/claude-tools

Claude Code automation toolkit - GitFlow, APEX, EF Core migrations, prompts and more.

Features

  • GitFlow workflow automation with 11 phases
  • Advanced EF Core migration management (multi-context, validation, rollback)
  • APEX methodology (Analyze-Plan-Execute-eXamine)
  • Git workflow commands (commit, PR creation, merge)
  • Prompt generation tools
  • License key validation system
  • Interactive CLI with colored output
  • Project auto-detection (Git, .NET, EF Core)
  • Global installation to ~/.claude (user-level)

Installation

Installation globale (recommandé)

npm install -g @atlashub/claude-tools

Puis utilisez les commandes claude-tools ou ct :

claude-tools --help
ct --help

Installation dans un projet

npm install -D @atlashub/claude-tools
npx claude-tools install --local

Exécution directe (sans installation)

npx @atlashub/claude-tools install --local

Quick Start

# Activate your license
claude-tools activate YOUR-LICENSE-KEY

# Install commands to ~/.claude (global - default)
claude-tools install

# Or install to project directory ./.claude (local)
claude-tools install --local

# Check status
claude-tools status

CLI Commands

| Command | Alias | Description | |---------|-------|-------------| | activate <key> | a | Activate license key | | install | i | Install commands, agents, and hooks | | uninstall | u | Remove commands, agents, and hooks | | status | s | Show license and installation status | | update | - | Update commands to latest version |

Install Options

# Install all components (default)
claude-tools install

# Install specific components only
claude-tools install --commands-only
claude-tools install --agents-only
claude-tools install --hooks-only

# Install to project directory instead of user directory
claude-tools install --local

# Force overwrite existing files
claude-tools install --force

# Skip config file creation
claude-tools install --no-config

Uninstall Options

# Remove all components
claude-tools uninstall

# Remove specific components only
claude-tools uninstall --commands-only
claude-tools uninstall --agents-only
claude-tools uninstall --hooks-only

# Keep configuration file
claude-tools uninstall --keep-config

# Skip confirmation
claude-tools uninstall --yes

Claude Code Commands (after installation)

GitFlow Workflow

| Command | Description | |---------|-------------| | /gitflow | Full GitFlow workflow orchestrator | | /gitflow:1-init | Initialize GitFlow structure | | /gitflow:2-status | Show detailed GitFlow status | | /gitflow:3-commit | Smart commit with migration handling + auto-push for worktrees | | /gitflow:4-plan | Create integration plan | | /gitflow:5-exec | Execute integration plan | | /gitflow:6-abort | Rollback operations | | /gitflow:7-pull-request | Create PR with auto-generated description and checks | | /gitflow:8-review | Review PR with checklist and suggestions | | /gitflow:9-merge | Merge PR with all validations | | /gitflow:10-start | Start new feature/release/hotfix branch (with worktree) | | /gitflow:11-finish | Finalize branch (tag + merge back + cleanup) |

APEX Methodology

| Command | Description | |---------|-------------| | /apex | Full APEX workflow | | /apex:1-analyze | Gather context and create analysis | | /apex:2-plan | Create implementation strategy | | /apex:3-execute | Implement the plan | | /apex:4-examine | Validate and test | | /apex:5-tasks | Divide into task files |

Business Analyse (Specification to Implementation)

| Command | Description | |---------|-------------| | /business-analyse | Full BA workflow (7 phases) | | /business-analyse:1-init | Initialize .business-analyse/ structure | | /business-analyse:2-discover | Adaptive questionnaire (ultrathink) | | /business-analyse:3-analyse | BRD generation (ultrathink) | | /business-analyse:4-specify | FRD with use cases & wireframes (ultrathink) | | /business-analyse:5-document | Cross-cutting documentation | | /business-analyse:6-handoff | Generate autonomous dev prompt | | /business-analyse:7-dev | Guided implementation with user validation | | /business-analyse:bug | Bug documentation & specification |

Note: Phases 1-6 produce specifications only. Phase 7 implements with mandatory user validation before each step.

EF Core Migrations

| Command | Description | |---------|-------------| | /db-migration | Database migration management | | /ef-migration-sync | Sync migrations between branches | | /ef-migration-squash | Squash migrations |

Git Commands

| Command | Description | |---------|-------------| | /git:commit | Quick commit with clean messages | | /git:commitizen | Conventional commit messages | | /git:create-pr | Create pull request | | /git:fix-pr-comments | Fix PR review comments | | /git:merge | Intelligent branch merge |

Development Commands

| Command | Description | |---------|-------------| | /epct | Explore-Plan-Code-Test methodology | | /oneshot | Ultra-fast feature implementation | | /debug | Systematic bug debugging | | /explore | Deep codebase exploration | | /explain | Code explanation with diagrams | | /review | Quick code review | | /quick-search | Lightning-fast search |

Prompt Generation

| Command | Description | |---------|-------------| | /prompts:create | Create optimized prompts | | /prompts:agent | Create agent prompts | | /prompts:command | Create command prompts | | /prompts:claude-memory | Create/update CLAUDE.md |

Configuration

After installation, configuration is stored in ~/.claude/gitflow/config.json:

{
  "$schema": "https://atlashub.ch/schemas/claude-gitflow-config.json",
  "version": "1.1.0",
  "git": {
    "branches": {
      "main": "main",
      "develop": "develop",
      "featurePrefix": "feature/",
      "releasePrefix": "release/",
      "hotfixPrefix": "hotfix/"
    },
    "remote": "origin",
    "mergeStrategy": "--no-ff",
    "tagPrefix": "v",
    "protectedBranches": ["main", "develop"],
    "requireLinearHistory": false
  },
  "efcore": {
    "enabled": true,
    "autoDetect": true,
    "contexts": [
      {
        "name": "ApplicationDbContext",
        "projectPath": "auto-detect",
        "startupProject": "auto-detect",
        "migrationsFolder": "Migrations"
      }
    ],
    "database": {
      "configFile": "appsettings.Local.json",
      "connectionStringName": "DefaultConnection",
      "provider": "SqlServer"
    },
    "scripts": {
      "generateOnRelease": true,
      "generateOnHotfix": true,
      "idempotent": true,
      "outputPath": "./scripts/migrations"
    },
    "validation": {
      "validateBeforeCommit": true,
      "validateBeforeMerge": true,
      "checkModelSnapshotConflicts": true,
      "requireBuildSuccess": true
    }
  },
  "workflow": {
    "requireConfirmation": true,
    "autoDeleteBranch": false,
    "createCheckpoints": true,
    "push": {
      "afterCommit": "worktree"
    },
    "commitConventions": {
      "enabled": true,
      "feature": "feat: ",
      "fix": "fix: ",
      "release": "release: ",
      "hotfix": "hotfix: "
    }
  },
  "ui": {
    "colors": true,
    "showProgress": true,
    "language": "fr"
  }
}

Directory Structure

After installation, the following structure is created:

~/.claude/                    # User-level (global)
├── commands/                 # Slash commands
│   ├── gitflow.md           # GitFlow orchestrator
│   ├── gitflow/             # GitFlow phases (11)
│   │   ├── 1-init.md
│   │   ├── 2-status.md
│   │   ├── 3-commit.md
│   │   ├── 4-plan.md
│   │   ├── 5-exec.md
│   │   ├── 6-abort.md
│   │   ├── 7-pull-request.md
│   │   ├── 8-review.md
│   │   ├── 9-merge.md
│   │   ├── 10-start.md
│   │   └── 11-finish.md
│   ├── apex.md              # APEX orchestrator
│   ├── apex/                # APEX phases
│   ├── ef-migrations/       # EF Core commands
│   ├── git/                 # Git workflow commands
│   └── prompts/             # Prompt generators
├── agents/                   # Specialized agents
│   ├── gitflow/             # GitFlow agents (11)
│   │   ├── init.md
│   │   ├── status.md
│   │   ├── commit.md
│   │   ├── plan.md
│   │   ├── exec.md
│   │   ├── abort.md
│   │   ├── pr.md
│   │   ├── review.md
│   │   ├── merge.md
│   │   ├── start.md
│   │   └── finish.md
│   ├── explore-codebase.md
│   ├── explore-docs.md
│   ├── action.md
│   ├── snipper.md
│   ├── websearch.md
│   └── fix-grammar.md
├── hooks/                    # Claude Code hooks
│   └── hooks.json
└── gitflow/                  # GitFlow data
    ├── config.json          # Configuration
    ├── plans/               # Integration plans
    ├── logs/                # Operation logs
    └── migrations/          # Migration tracking
        └── history.json

License

This software requires a valid license key. Visit atlashub.ch/claude-tools for licensing information.

Support