# Plannotator Update

> Force-update the plannotator plugin by nuking stale caches and reinstalling fresh

- Skill: `anothersava/plannotator-update` (Agent Skill)
- Install (CLI): `npx skillmds@latest add anothersava/plannotator-update`
- Raw SKILL.md: https://api.skillmd.com/api/skills/anothersava/plannotator-update/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: AnotherSava (https://skillmd.com/u/anothersava)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/anothersava/plannotator-update

---


# Update Plannotator Plugin

Force-update the plannotator Claude Code plugin by clearing all cached data and reinstalling from the source repo.

## Why this exists

The plugin system caches a git clone of the marketplace repo at `~/.claude/plugins/marketplaces/plannotator/` and never re-fetches. This means `/plugin` reports "already at the latest version" even when a newer version exists. The only fix is to nuke the caches and reinstall.

## Steps

1. Remove the marketplace cache (the stale git clone — this is the root cause):
   ```
   rm -rf ~/.claude/plugins/marketplaces/plannotator/
   ```

2. Remove the plugin cache:
   ```
   rm -rf ~/.claude/plugins/cache/plannotator/
   ```

3. Tell the user to restart Claude Code, then run:
   ```
   /plugin marketplace add backnotprop/plannotator
   /plugin install plannotator@plannotator
   /reload-plugins
   ```

**Do not attempt the `/plugin` commands from this skill** — they require a fresh Claude Code session to work after cache deletion.

