Skip to content

Commit d08a8a7

Browse files
committed
Step: Rename editor agent to reviewer and revise command to review
1 parent 6da1c4a commit d08a8a7

6 files changed

Lines changed: 28 additions & 1 deletion

File tree

File renamed without changes.

TASKS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Put done tasks into the Archive.
1818

1919
## Active Tasks
2020

21-
- [ ] Improve the `/review` command and evolve the `reviewer` agent to a non-destructive, multi-phase audit workflow. (See plan: plans/improve-review-command.md)
21+
- [/] Improve the `/review` command and evolve the `reviewer` agent to a non-destructive, multi-phase audit workflow. (@apiad) (See plan: plans/improve-review-command.md)
2222

2323
---
2424

journal/2026-03-23.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
[2026-03-23T05:46:35] - Plan and task for improving /review command and evolve reviewer agent.
2+
[2026-03-23T05:47:31] - Rename editor agent to reviewer and revise command to review.

makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ all: test lint
44

55
test:
66
@echo "Running tests..."
7+
@python3 tests/test_review_command.py
78

89
docs-serve:
910
@mkdocs serve

tests/test_review_command.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import os
2+
3+
def test_reviewer_agent_exists():
4+
assert os.path.exists(".gemini/agents/reviewer.md")
5+
6+
def test_editor_agent_gone():
7+
assert not os.path.exists(".gemini/agents/editor.md")
8+
9+
def test_review_command_exists():
10+
assert os.path.exists(".gemini/commands/review.toml")
11+
12+
def test_revise_command_gone():
13+
assert not os.path.exists(".gemini/commands/revise.toml")
14+
15+
if __name__ == "__main__":
16+
# Simple manual runner for now
17+
try:
18+
test_reviewer_agent_exists()
19+
test_editor_agent_gone()
20+
test_review_command_exists()
21+
test_revise_command_gone()
22+
print("Tests Passed")
23+
except AssertionError as e:
24+
print(f"Test Failed: {e}")
25+
exit(1)

0 commit comments

Comments
 (0)