Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PROJECT_INDEX.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -332,15 +332,15 @@ if [ -d "$HOME/.claude/commands" ] && [ "$(ls -A $HOME/.claude/commands 2>/dev/n
echo ""
if [[ $response =~ ^[Yy]$ ]]; then
echo "📦 Updating Claude Code commands..."
curl -sSL "${BASE_URL}/setup-claude-code.sh" | bash --overwrite-commands
curl -sSL "${BASE_URL}/setup-claude-code.sh" | bash -s -- --overwrite-commands
if [ $? -eq 0 ]; then
echo "✅ Claude Code commands updated successfully!"
else
echo "⚠️ Command update had issues, but Agent OS base installation is complete"
fi
else
echo "ℹ️ Claude Code commands not updated. You can update them later with:"
echo " curl -sSL https://raw.githubusercontent.com/carmandale/agent-os/main/setup-claude-code.sh | bash --overwrite-commands"
echo " curl -sSL https://raw.githubusercontent.com/carmandale/agent-os/main/setup-claude-code.sh | bash -s -- --overwrite-commands"
fi
fi

Expand All @@ -356,7 +356,7 @@ if [ ! -d "$HOME/.claude/commands" ] || [ -z "$(ls -A $HOME/.claude/commands 2>/
echo " curl -sSL https://raw.githubusercontent.com/carmandale/agent-os/main/setup-claude-code.sh | bash"
else
echo " - Claude Code commands are installed. To update them:"
echo " curl -sSL https://raw.githubusercontent.com/carmandale/agent-os/main/setup-claude-code.sh | bash --overwrite-commands"
echo " curl -sSL https://raw.githubusercontent.com/carmandale/agent-os/main/setup-claude-code.sh | bash -s -- --overwrite-commands"
fi
echo ""
echo " - Using Cursor? Install the Cursor commands with:"
Expand Down
Loading