An Agent Skill for operating the private internal Multica deployment through
the authenticated multica CLI. It covers connection setup, workspace-aware
resource operations, and orchestration across Issues, Projects, Agents, Squads,
Skills, and Autopilots.
Important
The source is public, but the configured Multica deployment is private and reachable only from its internal network. Installing this Skill does not grant access to that deployment.
curl -fsSL https://raw.githubusercontent.com/ShirleyGodzilla/multica-operator-skill/main/install.sh | bashStart a new Codex session after installation so the Skill is discovered.
You can also ask Codex to install the Skill from this GitHub path:
https://github.com/ShirleyGodzilla/multica-operator-skill/tree/main/skills/multica-operator
curl -fsSL https://raw.githubusercontent.com/ShirleyGodzilla/multica-operator-skill/main/install.sh | bash -s -- --claudeStart a new Claude Code session after installation.
Download multica-operator.skill from the latest GitHub Release. Confirm that
the destination does not already exist, then extract the archive:
skill_dir="${CODEX_HOME:-$HOME/.codex}/skills/multica-operator"
test ! -e "$skill_dir" || { echo "Destination already exists: $skill_dir" >&2; exit 1; }
mkdir -p "$skill_dir"
unzip multica-operator.skill \
-d "$skill_dir"For Claude Code, use
${CLAUDE_CONFIG_DIR:-$HOME/.claude}/skills/multica-operator instead.
The installer refuses to overwrite an existing installation. To preserve the current copy before reinstalling, move it aside:
mv "${CODEX_HOME:-$HOME/.codex}/skills/multica-operator" \
"${CODEX_HOME:-$HOME/.codex}/skills/multica-operator.backup"For Claude Code, the installed directory is
${CLAUDE_CONFIG_DIR:-$HOME/.claude}/skills/multica-operator.
MIT