agent-loop 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/agent_loop/version.rb +1 -1
- metadata +1 -2
- data/Readme.md +0 -32
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5f18502b47c9daaa2feba2d62c1f095803b2ac52fc541e08330ca1d285fce9d7
|
|
4
|
+
data.tar.gz: 14fc5e706576c7921f85754077f7c60f16dc0456ec19c4fcafcbd14acb1fdbe8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7a2b7632e7eab216962d8ce4454189db2de30762e48a9f0cb6cf0cd345e787c6be20abf35afac336c9542d711e9113c3966ec87ad4aadb56b2d72c8fe77e34c3
|
|
7
|
+
data.tar.gz: 89fec5417c0dbb9ad074c769268b89dce5b5ad8088aef92d5334a4c69f627eb2261c9571c5abc96be73f78ee3737468b28eb2b8080b21b4722b61241b5a46692
|
data/lib/agent_loop/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: agent-loop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brandon Mathis
|
|
@@ -32,7 +32,6 @@ extensions: []
|
|
|
32
32
|
extra_rdoc_files: []
|
|
33
33
|
files:
|
|
34
34
|
- Prompt.md
|
|
35
|
-
- Readme.md
|
|
36
35
|
- agent-loop.gemspec
|
|
37
36
|
- bin/agent-loop
|
|
38
37
|
- lib/agent_loop.rb
|
data/Readme.md
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
# Agent Loop
|
|
2
|
-
|
|
3
|
-
A command line utility that runs Claude Code CLI in a loop to work tasks one by one from a Prompt.md
|
|
4
|
-
|
|
5
|
-
## Project Goals
|
|
6
|
-
1. Can be cloned down and run with minimal setup
|
|
7
|
-
1. This project can work in existing repos with minimal configuration
|
|
8
|
-
1. Zero dependencies other than Claude Code and bash
|
|
9
|
-
|
|
10
|
-
## Install
|
|
11
|
-
|
|
12
|
-
```bash
|
|
13
|
-
bash <(curl -fsSL https://raw.githubusercontent.com/BrandonMathis/agent-loop/main/install.sh)
|
|
14
|
-
```
|
|
15
|
-
|
|
16
|
-
This downloads `start_agent_loop.sh` and `Prompt.md` into your current directory.
|
|
17
|
-
|
|
18
|
-
## Usage
|
|
19
|
-
1. Edit `Prompt.md` with your tasks
|
|
20
|
-
2. Run agent loop script
|
|
21
|
-
|
|
22
|
-
**Human Assisted**
|
|
23
|
-
```
|
|
24
|
-
./start_agent_loop.sh
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
**Fully Automated**
|
|
28
|
-
```
|
|
29
|
-
./start_agent_loop.sh --dangerous
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
When running this script with the `--dangerous` flag you are giving claude code cli [full permission to do whatever it pleases via the `--dangerously-skip-permissions`](https://code.claude.com/docs/en/settings#permission-settings) flag. Please proceed with caution and consider all possible risks.
|