OfficeKit Agent Plugin
This is the standalone plugin install path: OfficeKit-authored Agent Skills, with no CAPA, subagents, or MCP. If you are working in the office-kit git checkout itself, use CAPA on that repository instead β see the root README.
OfficeKit creates branded standalone HTML documents, Slidev decks, and HyperFrames videos. This package follows Agent Plugins 1.0.
What is included
setup-office-kitβ install/update an isolated workspaceinit-brandβ create or revise a shared brand identitycreate-docβ author and audit one-file HTML documentscreate-slidesβ scaffold, preview, author, audit, and export Slidev deckscreate-videoβ scaffold, preview, author, and audit HyperFrames videostext-to-speechβ local segmented Kokoro narration (used by create-video)strudel-offlineβ local Dough music bed under narration (used by create-video; AGPL-3.0-or-later, see that skill'sLICENSE)
The root plugin.json is authoritative. .claude-plugin/plugin.json and
.codex-plugin/plugin.json are metadata-only compatibility adapters.
The skill implementations in this directory are canonical; the repository's
capabilities.yaml points CAPA at this same tree.
What is not included
The package intentionally contains no third-party skills, MCP servers, agents,
hooks, capabilities.yaml, extra brand identities, dependencies,
node_modules, virtual environments, model weights, or generated locks.
Slidev, Lucide, HyperFrames, Jinja, PyYAML, Kokoro, SoundFile, and their transitive packages are external runtime dependencies. They are resolved into the generated workspace by npm and uv; their source is not bundled here.
Prerequisites
- Python 3.10β3.12
- uv
- Node.js 22+ and npm
- ffmpeg for final video encoding
- network access for initial package/model resolution
Load in Cursor
In Cursor Agent chat:
/add-plugin https://github.com/Minitour/office-kit
Then install OfficeKit from the imported marketplace. Teams can instead
import https://github.com/Minitour/office-kit under Dashboard β Plugins
and enable auto-refresh.
See Cursor plugins.
Load in Claude Code
In Claude Code:
/plugin marketplace add Minitour/office-kit
/plugin install office-kit@office-kit
Skills appear under the office-kit namespace, for example
/office-kit:setup-office-kit. Reload with /reload-plugins after updates.
See Claude Code plugins.
Load in Codex
Register the GitHub repository as a marketplace:
codex plugin marketplace add Minitour/office-kit
Then install office-kit from the Plugin Directory. The
.codex-plugin/plugin.json adapter supports clients that still expect Codex's
client-specific entry point.
See Codex plugin packaging for personal and repository marketplace alternatives.
First run
From the repository where deliverables should be associated, invoke
setup-office-kit. It creates:
your-repository/
βββ .office-kit/
βββ brands/
βββ projects/
βββ scripts/
βββ .templates/
βββ config.toml
βββ package.json
βββ pyproject.toml
The dedicated subdirectory avoids collisions with the host repository.
Deliverables live in .office-kit/projects/; Node packages share the single
.office-kit/node_modules/.
Setup is idempotent. Updates compare hashes in
.office-kit/.officekit-managed.json and refuse to overwrite a user-modified
managed file. Back up intentional changes before using --force.
Updating and developing
Marketplace installs do not require a clone. Clone only to develop or validate the package locally:
git clone https://github.com/Minitour/office-kit.git
cd office-kit
claude --plugin-dir ./plugins/office-kit
Rebuild generated manifests and the workspace payload:
uv run python scripts/plugin/build.py
uv run python scripts/plugin/build.py --check
uv run python -m unittest tests.test_plugin_package
Claude reloads local changes with /reload-plugins. Cursor and Codex may
require a plugin reload or client restart depending on how the package was
installed.