JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 255
  • Score
    100M100P100Q97754F
  • License MIT

AI Engineering System - Core agents, skills, and commands

Package Exports

  • @ai-eng-system/core
  • @ai-eng-system/core/content
  • @ai-eng-system/core/paths

Readme

@ai-eng-system/core

Core package containing all agents, skills, commands, and content for the AI Engineering System.

Installation

npm install @ai-eng-system/core

Usage

import { 
  getAgentContent, 
  getCommandContent, 
  getSkillContent,
  getOpenCodeContent 
} from '@ai-eng-system/core/content';

// Get all agents
const agents = await getAgentContent();

// Get OpenCode installation content
const openCodeContent = await getOpenCodeContent();

Package Structure

packages/core/
├── content/          # Source content (agents, commands)
├── skills/           # Skill definitions
├── opencode/         # OpenCode-specific content
├── claude/           # Claude Code-specific content
└── dist/            # Built content for installation
    ├── .opencode/
    └── .claude-plugin/

Exports

  • ./ - Main package exports
  • ./content - Content loading utilities
  • ./paths - Path resolution utilities

License

MIT