An agent skill for creating a static, copy-only HTML command panel from a project's repeat-use CLI workflows.
The generated cli-panel.html runs locally in the browser, stores edits in
localStorage, and helps users build copyable commands without adding runtime
dependencies to the target project.
Open the live project command panel
skills is the CLI for the open agent skills ecosystem. It
downloads a skill from a GitHub repository and places it in the directory your
coding agent expects (for example ~/.cursor/skills/ or .codex/skills/). You
do not need to install it separately — npx skills runs it on demand.
Use the installer so the target agent receives the correct layout. This avoids fragile file-placement mistakes.
Install into the current project:
npx skills add rob163/html-as-cli-panel-skillInstall for a specific agent:
npx skills add rob163/html-as-cli-panel-skill --agent codex
npx skills add rob163/html-as-cli-panel-skill --agent claude-codeInstall globally instead of project-local:
npx skills add rob163/html-as-cli-panel-skill --global --agent codex
npx skills add rob163/html-as-cli-panel-skill --global --agent claude-codeSkip confirmation prompts when installing in scripts:
npx skills add rob163/html-as-cli-panel-skill --global --agent codex --yesVerify installation:
npx skills ls -g -a codexCodex can install this repository as a plugin marketplace. This path uses the
checked-in .agents/plugins/marketplace.json and
plugins/html-as-cli-panel-skill/.codex-plugin/plugin.json
files, which expose the same cli-panel skill through Codex's plugin system.
Add the marketplace:
codex plugin marketplace add rob163/html-as-cli-panel-skillThen install it from Codex:
- Codex Desktop: open Plugins, select the
html-as-cli-panel-skillmarketplace, open the plugin, then click Add to Codex. - Codex CLI: run
codex, open/plugins, select thehtml-as-cli-panel-skillmarketplace, open the plugin, then chooseInstall plugin.
Some newer Codex CLI builds also support this shortcut after the marketplace is added:
codex plugin add html-as-cli-panel-skill@html-as-cli-panel-skillFor a local clone:
git clone https://github.com/rob163/html-as-cli-panel-skill
codex plugin marketplace add ./html-as-cli-panel-skillThen install from the same Codex Desktop or /plugins flow above. Restart
Codex or start a new thread if the installed skill does not appear immediately.
Install as a versioned Claude Code plugin from inside Claude Code:
/plugin marketplace add rob163/html-as-cli-panel-skill
/plugin install html-as-cli-panel-skill@html-as-cli-panel-skill
The plugin uses the same packaged skill as Codex. The root SKILL.md,
assets/cli-panel.html, and skills/cli-panel paths are symlinks into that
package, so plugin and direct skill installs stay aligned without duplicating
the template.
Clone directly into the agent's skills directory when you prefer a simple manual install.
Codex:
git clone https://github.com/rob163/html-as-cli-panel-skill "${CODEX_HOME:-$HOME/.codex}/skills/cli-panel"Claude Code:
git clone https://github.com/rob163/html-as-cli-panel-skill ~/.claude/skills/cli-panelRestart the agent after cloning. To update later:
git -C "${CODEX_HOME:-$HOME/.codex}/skills/cli-panel" pull
git -C ~/.claude/skills/cli-panel pullValidate the skill package:
npm run validateThis repository intentionally has no runtime dependencies. The validation script checks the required skill metadata and bundled template files.
MIT