
Update
Pull the latest AgentOps skill pack from GitHub and reinstall it globally for Claude and sibling agents with one executed installer command.
Install
npx skills add https://github.com/boshu2/agentops --skill updateWhat is this skill?
- Mandatory execution workflow—agents must run the curl pipe to install.sh, not only describe steps
- GitOps-aligned reinstall of the full AgentOps skills tree into ~/.claude/skills/
- Post-install verification with failure reporting and targeted retry guidance
- User-invocable /update command for continuous delivery of skill copies
- Isolated context window with HISTORY, INTEL, and TASK sections excluded
Adoption & trust: 660 installs on skills.sh; 384 GitHub stars; 2/3 security scanners passed (skills.sh audits).
Recommended Skills
Journey fit
Operate/iterate is the primary shelf because maintaining installed agent capabilities is ongoing production hygiene, not a one-time feature sprint. Iterate fits a explicit /update ritual you rerun whenever the upstream agentops repo changes, similar to dependency refresh.
Common Questions / FAQ
Is Update safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Update
# /update — Reinstall AgentOps Skills > **Purpose:** One command to pull the latest skills from the repo and install them globally across all agents. **YOU MUST EXECUTE THIS WORKFLOW. Do not just describe it.** --- ## Execution ### Step 1: Install ```bash bash <(curl -fsSL https://raw.githubusercontent.com/boshu2/agentops/main/scripts/install.sh) ``` Run this command. Wait for it to complete. ### Step 2: Verify Confirm the output shows all skills installed with no failures. If any skills failed to install, report which ones failed and suggest re-running the installer. If the failure is isolated to one skill, tell the user to inspect the target agent's installed skill or plugin directory and restore just that skill from the latest repo copy. ```bash # Retry the full installer: bash <(curl -fsSL https://raw.githubusercontent.com/boshu2/agentops/main/scripts/install.sh) ``` ### Step 3: Report Tell the user: 1. How many skills installed successfully 2. Any failures and how to fix them ## Examples ### Routine skill update **User says:** `/update` **What happens:** 1. Runs the install script to pull the latest skills from the repository and install them globally. 2. Verifies the output confirms all skills installed with no failures. 3. Reports the total count of successfully installed skills. **Result:** All AgentOps skills are updated to the latest version and available globally across all agent sessions. ### Recovering from a partial failure **User says:** `/update` (after a previous run failed for some skills) **What happens:** 1. Re-runs the install script which re-downloads and overwrites all skills from the latest source. 2. Detects that 2 of 50 skills failed to install and identifies them by name. 3. Reports the failures and provides manual sync commands as a fallback. **Result:** 48 skills installed successfully, with clear instructions to retry the installer and recover the 2 failed skills from the latest repo copy if needed. ## Troubleshooting | Problem | Cause | Solution | |---------|-------|----------| | `curl: command not found` | curl is not installed | Install curl via your package manager | | Download fails | Network or GitHub unreachable | Check connectivity; retry | | Individual skills fail | Permissions issue in the agent's install or plugin directory | Fix permissions on the target agent's install home, then re-run `/update` | | Skills not available after install | Agent session not restarted | Restart your agent session | | `EACCES: permission denied` | Restrictive permissions on the install target | Fix permissions on the install target, then re-run `/update` | ## Reference Documents - [references/update.feature](references/update.feature) — Executable spec: pull latest skills from the repo, install across agent runtimes, idempotent re-run (soc-qk4b) # Executable spec for the /update skill — skill sync + install (BC5 Runtime). # /update pulls the latest skills from the repo and installs them globally across # every agent runtime in one command, so all harnesses run the same current corpus. # Hexagon: supporting; consumes: the repo's skills/ source of truth; produces: # installed skill copies under the agent skills directories. (soc-qk4b) Feature: Update syncs the latest skills across every agent runtime As an operator keeping agents current I want one command to pull and install the latest skills everywhere So that all harnesses share the same up-to-date skill corpus Background: Given a local AgentOps repo and one