Cross-platform OpenCLI skill and integration kit for AI agents.
This repository packages an opencli skill plus platform-specific instruction templates so agents can discover, invoke, troubleshoot, and extend OpenCLI across websites, desktop apps, and local CLIs.
SKILL.md: the main OpenCLI skillreferences/: deeper workflow and integration notesassets/claude/: Claude Code templateassets/cursor/: CursorAGENTS.mdand.mdcrule templateassets/opencode/: OpenCodeAGENTS.md,opencode.json, and modular instruction fileassets/openclaw/: OpenClaw workspace instruction templateassets/agents-md/: genericAGENTS.mdtemplate
- Codex
- Claude Code / Claude Agent SDK
- Cursor
- OpenCode
- OpenClaw
- Other
AGENTS.md-compatible agent runtimes
Copy this repository into a Claude skill directory:
mkdir -p .claude/skills
cp -R opencli .claude/skills/opencli
cp opencli/assets/claude/CLAUDE.md CLAUDE.mdUse either the native skill path or the template files:
mkdir -p .opencode/skills
cp -R opencli .opencode/skills/opencli
cp opencli/assets/opencode/AGENTS.md AGENTS.md
cp opencli/assets/opencode/opencode.json opencode.jsonmkdir -p ~/.openclaw/workspace/skills
cp -R opencli ~/.openclaw/workspace/skills/openclicp opencli/assets/cursor/AGENTS.md AGENTS.md
mkdir -p .cursor/rules
cp opencli/assets/cursor/opencli.mdc .cursor/rules/opencli.mdc- Check installation with
command -v opencli - Discover commands with
opencli list -f yaml - Prefer structured output with
-f jsonor-f yaml - Use
opencli doctorwhen browser-backed commands fail - Use
opencli generateor the fullexplore -> cascade -> synthesize -> verifyflow when no adapter exists
opencli/
├── SKILL.md
├── agents/
├── assets/
└── references/
- Skill logic:
SKILL.md - Platform loading notes:
references/platform-integration.md - Command usage:
references/command-workflows.md - Adapter authoring:
references/adapter-authoring.md