e075c40c9d
Rename gemini-resume → antigravity-resume and save_gemini_session → save_antigravity_session; update all session files from .gemini_session to .antigravity_session and LAST_GEMINI_SESSION → LAST_ANTIGRAVITY_SESSION. Replace gemini/gemini-cli binary calls with agy throughout superpowers, code-resume, and the resume function. Add antigravity-ide wrapper for the renamed IDE binary; update abbr v → antigravity-ide (VSCode-equivalent) and update README/requirements to reflect the new tool names.
51 lines
1.4 KiB
Fish
51 lines
1.4 KiB
Fish
# Copyright (C) 2026 Rootiest
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
# Toggle superpowers extension for antigravity-cli and Claude
|
|
function superpowers --description 'Toggle superpowers extension for antigravity-cli and Claude'
|
|
set -l scope_agy workspace
|
|
set -l scope_claude project
|
|
set -l mode ""
|
|
set -l help_text "
|
|
Usage: superpowers [on|off] [options]
|
|
|
|
Commands:
|
|
on Enable superpowers for antigravity-cli and Claude
|
|
off Disable superpowers for antigravity-cli and Claude
|
|
|
|
Options:
|
|
-g, --global Apply settings to the user/global scope
|
|
-h, --help Show this help message
|
|
"
|
|
|
|
# Parse arguments
|
|
for arg in $argv
|
|
switch $arg
|
|
case on
|
|
set mode enable
|
|
case off
|
|
set mode disable
|
|
case -g --global
|
|
set scope_agy user
|
|
set scope_claude user
|
|
case -h --help
|
|
echo $help_text
|
|
return 0
|
|
end
|
|
end
|
|
|
|
# Handle no arguments or invalid mode
|
|
if test -z "$mode"
|
|
echo $help_text
|
|
return 1
|
|
end
|
|
|
|
echo "Setting superpowers to: $mode (Scope: antigravity-cli=$scope_agy, Claude=$scope_claude)..."
|
|
|
|
# Execute antigravity-cli command
|
|
agy extensions $mode superpowers --scope $scope_agy
|
|
|
|
# Execute Claude command
|
|
claude plugins $mode superpowers --scope $scope_claude
|
|
end
|