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

ai-context-commit-tools

v1.1.0

Published

AI context builder with automated commit message generation and changelog maintenance for enhanced AI-assisted development

Readme

ai-context-commit-tools

🤖 AI context builder with automated commit message generation and changelog maintenance for enhanced AI-assisted development

A comprehensive toolkit that leverages Cursor AI to build rich project context through intelligent commit messages and automated changelogs, enhancing AI-assisted development workflows for any Node.js/TypeScript project.

✨ Features

  • 🧠 AI Context Building: Builds rich project context through intelligent analysis of code changes
  • 📝 Smart Commit Messages: AI generates conventional commit messages that enhance project understanding
  • 📋 Automated Changelog: Incremental changelog generation that maintains project evolution context
  • 🔧 Universal Compatibility: Works with NestJS, React, Express, and any Node.js project
  • ⚡ Easy Installation: One-command setup with automatic project detection
  • 🎯 Context-Aware: Understands your project structure and technology stack for better AI assistance
  • 🔄 CI/CD Integration: GitHub Actions workflow for automated changelog updates
  • 🪝 Git Hooks: Automatic commit message generation that builds context on every commit

🚀 Quick Start

Installation

# Install globally
npm install -g ai-context-commit-tools

# Or install as dev dependency
npm install --save-dev ai-context-commit-tools

Initialize in Your Project

# Auto-detect project type and initialize
npx ai-dev-tools init

# Or specify project type
npx ai-dev-tools init --type nestjs

Prerequisites

  1. Cursor CLI: Install Cursor and ensure CLI is available
  2. Git Repository: Your project must be a git repository
  3. Node.js 16+: Required for the package to run

📖 Usage

AI Commit Message Generation

# Stage your changes
git add .

# Commit with AI-generated message (automatic via git hooks)
git commit

# Or use interactive mode
npx ai-dev-tools commit --interactive

# Add context for better AI generation
git commit -m "add user authentication feature"

Changelog Generation

# Preview changelog changes
npx ai-dev-tools changelog --preview

# Generate changelog (CI mode)
npx ai-dev-tools changelog

# Check status
npx ai-dev-tools status

🎯 Supported Project Types

NestJS Backend

  • Understands controllers, services, modules, guards
  • Recognizes Prisma/TypeORM database changes
  • Categories: auth, api, db, health, shared modules

React Frontend

  • Detects components, hooks, pages, utilities
  • Understands styling and state management changes
  • Categories: ui, components, hooks, styles, utils

Express.js Backend

  • Recognizes routes, controllers, middleware
  • Database models and authentication patterns
  • Categories: api, auth, middleware, models, config

Generic Node.js

  • Works with any Node.js/TypeScript project
  • Adapts to project structure and dependencies
  • Flexible categorization based on file patterns

📝 Generated Commit Examples

NestJS Backend

feat(auth): add Okta SSO integration with JWT validation
fix(api): resolve timeout issues in rewards service endpoint
perf(db): optimize Prisma queries with connection pooling
docs(api): add Swagger documentation for user endpoints

React Frontend

feat(ui): add responsive navigation component
fix(hooks): resolve state synchronization in useAuth
style(components): update button variants with Tailwind
test(utils): add comprehensive validation test suite

🔧 Configuration

Project Context

The AI understands your project through:

  • package.json: Technology stack detection
  • Architecture files: ARCHITECTURE.md, docs/architecture.md
  • Cursor context: .cursor/context.md (auto-generated)

Customization

# Show current configuration
npx ai-dev-tools config --show

# Reset to defaults
npx ai-dev-tools config --reset

🤖 AI Integration

Cursor CLI Setup

  1. Install Cursor
  2. Ensure CLI is accessible:
    cursor --help
  3. Login to Cursor:
    cursor login

AI Models

  • Default: Claude Sonnet 4
  • Fallback: Automatic fallback when AI unavailable
  • Timeout: 30 seconds with graceful degradation

📋 Changelog Format

Generated changelogs follow Keep a Changelog format:

## [Unreleased]

### Added
- **auth**: OAuth integration with JWT tokens
- **ui**: responsive dashboard component

### Fixed
- **api**: timeout handling in service calls
- **db**: connection pool configuration

### Performance
- **queries**: optimize database indexing
- **bundle**: reduce JavaScript bundle size

### Security
- **auth**: enhance token validation
- **api**: add rate limiting protection

🔄 CI/CD Integration

GitHub Actions

The package installs an intelligent PR-based workflow that respects branch protection rules while avoiding duplicate PRs:

# .github/workflows/changelog.yml
name: Changelog Update
on:
  schedule:
    - cron: '30 17 * * *' # 11:00 PM IST daily
  workflow_dispatch:

jobs:
  changelog:
    runs-on: ubuntu-latest
    permissions:
      contents: write
      pull-requests: write
    steps:
      - uses: actions/checkout@v4
      - name: Check for existing changelog PR
        run: # Smart logic to detect existing PRs
      - name: Generate changelog
        run: npx ai-changelog
      - name: Handle PR intelligently
        run: # Create new or update existing PR

🧠 Smart PR Logic

The workflow handles different scenarios intelligently:

Scenario 1: Existing PR + No New Changes

  • Detects existing changelog PR
  • ⏭️ Skips workflow execution
  • 📝 Logs: "Existing PR found, no new changes to add"
  • 🎯 Result: No duplicate PRs created

Scenario 2: Existing PR + New Changes

  • Detects existing changelog PR
  • 🔄 Updates existing PR branch with new commits
  • 📝 Force-pushes to existing branch
  • 📄 Updates PR description with new timestamp
  • 🎯 Result: Single PR with all latest changes

Scenario 3: No Existing PR + New Changes

  • 🆕 Creates new changelog PR
  • 🚀 Enables auto-merge when checks pass
  • 🎯 Result: New PR ready for review/auto-merge

📝 Example Workflow Execution

Here's what you'll see in your GitHub Actions logs:

# Day 1: First run with changes
🔍 Checking for existing changelog PRs...
❌ No existing changelog PR found
📋 Generating changelog...
✅ Changes detected in CHANGELOG.md
🆕 Creating new changelog PR...
✅ Created new PR #42
🚀 Auto-merge enabled for PR #42

# Day 2: Run with existing PR but no new changes  
🔍 Checking for existing changelog PRs...
✅ Found existing changelog PR #42
📋 Generating changelog...
ℹ️ No new changes detected
⏭️ Skipping workflow - existing PR will be merged when approved

# Day 3: Run with existing PR and new changes
🔍 Checking for existing changelog PRs...
✅ Found existing changelog PR #42 on branch changelog-update-20240922
📋 Generating changelog...
✅ New changes detected in CHANGELOG.md
🔄 Updating existing PR #42
📝 Force-pushed to existing branch
📄 Updated PR description with new timestamp
✅ Updated existing PR #42

🔒 Security & Branch Protection

This approach maintains security by:

  • Respecting branch protection rules (uses PRs)
  • Requiring approvals if configured
  • Running status checks before merge
  • Maintaining audit trail through PR history
  • No bypass permissions needed

Benefits

  • 🛡️ Secure: Works with any branch protection setup
  • 🧠 Smart: Avoids duplicate PRs automatically
  • Efficient: Updates existing PRs instead of creating new ones
  • 🔄 Auto-merge: Merges when all requirements are met
  • 📋 Clean: Single PR per changelog update cycle

🚀 Quick Start for Protected Repositories

Perfect for repositories like entrata/homebody-admin with branch protection rules:

# 1. Navigate to your repository
cd homebody-admin

# 2. Install the smart workflow  
npx ai-dev-tools init --force

# 3. Commit the workflow file
git add .github/workflows/changelog.yml
git commit -m "feat: add smart changelog workflow"
git push

# 4. Done! The workflow will:
#    ✅ Respect your 2-approval requirement
#    ✅ Never create duplicate PRs  
#    ✅ Update existing PRs with new commits
#    ✅ Auto-merge when all requirements are met

🔧 How It Works in Your Environment

The workflow will:

  • Create PRs that require your configured approvals (e.g., 2 reviewers)
  • Run all status checks before allowing merge
  • Never bypass your branch protection rules
  • Handle duplicate prevention automatically
  • Auto-merge only when everything is approved

🐛 Troubleshooting

Q: I see multiple changelog PRs being created

  • A: This shouldn't happen with the smart workflow. Check that you're using the latest version of the package.

Q: The workflow isn't updating my existing PR

  • A: Ensure the existing PR was created by github-actions[bot] with title containing "chore: update changelog"

Q: Auto-merge isn't working

  • A: Verify that:
    • All required status checks are passing
    • All required approvals have been received
    • Auto-merge is enabled on your repository settings

Q: I want to disable auto-merge

  • A: Remove the gh pr merge --auto line from the workflow file manually

Q: Auto-merge fails with "unknown flag: --json" error

  • A: Your GitHub CLI version may be older. The workflow will still create PRs successfully, you can:
    • Enable auto-merge manually in the GitHub UI
    • Update GitHub CLI: gh auth refresh && gh release download
    • Or simply approve and merge PRs manually

Git Hooks

Automatic commit message generation via Husky:

# .husky/prepare-commit-msg
npx ai-dev-tools commit

📦 NPM Scripts

After initialization, these scripts are available:

{
  "scripts": {
    "commit:ai": "ai-dev-tools commit --interactive",
    "changelog:ci": "ai-dev-tools changelog",
    "changelog:preview": "ai-dev-tools changelog --preview"
  }
}

🛠️ CLI Commands

Main Commands

ai-dev-tools init [options]          # Initialize in project
ai-dev-tools commit [options]        # Generate commit message
ai-dev-tools changelog [options]     # Generate changelog
ai-dev-tools status                  # Check status
ai-dev-tools config [options]        # Manage configuration

Init Command Options

ai-dev-tools init [options]

Options:
  -t, --type <type>           Project type: nestjs, react, express, nodejs (default: auto)
  -f, --force                 Force overwrite existing files
  --no-hooks                  Skip git hooks installation
  --no-workflow               Skip GitHub Actions workflow
  -h, --help                  Display help for command

Workflow Details

The installed GitHub Actions workflow includes:

  • 🕐 Scheduled Execution: Runs daily at 11:00 PM IST (5:30 PM UTC)
  • 🎛️ Manual Trigger: Can be triggered manually via GitHub Actions UI
  • 🧠 Smart PR Management: Automatically handles existing PRs intelligently
  • 🔄 Auto-Merge: Enables auto-merge when all checks and approvals pass
  • 🛡️ Security Compliant: Works with any branch protection configuration

Additional Options

# Init command
--type <type>     # Project type: nestjs, react, express, nodejs
--force           # Force overwrite existing files
--no-hooks        # Skip git hooks installation
--no-workflow     # Skip GitHub Actions workflow

# Commit command
--interactive     # Interactive mode with preview
--message <msg>   # Additional context for AI
--debug           # Enable debug output

# Changelog command
--preview         # Preview without writing file
--debug           # Enable debug output

🏗️ Project Structure

your-project/
├── .cursor/
│   └── context.md              # AI project context
├── .github/workflows/
│   └── changelog.yml           # Automated changelog workflow
├── .husky/
│   └── prepare-commit-msg      # Git hook for AI commits
├── docs/
│   └── ai-development-tools.md # Documentation
├── scripts/
│   ├── ai-commit-generator.js  # Local AI commit script
│   └── changelog-generator.js  # Local changelog script
└── CHANGELOG.md                # Project changelog

🔒 Security & Privacy

What Data is Processed

This tool processes the following data to build AI context:

  • Git commits and diffs: Analyzed locally to understand code changes
  • Project files: Package.json, file structure for project type detection
  • Code changes: Staged git changes sent to Cursor AI for commit message generation
  • Generated content: Commit messages and changelog entries

Security Considerations

Local Processing: Most operations happen locally on your machine
Cursor AI Integration: Uses your existing Cursor CLI (same as your IDE)
No Data Storage: Tool doesn't store or transmit data to third parties
Open Source: All code is publicly available for security review
Minimal Permissions: Only accesses git repository and project files

Privacy Controls

# Disable AI features if needed
ai-context-commit-tools init --no-ai

# Debug mode to see what data is being processed
ai-context-commit-tools commit --debug

# Local-only mode (no AI calls)
git commit -m "manual message"

Data Flow

  1. Local Analysis: Tool reads your staged git changes
  2. AI Request: Sends code diff to Cursor AI (same as your IDE)
  3. Response: Receives generated commit message
  4. Local Storage: Saves commit and updates local changelog

Note: This tool uses the same AI integration as Cursor IDE - if you trust Cursor with your code, this tool follows the same security model.

🔍 Troubleshooting

Common Issues

Cursor CLI Not Found

# Check installation
cursor --help

# Install Cursor
# Visit https://cursor.sh for installation

AI Generation Fails

# Check Cursor login
cursor status

# Enable debug mode
npx ai-dev-tools commit --debug

Git Hooks Not Working

# Reinstall hooks
npm run prepare

# Check permissions (Unix)
chmod +x .husky/prepare-commit-msg

Debug Mode

Enable detailed logging:

DEBUG=1 npx ai-dev-tools commit
DEBUG=1 npx ai-dev-tools changelog --preview

🤝 Contributing

We welcome contributions! Please see our contributing guidelines for details.

Development

git clone https://github.com/dphadtare/ai-context-commit-tools-package
cd core
npm install
npm run build
npm link

Testing

npm test
npm run test:integration

📄 License

MIT License - see LICENSE file for details.

🙏 Acknowledgments

📞 Support


Made with ❤️ by the AI Development Tools Community