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
42 changes: 0 additions & 42 deletions .github/workflows/test.yml

This file was deleted.

9 changes: 0 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,6 @@ Install the extension directly from GitHub:
gemini extensions install https://github.com/gemini-cli-extensions/ralph --auto-update
```

### Verify Installation

After installing, validate your setup:

```bash
bash ~/.gemini/extensions/ralph/scripts/validate.sh
```

## Configuration

To use Ralph, you must enable hooks and preview features in your `~/.gemini/settings.json`:
Expand Down Expand Up @@ -68,7 +60,6 @@ Start a loop by using the `/ralph:loop` command followed by your task.

### Manual Controls

- `/ralph:status`: Check the current status of an active loop.
- `/ralph:cancel`: Stops an active loop and cleans up all state files.
- `/ralph:help`: Displays detailed usage information and configuration tips.

Expand Down
85 changes: 0 additions & 85 deletions TROUBLESHOOTING.md

This file was deleted.

16 changes: 0 additions & 16 deletions commands/ralph/help.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,10 @@ Display the Ralph help documentation. Do NOT use any other subagent for this. Es

Summarize the available commands for the user:
- `/ralph:loop <PROMPT> [OPTIONS]`: Start a Ralph loop.
- `/ralph:status`: Check the current status of an active loop.
- `/ralph:cancel`: Cancel an active Ralph loop and clean up all temporary files.
- `/ralph:help`: Show this message.

**Options:**
- `--max-iterations <N>`: Stop after N iterations (default: 5).
- `--completion-promise <TEXT>`: Only stop when the agent outputs `<promise>TEXT</promise>`.

**Examples:**
```bash
# Basic loop with iteration limit
/ralph:loop "Build a REST API" --max-iterations 10

# Loop with completion promise
/ralph:loop "Fix all linting errors" --completion-promise "ALL_CLEAN"

# Combined options
/ralph:loop "Implement feature X" --max-iterations 15 --completion-promise "FEATURE_COMPLETE"
```

**Troubleshooting:**
For common issues and solutions, see TROUBLESHOOTING.md in the extension directory.
"""
9 changes: 0 additions & 9 deletions commands/ralph/status.toml

This file was deleted.

34 changes: 0 additions & 34 deletions scripts/bump-version.sh

This file was deleted.

12 changes: 0 additions & 12 deletions scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,23 +41,11 @@ fi
# Parse arguments
while [[ $# -gt 0 ]]; do
case "$1" in
--max-iterations=*)
VALUE="${1#*=}"
[[ "$VALUE" =~ ^[0-9]+$ ]] || die "Invalid iteration limit: '$VALUE'"
MAX_ITERATIONS="$VALUE"
shift
;;
--max-iterations)
[[ "${2:-}" =~ ^[0-9]+$ ]] || die "Invalid iteration limit: '${2:-}'"
MAX_ITERATIONS="$2"
shift 2
;;
--completion-promise=*)
VALUE="${1#*=}"
[[ -n "$VALUE" ]] || die "Missing promise text."
COMPLETION_PROMISE="$VALUE"
shift
;;
--completion-promise)
[[ -n "${2:-}" ]] || die "Missing promise text."
COMPLETION_PROMISE="$2"
Expand Down
43 changes: 0 additions & 43 deletions scripts/status.sh

This file was deleted.

43 changes: 0 additions & 43 deletions scripts/validate.sh

This file was deleted.

47 changes: 0 additions & 47 deletions tests/status_test.sh

This file was deleted.

Loading