converterlisted
Install: claude install-skill boshu2/agentops
# $converter -- Cross-Platform Skill Converter
Parse AgentOps skills into a universal SkillBundle format, then convert to target agent platforms.
## Quick Start
```bash
$converter skills/council codex # Convert council skill to Codex format
$converter skills/vibe cursor # Convert vibe skill to Cursor format
$converter --all codex # Convert all skills to Codex
```
## Pipeline
The converter runs a three-stage pipeline:
```
parse --> convert --> write
```
### Stage 1: Parse
Read the source skill directory and produce a SkillBundle:
- Extract YAML frontmatter from SKILL.md (between `---` markers)
- Collect the markdown body (everything after the closing `---`)
- Enumerate all files in `references/` and `scripts/`
- Assemble into a SkillBundle (see `references/skill-bundle-schema.md`)
### Stage 2: Convert
Transform the SkillBundle into the target platform's format:
| Target | Output Format | Status |
|--------|---------------|--------|
| `codex` | Codex SKILL.md + prompt.md | Implemented |
| `cursor` | Cursor .mdc rule + optional mcp.json | Implemented |
The Codex adapter produces a `SKILL.md` with YAML frontmatter (`name`, `description`) plus rewritten body content and a `prompt.md` (Codex prompt referencing the skill). Default mode is **modular**: reference docs, scripts, and resources are copied as files and `SKILL.md` includes a local resource index instead of inlining everything. Optional **inline** mode preserves the older behavior by appe