blob: f7172624c65a09f6bdf794933ab0d18e3e9c186f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Strangeloop
A recursive and self-referential AI agent framework.
## Installation
Run the latest version directly without installation from `uvx`:
```bash
$ uvx strangeloop
```
For developers, from within working copy run:
```bash
$ uv run strangeloop
```
## CLI Usage
Strangeloop provides a command-line interface with several commands:
```bash
# Display help
strangeloop --help
# Print a hello message
strangeloop hello
# Greet a user
strangeloop greet [NAME]
# Display information about the environment
strangeloop info
strangeloop info --verbose
# Process a file
strangeloop process FILE_PATH [--output OUTPUT_PATH]
```
You can also run the CLI directly without installation:
```bash
python main.py --help
|