File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -253,6 +253,32 @@ chmod +x ~/git/claude-octopus/scripts/*.sh
253253chmod +x ~ /git/claude-octopus/scripts/* .py
254254```
255255
256+ ### Keeping Up to Date
257+
258+ To update to the latest version:
259+
260+ ``` bash
261+ # Navigate to plugin directory
262+ cd ~ /.claude/plugins/claude-octopus
263+
264+ # Pull latest changes
265+ git pull origin main
266+ ```
267+
268+ Or ask Claude Code:
269+
270+ ```
271+ Update the claude-octopus plugin to the latest version
272+ ```
273+
274+ To update to a specific version:
275+
276+ ``` bash
277+ cd ~ /.claude/plugins/claude-octopus
278+ git fetch --tags
279+ git checkout v1.0.0 # Replace with desired version
280+ ```
281+
256282## Agent Setup & Configuration
257283
258284Claude Octopus requires both ** Codex CLI** (OpenAI) and ** Gemini CLI** (Google) to be installed and configured.
You can’t perform that action at this time.
0 commit comments