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

ak-framework

v1.0.0

Published

AI-Orchestration Driven Development Framework for Claude Code - Build Smart, Ship Fast

Readme

AK Framework

"Build Smart, Ship Fast" - AI-Orchestration Driven Development for Claude Code

License: MIT npm version Claude Code Opus 4.6

AK Framework is an AI-orchestration framework for Claude Code that transforms natural language commands into production-grade code through an intelligent Multi-Agent system.

Using the AODD (AI-Orchestration Driven Development) approach, a solo developer or small team can build enterprise-quality Full-Stack applications.

Requirements

Quick Start

Install with NPX (Recommended)

# Install into current project
npx ak-framework install

# Quick install (no prompts)
npx ak-framework install --quick

# Open with Claude Code
claude .

# See all commands
/ak-help

Other NPX Commands

# List all commands, agents, and skills
npx ak-framework list

# Check installation status
npx ak-framework status

# Update to latest version
npx ak-framework@latest install

Alternative: Manual Setup

# Clone and run setup script
git clone https://github.com/kzy26/AK-Framework.git
cd your-project
/path/to/AK-Framework/setup.sh init

# Or create new project
./setup.sh new my-awesome-app

Commands

| Command | Shortcut | Description | |---------|----------|-------------| | /ak | - | Smart command - AI picks the right agent | | /ak-plan | /ak-p | Plan & analyze project architecture | | /ak-vibe | /ak-v | Create entire project from description | | /ak-ui | /ak-u | Build UI - Pages, Components, Layouts | | /ak-api | /ak-a | Build API - Routes, Controllers, Services | | /ak-db | /ak-d | Database - Prisma schema, migrations | | /ak-cache | /ak-c | Cache - Redis caching strategies | | /ak-design | /ak-ds | Polish design - Professional UX/UI | | /ak-test | /ak-t | Test - Jest (backend) + Vitest (frontend) + auto-fix | | /ak-fix | /ak-f | Debug - Systematic bug fixing | | /ak-ship | /ak-s | Deploy - DigitalOcean deployment | | /ak-help | /ak-h | Show all commands |

How It Works

User: /ak-vibe payment management system

Orchestrator (Opus 4.6):
  ├── Plan Orchestrator  → Analyze & create execution plan
  ├── DB Architect       → Design Prisma schema
  ├── API Builder        → Create Fastify API routes
  ├── UI Builder         → Build Next.js pages
  ├── Cache Engineer     → Setup Redis caching
  ├── Design Reviewer    → Polish UX/UI
  ├── Test Runner        → Run tests & auto-fix
  └── Ship ready-to-deploy application!

8 Sub-Agents

| Agent | Specialty | Model | |-------|-----------|-------| | Plan Orchestrator | Analyze, plan, coordinate | Opus 4.6 | | UI Builder | Next.js pages, components, layouts | Sonnet 4.6 | | API Builder | Fastify routes, controllers, services | Sonnet 4.6 | | DB Architect | Prisma schema, migrations, queries | Opus 4.6 | | Cache Engineer | Redis caching, invalidation | Sonnet 4.6 | | Design Reviewer | UX/UI polish, animation, accessibility | Sonnet 4.6 | | Test Runner | Jest (backend), Vitest (frontend), Playwright (E2E), auto-fix | Sonnet 4.6 | | DevOps Engineer | Docker, DigitalOcean, CI/CD | Sonnet 4.6 |

Default Tech Stack

Configurable per project via CLAUDE.md

| Category | Technology | |----------|------------| | Runtime | Node.js (strict mode) | | API | Fastify + TypeBox | | Frontend | Next.js (App Router) | | ORM | Prisma | | Database | PostgreSQL | | Cache | Redis (ioredis) | | Styling | Tailwind CSS + shadcn/ui | | State | Zustand | | Forms | React Hook Form + Zod | | Testing (Frontend) | Vitest + Playwright | | Testing (Backend) | Jest + ts-jest | | Deploy | DigitalOcean | | Language | TypeScript (strict) |

Project Structure

your-project/
├── .claude/
│   ├── commands/       # 12 slash commands
│   ├── agents/         # 8 sub-agent definitions
│   ├── skills/         # 11 skill definitions
│   └── memory/         # 7 memory files (auto-managed)
├── CLAUDE.md           # Framework configuration
└── (your project files)

Memory System

AK Framework automatically manages context across sessions:

| File | Purpose | |------|---------| | active.md | Current task tracking | | summary.md | Project overview | | decisions.md | Key decisions log | | architecture.md | Structure map | | components.md | Component/API registry | | changelog.md | Change history | | agents-log.md | Agent activity log |

Customization

Edit CLAUDE.md in your project to customize:

  • Tech Stack - Change frameworks, libraries, database
  • Language - Communication language and UI labels
  • Mock Data - Realistic data for your locale
  • Project Structure - Directory conventions
  • Behavior Rules - What the AI should/shouldn't do

Examples

# Build a complete payment system
/ak-vibe payment management with merchant wallet and transactions

# Add a feature
/ak create notification system for new transactions

# Build specific UI
/ak-ui dashboard page with transaction charts and filters

# Design database
/ak-db schema for payment system with wallet and transaction history

# Fix a bug
/ak-fix login page returns 401 after token refresh

Supported IDE

| IDE | Status | |-----|--------| | Claude Code (CLI) | Full support - Native Sub-Agents, Slash Commands, Extended Thinking |

Contributing

See CONTRIBUTING.md for guidelines.

Credits

Inspired by Toh Framework by Wasin Treesinthuros. Adapted for production Full-Stack development with Claude Opus 4.6 & Sonnet 4.6.

License

MIT


"Build Smart, Ship Fast"