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

aidf

v0.7.1

Published

AI-Integrated Development Framework — task runner with scope enforcement, MCP server, and structured context for AI agents

Readme

aidf

CI npm version License: MIT

Structure your AI context. Automate your development tasks.

Documentation | GitHub

Installation

npm install -g aidf

Quick Start

aidf init --smart    # Create .ai/ with AI-customized config
aidf task create     # Create a task interactively
aidf run             # Execute the first pending task
aidf status          # View project dashboard

Two Use Cases

Context — Give any AI assistant structured project knowledge. Works with Claude Code, Cursor, Copilot, or any LLM. Just run aidf init — no automation required.

Automation — Execute scoped tasks autonomously with aidf run. Iterative AI execution loop with scope enforcement, validation, and auto-commit.

Commands

| Command | Description | Key Flags | |---------|-------------|-----------| | aidf init | Initialize .ai/ folder | --yes, --force, --smart | | aidf run [tasks...] | Execute tasks autonomously | --parallel, --resume, --auto-pr, --quiet, --dry-run | | aidf task create | Create a task interactively | --template <name> | | aidf task list | List all tasks with status | --all | | aidf task status | Show task details | | | aidf watch | Auto-execute on new/modified tasks | --debounce <ms> | | aidf status | Project dashboard | --json | | aidf hooks install | Install git hooks | --husky, --pre-commit | | aidf hooks uninstall | Remove AIDF git hooks | | | aidf skills list | List discovered skills | | | aidf skills init <name> | Create a new skill | --global | | aidf skills validate | Validate skills | | | aidf skills add <path> | Add an external skill | | | aidf mcp serve | Start MCP server for AI clients | | | aidf mcp install | Generate MCP config | --target <client> |

Configuration

version: 1
provider:
  type: claude-cli       # claude-cli | cursor-cli | anthropic-api | openai-api
  model: claude-sonnet-4-20250514
execution:
  max_iterations: 50
  max_consecutive_failures: 3
  timeout_per_iteration: 300
permissions:
  scope_enforcement: strict  # strict | ask | permissive
  auto_commit: true
  auto_push: false
  auto_pr: false
validation:
  pre_commit: [pnpm lint, pnpm typecheck]
  pre_push: [pnpm test]
git:
  commit_prefix: "aidf:"
  branch_prefix: "aidf/"

Providers

| Provider | Setup | Token Tracking | |----------|-------|----------------| | claude-cli (default) | Install Claude Code | No | | cursor-cli | Install Cursor CLI | No | | anthropic-api | Set ANTHROPIC_API_KEY | Yes | | openai-api | Set OPENAI_API_KEY | Yes |

Features

  • Live progress bar with elapsed time, token tracking, and ETA
  • Parallel task execution with dependency detection
  • Watch mode for CI/CD pipelines
  • Scope enforcement (strict, ask, permissive)
  • Auto-commit and auto-PR creation
  • Resume blocked tasks with preserved context
  • Git hooks: pre-commit, commit-msg, pre-push
  • Notifications: desktop, Slack, Discord, email
  • Agent Skills: portable, composable agentskills.io capabilities (6 built-in)
  • Task templates: bug-fix, new-feature, refactor, test-coverage, documentation, dependency-update
  • Structured logging (text/JSON) with file output and rotation
  • Dry run mode
  • Smart init — AI analyzes project and generates customized AGENTS.md and config.yml
  • MCP server — Expose AIDF context as MCP tools and resources
  • Zod config validation — catch config errors at load time
  • Real timeout enforcement with Promise.race()
  • Enhanced security: path traversal protection, eval/backtick blocking

Documentation

Full documentation: rubenmavarezb.github.io/aidf (English, Español, Português, Français)

Source: github.com/rubenmavarezb/aidf

License

MIT