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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/agent_loop/version.rb +1 -1
  3. metadata +1 -2
  4. data/Readme.md +0 -32
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 915989d4e9cf002298cd6b27243146113f0b04cab3e759c55e6c5b333cf1b997
4
- data.tar.gz: 80cbf0ccdbc645a60af30dc7ab22cdc0f8c54957e0ec8829681a8ab8160da1a4
3
+ metadata.gz: 5f18502b47c9daaa2feba2d62c1f095803b2ac52fc541e08330ca1d285fce9d7
4
+ data.tar.gz: 14fc5e706576c7921f85754077f7c60f16dc0456ec19c4fcafcbd14acb1fdbe8
5
5
  SHA512:
6
- metadata.gz: 9dab320aafd99d76c6f4204bb8e7ec4063c720c33d341f7f78423bdd766c0ab1892b21e0c4950a545738cf587067db94d3a399b386b0a49fbc9f8796e13e1ded
7
- data.tar.gz: '049da19643c2b415967185fb67ed782ef04735e547bde74a8581620842a8aba03b88cf2e83377d582b8ab2465fab2c87cac799ff3562361941303cd483055f1e'
6
+ metadata.gz: 7a2b7632e7eab216962d8ce4454189db2de30762e48a9f0cb6cf0cd345e787c6be20abf35afac336c9542d711e9113c3966ec87ad4aadb56b2d72c8fe77e34c3
7
+ data.tar.gz: 89fec5417c0dbb9ad074c769268b89dce5b5ad8088aef92d5334a4c69f627eb2261c9571c5abc96be73f78ee3737468b28eb2b8080b21b4722b61241b5a46692
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AgentLoop
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
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.0
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.