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

axiom-coding-agent-setup

v1.1.1

Published

CLI tool to download AXIOM coding agent setup files into your project

Downloads

781

Readme

AXIOM Coding Agent Setup

CLI tool to quickly set up AXIOM coding agent instructions in your projects.

Usage

Run the CLI using npx (no installation required):

npx axiom-coding-agent-setup

Or use the shorter alias:

npx axiom-setup

What It Does

This command downloads the following files from the axiom-coding-agent-setup repository into your current project directory:

  • AGENTS.md — Main agent instructions
  • opencode.json — OpenCode IDE configuration (MCP servers, plugins)
  • .env.axiom — Environment variables template for AXIOM credentials
  • .agents/ENGINEERING.md — Engineering principles & code standards
  • .agents/STACK.md — Technology stack knowledge
  • .agents/WORKFLOW.md — Workflow guidelines & verification protocol
  • .agents/SECURITY.md — Security-first principles & attack vector checklist
  • .agents/DEBUGGING.md — Systematic debugging methodology & anti-patterns
  • .agents/PERFORMANCE.md — Performance awareness & optimization hierarchy
  • .agents/CONTEXT-MANAGEMENT.md — Context budget & session discipline
  • .agents/templates/ — Project-type specific conventions
  • .agents/skills/ — Domain-specific skills for specialized tasks

Files Included

AGENTS.md

The main instruction file that coding agents (Claude, Cursor, OpenCode, etc.) read first when working on your project.

opencode.json

OpenCode IDE configuration including:

  • MCP server definitions (remote tools like n8n, Neon, Gradio, etc.)
  • Plugin configuration
  • Environment variable references for secure credential management

.agents/ENGINEERING.md

Core engineering principles including:

  • KISS, YAGNI, DRY principles
  • Decision framework for code reviews
  • Architecture guidelines
  • Anti-patterns to avoid
  • AI-assisted development ground rules

.agents/STACK.md

Technology stack knowledge covering:

  • Languages (TypeScript, Python, Go, Rust, SQL)
  • Frontend (React, Next.js, Tailwind, shadcn/ui)
  • Backend (Hono, FastAPI, tRPC, etc.)
  • Databases (PostgreSQL, Redis, Vector DBs)
  • AI/ML stack (LLM APIs, orchestration, observability)
  • Infrastructure & DevOps

.agents/WORKFLOW.md

Workflow guidelines including:

  • Verification protocol (read files before claiming, test before declaring done)
  • Git discipline
  • Communication style
  • Code review stance
  • Context management for agentic sessions
  • Error recovery & anti-loop patterns

.agents/SECURITY.md

Security-first principles including:

  • Input validation & secrets management checklist
  • Authentication & authorization patterns
  • Common attack vectors & prevention
  • When to escalate security decisions to humans

.agents/DEBUGGING.md

Systematic debugging methodology including:

  • The 4-phase debugging protocol (Reproduction → Observation → Hypothesis → Fix)
  • Debugging techniques (binary search, git bisect, rubber duck)
  • Common bug categories & symptoms
  • Anti-patterns to avoid (shotgun debugging, print-driven development)

.agents/PERFORMANCE.md

Performance awareness including:

  • The performance hierarchy (algorithm → database → I/O → memory → micro)
  • Caching strategies & when (not) to cache
  • Database query optimization
  • Frontend Core Web Vitals
  • Profiling & measurement tools

.agents/CONTEXT-MANAGEMENT.md

Context management discipline including:

  • The 50% rule for context compaction
  • Session lifecycle & handoff documentation
  • Parallel execution & context isolation
  • Codebase navigation without context bloat
  • Context anti-patterns

.agents/templates/

Project-type specific convention files:

  • ai-engineering-python.md — FastAPI + AI/ML stack patterns
  • fullstack-ai-nextjs.md — Next.js + Vercel AI SDK patterns

.agents/skills/

Domain-specific skills that can be loaded on-demand:

  • agent-browser/ — Web browser automation skill
  • ai-integration/ — LLM/AI integration patterns
  • deployment-patterns/ — Deployment and infrastructure guide
  • developing-with-streamlit/ — Streamlit app development guides
  • fastapi/ — FastAPI best practices and patterns
  • fastapi-templates/ — FastAPI project templates
  • frontend-design/ — Frontend UI/UX design patterns
  • git-commit/ — Conventional commit message generation
  • gradio/ — Gradio UI framework guides
  • mcp-builder/ — MCP server development guide
  • n8n-patterns/ — n8n workflow automation patterns
  • project-design/ — Project planning & architecture documentation
  • ui-ux-pro-max/ — Advanced UI/UX design skill

Development

To test the CLI locally:

node bin/cli.js

Publishing to npm

  1. Login to npm:

    npm login
  2. Publish the package:

    npm publish

License

MIT