ai-eng-system
v0.0.11
Published
Compounding engineering system for Claude Code and OpenCode. Shared agents, commands, skills, and plugin development tools.
Maintainers
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-marketplaceOpenCode
# 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 workflowsprompting- Research-backed incentive prompting techniquesresearch- Comprehensive multi-phase research orchestrationplugin-dev- Plugin development knowledge base and referencestext-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 suiteRepository 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
- Installation Guide - Detailed setup instructions
- Agent Coordination - Agent usage patterns and coordination
- Plugin Documentation - Technical plugin details
- Research Guide - Research orchestration usage
💻 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 moreUsing 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 reviewBuilt with research-backed prompting techniques (+45-115% quality improvement)
