Skip to content
Closed
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
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,10 @@
result
worktrees/
.direnv/

# Test artifacts from e2e agent tests
solo-*.txt
e2e-*.txt
skill-*.txt
pair-*.txt
todo-run-cmd-*.md
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
pkgs.just
pkgs.git
pkgs.jq
pkgs.python3
];

RUST_SRC_PATH = "${rustToolchain}/lib/rustlib/src/rust/library";
Expand Down
8 changes: 5 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ pre-merge: nix-check
test-agents:
./tests/e2e-agents.sh

# Test full 2-agent implement protocol end-to-end
test-implement:
./tests/e2e-implement.sh
# Run the full e2e agent test matrix (solo + pairs, concurrent)
test-matrix *ARGS:
cargo install --path . --quiet
rally command install --target all --force
python3 tests/e2e_matrix.py {{ARGS}}

# Pick a todo and print copy-pasteable prompts for implement session agents
implement:
Expand Down
1 change: 0 additions & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,6 @@ pub enum CommandTargetArg {
Droid,
Pi,
ClaudeCode,
Factory,
All,
}

Expand Down
Loading