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

contextai

v0.3.0

Published

Universal context engineering CLI for AI coding agents — generate AGENTS.md, CLAUDE.md, .cursorrules and more from a single context.config.ts

Readme

contextai

contextai

Website npm version license node npm downloads

Universal context engineering CLI for AI coding agents. Define your project's conventions, stack, and architecture in a single context.config.ts file, then generate AI-readable context files for multiple tools from that single source of truth.

Website: www.contextai.run

Supported output targets

| Target | File | |--------|------| | OpenAI Codex / generic agents | AGENTS.md | | Claude | CLAUDE.md | | Cursor | .cursorrules | | GitHub Copilot | .github/copilot-instructions.md | | LLMs.txt | llms.txt | | Kiro (AWS) | .kiro/steering/*.md | | Windsurf | .windsurf/rules/*.md | | Gemini CLI / Antigravity | GEMINI.md | | Custom | any path via config |

Quick start

npm install -g contextai

# Interactive setup — creates context.config.ts
contextai init

# Generate all enabled output files
contextai generate

Commands

| Command | Description | |---------|-------------| | contextai init | Interactive setup wizard | | contextai generate | Generate output files from config | | contextai generate --dry-run | Preview output without writing files | | contextai generate --format json | Output JSON IR to stdout instead of writing files | | contextai validate | Check output files are fresh and well-structured | | contextai diff | Show diff between config and on-disk outputs | | contextai watch | Watch config for changes and regenerate automatically |

Configuration

Create a context.config.ts at your project root:

import { defineContext } from 'contextai';

export default defineContext({
  project: {
    name: 'my-app',
    stack: ['TypeScript', 'React', 'Node.js'],
    architecture: 'Monorepo with shared packages',
  },
  conventions: {
    code: [
      {
        title: 'Naming',
        items: ['camelCase for variables', 'PascalCase for components'],
      },
    ],
  },
  outputs: {
    'AGENTS.md': true,
    'CLAUDE.md': true,
    '.cursorrules': true,
    '.github/copilot-instructions.md': true,
    'llms.txt': true,
    '.kiro/steering': true,
    '.windsurf/rules': true,
    'GEMINI.md': true,
  },
});

Custom generators

export default defineContext({
  // ...
  outputs: {
    'CLAUDE.md': true,
    custom: [
      {
        path: 'docs/ai-context.md',
        generator: (config) => `# ${config.project.name}\n${config.project.architecture}`,
      },
    ],
  },
});

Built-in templates

Detected frameworks get convention templates applied automatically. Supported: nextjs, nestjs, express, remix, sveltekit.

export default defineContext({
  // ...
  templates: ['nextjs'],
});

Convention scopes

Each convention section can have an optional scope:

  • 'agent-only' — included only in AI-facing output files
  • 'human-only' — excluded from generated output
  • omitted — included everywhere
conventions: {
  security: [
    {
      title: 'Auth',
      items: ['Use JWT tokens', 'Rotate secrets quarterly'],
      scope: 'agent-only',
    },
  ],
},

Git hook

During contextai init, you can optionally install a pre-commit git hook that runs contextai generate and stages the output files automatically.

Programmatic API

import { DefaultConfigParser, DefaultTemplateRegistry, defineContext } from 'contextai';

const parser = new DefaultConfigParser();
const config = await parser.load('./context.config.ts');

Requirements

  • Node.js >= 20

License

MIT


www.contextai.run · GitHub · npm