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

aikko

v2.0.0

Published

Framework of rules and conventions that makes Cursor AI a disciplined, structured engineering partner

Downloads

221

Readme

aikko

A framework of rules and conventions that makes Cursor AI a disciplined, structured engineering partner — in any project, any stack.

Drop the files into a project and Cursor follows the system automatically.


What it does

aikko defines a three-phase workflow for AI-assisted development:

| Phase | What happens | |---|---| | Plan | Restate task, list files, number steps, confirm if significant | | Build | Execute step by step with progress reports | | Verify | Lint, test, diff, debug-output check, DoD checklist |

Plus guardrails (git safety, no secrets, no scope creep, no OWASP), code standards, design system rules, and project onboarding.


Installation

Option 1: copy into a project

cp .cursorrules /path/to/your-project/
cp AGENTS.md /path/to/your-project/
cp CLAUDE.md /path/to/your-project/
cp -r aikko /path/to/your-project/aikko
cp -r docs /path/to/your-project/docs

Cursor reads .cursorrules automatically.

Option 2: git subtree

git subtree add \
  --prefix=aikko-framework \
  https://github.com/altegodigital/aikko.git \
  master --squash

Option 3: use as GitHub template

Click "Use this template" on GitHub.


First run

Start a Cursor session and type anything. aikko detects whether your project is new or existing:

  • Existing project (has package.json etc.) → aikko scans your files and auto-generates project context. One confirmation question.
  • New project (empty directory) → short structured Q&A to establish context.

Project context is saved to .aikko-tasks/PROJECT.md and read every session.


File structure

.cursorrules              ← Core rules. Self-contained (~225 lines).
aikko/
  details.md              ← Expanded specs (code standards, git, design, perf, ADR, templates).
  onboarding.md           ← Project onboarding protocol.
AGENTS.md                 ← AI governance policy.
CLAUDE.md                 ← AI assistant guidance.
bin/
  aikko.js                ← CLI (npx aikko init).
  aikko-verify.js         ← Pre-commit verification.
docs/
  COMPONENTS.md           ← Component inventory (UI projects).
  decisions/              ← Architecture Decision Records.

How to use it

Once installed, Cursor follows the rules automatically. You interact normally.

"Add user authentication to this API."
→ aikko plans, confirms, implements step by step, verifies.

"The JWT validation is failing. Debug it."
→ aikko reproduces, diagnoses root cause, fixes, writes regression test.

"Review the auth implementation."
→ aikko lists issues by severity with file/line references.

Customising

| What | Where | |---|---| | Code standards | aikko/details.md §1 | | Git workflow | aikko/details.md §4 | | Design system | aikko/details.md §5 | | Performance budget | aikko/details.md §6 — or override in PROJECT.md | | Task templates | aikko/details.md §3 | | Definition of Done | .cursorrules §5 |


v1 → v2 changes

| v1 | v2 | |---|---| | 7 agent roles (Orchestrator, Planner, Coder, Tester, Critic, Debugger, Documenter) | 3 phases (Plan, Build, Verify) | | 20 markdown files | 4 core files | | .aikko-tasks/TASK-NNN/ with subtask trees | Single active.md file | | 10-question onboarding for every project | Quick-start auto-detection for existing projects | | @-references to external files | Self-contained .cursorrules | | ~2500 lines of instructions | ~1000 lines total |


Design principles

  1. Less is more. Fewer rules = higher compliance.
  2. Self-contained. .cursorrules works without loading external files.
  3. Verifiable. DoD includes concrete commands, not abstract checklists.
  4. Honest about LLMs. One model, three phases — not seven pretend agents.
  5. Minimal overhead. Task state is one file, not a directory tree.

Contributing

See AGENTS.md for governance and CLAUDE.md for git conventions.