Skip to content

command skills

zmworm edited this page May 4, 2026 · 40 revisions

skills

Install OfficeCLI skill definitions into AI agent clients.

Synopsis

officecli skills <subcommand> [args]
officecli load_skill <name>        # Print SKILL.md content to stdout (no install)
officecli skills <target>          # Legacy: install base skill to specific agent

skill and skills are interchangeable on the install/list path — routing is by the second token. The 1.0.68-only skill <name> facade has been removed in favor of load_skill <name> (content) plus skills install <name> (install) so the CLI matches the MCP load_skill tool. Users who type the old form get a helpful error.

Subcommands

Subcommand Description
list Show all available skills with install status
install Install base SKILL.md to all detected agents
install <skill> Install a specific specialized skill to all detected agents
install <skill> <agent> Install a specific specialized skill to a single agent (e.g. install pptx hermes). Token order is auto-detected — install hermes pptx works the same.
<target> Legacy: install base SKILL.md to a specific agent client

load_skill (dynamic load, no install)

officecli load_skill <name> prints the embedded SKILL.md contents to stdout with no side effects. It is the print-only counterpart to the MCP load_skill tool — same name, identical semantics. The ## Setup section is stripped from the output (agents don't need it on dynamic load).

officecli load_skill morph-ppt           # print SKILL.md to stdout
officecli load_skill financial-model

Specialized Skills

Skill Name Directory Description
pptx officecli-pptx PowerPoint document operations
word / docx officecli-docx Word document operations
excel / xlsx officecli-xlsx Excel spreadsheet operations
morph-ppt officecli-morph-ppt Morph-animated presentations
pitch-deck officecli-pitch-deck Investor/product pitch decks
academic-paper officecli-academic-paper Academic papers with TOC/equations
data-dashboard officecli-data-dashboard Data dashboards from tabular data
financial-model officecli-financial-model Formula-driven financial models (3-statement, DCF, cap table)

Supported Targets

Target Aliases Install Location
Claude Code claude, claude-code ~/.claude/skills/officecli/
GitHub Copilot copilot, github-copilot ~/.copilot/skills/officecli/
OpenAI Codex codex, openai-codex ~/.agents/skills/officecli/
Cursor cursor ~/.cursor/skills/officecli/
Windsurf windsurf ~/.windsurf/skills/officecli/
MiniMax CLI minimax ~/.minimax/skills/officecli/
OpenClaw openclaw ~/.openclaw/skills/officecli/
NanoBot nanobot ~/.nanobot/workspace/skills/officecli/
ZeroClaw zeroclaw ~/.zeroclaw/workspace/skills/officecli/
OpenCode opencode ~/.opencode/skills/officecli/
Hermes hermes ~/.hermes/skills/officecli/
All clients all Auto-detects installed tools and installs to all

Examples

# List all available skills and install status
officecli skills list

# Install base skill to all detected agents
officecli skills install

# Install a specific specialized skill (all agents)
officecli skills install morph-ppt
officecli skills install financial-model
officecli skills install pitch-deck

# Install a specific skill into a single agent
officecli skills install pptx hermes
officecli skills install pptx claude

# Print SKILL.md content to stdout (good for agent harnesses; no install)
officecli load_skill morph-ppt

# Install for a specific agent client (legacy)
officecli skills claude
officecli skills copilot
officecli skills codex

# Install for all supported clients (legacy)
officecli skills all

Notes

  • The installed SKILL.md contains a strategy guide and format-specific property reference for the agent to use when generating OfficeCLI commands.
  • On first install, OfficeCLI automatically detects installed AI tools and installs skills. Subsequent upgrades skip auto-installation to preserve custom modifications.
  • For AI protocol-level integration (MCP), see mcp instead.

See Also

  • mcp - Built-in MCP server for direct AI tool integration
  • Agent Guide - Wiki navigation for AI agents

Based on OfficeCLI v1.0.71

Clone this wiki locally