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 🙏

© 2025 – Pkg Stats / Ryan Hefner

ai-eng-system

v0.0.11

Published

Compounding engineering system for Claude Code and OpenCode. Shared agents, commands, skills, and plugin development tools.

Readme

AI Engineering System

Advanced development tools with context engineering, research orchestration, and 29 specialized agents for Claude Code & OpenCode.

🚀 Quick Start

Claude Code (Recommended)

/plugin marketplace add v1truv1us/ai-eng-system
/plugin install ai-eng-system@ai-eng-marketplace

OpenCode

# Add to opencode.jsonc:
{
  "$schema": "https://opencode.ai/config.json",
  "plugin": ["opencode-skills", "ai-eng-system"]
}

# Run OpenCode - plugin auto-installs commands, agents, and skills

📋 What's Included

Commands (16 total)

  • /ai-eng/plan - Create detailed implementation plans
  • /ai-eng/review - Multi-perspective code review (29 agents)
  • /ai-eng/seo - SEO audits with Core Web Vitals
  • /ai-eng/work - Execute plans with quality gates
  • /ai-eng/optimize - Prompt enhancement (+45% quality)
  • /ai-eng/deploy - Pre-deployment checklists
  • /ai-eng/compound - Document solved problems
  • /ai-eng/recursive-init - Initialize AGENTS.md across directories
  • /ai-eng/create-plugin - AI-assisted plugin creation
  • /ai-eng/create-agent - AI-assisted agent generation
  • /ai-eng/create-command - AI-assisted command generation
  • /ai-eng/create-skill - AI-assisted skill creation
  • /ai-eng/create-tool - AI-assisted custom tool creation
  • /ai-eng/research - Multi-phase research orchestration
  • /ai-eng/context - Context management and retrieval
  • /ai-eng/clean - Remove build artifacts and generated files

Agents (29 total)

  • Architecture & Planning: architect-advisor, backend-architect, infrastructure-builder
  • Development & Coding: frontend-reviewer, full-stack-developer, api-builder-enhanced, database-optimizer, java-pro
  • Quality & Testing: code-reviewer, test-generator, security-scanner, performance-engineer
  • DevOps & Deployment: deployment-engineer, monitoring-expert, cost-optimizer
  • AI & Machine Learning: ai-engineer, ml-engineer
  • Content & SEO: seo-specialist, prompt-optimizer
  • Plugin Development: agent-creator, command-creator, skill-creator, tool-creator, plugin-validator

Skills (13 files)

  • devops - Coolify deployment, Git worktree workflows
  • prompting - Research-backed incentive prompting techniques
  • research - Comprehensive multi-phase research orchestration
  • plugin-dev - Plugin development knowledge base and references
  • text-cleanup - Pattern-based text cleanup (slop, comments)

🏗️ Architecture

This repo follows Anthropic's official Claude Code marketplace pattern:

  • Marketplace root: .claude-plugin/marketplace.json (only file at repo root)
  • Embedded plugin: plugins/ai-eng-system/ with standard plugin layout
  • Build system: Transforms canonical content/ sources into platform-specific outputs
  • OpenCode support: Pre-built distributions in dist/.opencode/
  • Auto-installation: Plugin automatically installs files when loaded by OpenCode or via npm postinstall

🔧 Development

Prerequisites

  • Bun >= 1.0.0
  • Node.js >= 18 (for compatibility)

Build & Test

bun run build        # Build all platforms
bun run build:watch  # Watch mode
bun run validate     # Validate content without building
bun test             # Run test suite

Repository Structure

├── content/          # Canonical markdown sources
│   ├── commands/     # Command definitions
│   └── agents/       # Agent definitions
├── skills/           # Skill packs
├── plugins/          # Embedded Claude plugin
├── dist/             # Built outputs (committed)
├── .claude-plugin/   # Marketplace manifest
└── .opencode/        # OpenCode config

📦 Distribution

Claude Code Marketplace

  • Source: https://github.com/v1truv1us/ai-eng-system
  • Marketplace: v1truv1us/ai-eng-marketplace
  • Plugin: ai-eng-system

OpenCode

  • Global: ~/.config/opencode/ (default)
  • Local: ./.opencode/ (project-specific)
  • Namespace: ai-eng/

✅ Validation Status

  • Marketplace manifest: ✅ Valid
  • Embedded plugin: ✅ Valid
  • Build system: ✅ Working
  • Tests: ✅ Passing (21/21)

📚 Documentation


💻 Usage Example

OpenCode Setup

# 1. Create opencode.jsonc in your project
cat > opencode.jsonc << 'EOF'
{
  "$schema": "https://opencode.ai/config.json",
  "plugin": ["opencode-skills", "ai-eng-system"]
}
EOF

# 2. Install package (optional - auto-installs via plugin)
npm install ai-eng-system

# 3. Run OpenCode
# Commands and agents are automatically available!

When OpenCode loads the plugin, it automatically:

  • ✅ Installs 16 commands to .opencode/command/ai-eng/
  • ✅ Installs 30 agents to .opencode/agent/ai-eng/
  • ✅ Installs 13 skill files to .opencode/skills/

Using Commands

/ai-eng/plan              # Create implementation plan
/ai-eng/review             # Multi-agent code review
/ai-eng/work               # Execute implementation plan
/ai-eng/seo                # SEO audit
/ai-eng/create-agent       # Generate new agent
# ... and 11 more

Using Agents

Commands reference specialized agents automatically:

/ai-eng/review --agent=code-reviewer     # Quality-focused review
/ai-eng/review --agent=frontend-reviewer # Frontend review
/ai-eng/review --agent=backend-architect  # Architecture review

Built with research-backed prompting techniques (+45-115% quality improvement)