Closes #239 /claim #239 ## Description video :- https://www.loom.com/share/d1d1d54d48bc45c4a48271ca9a387a88?sid=933e250d-78f8-4a7f-9745-0e908c0ee4d9 <!-- Briefly describe what this PR does and why --> ## Type of Change - [x] New module - [ ] Bug fix - [ ] Feature/enhancement - [ ] Documentation - [ ] Other ## Module Information <!-- Delete this section if not applicable --> **Path:** `registry/coder/modules/aider` **New version:** `v1.0.0` **Breaking change:** [ ] Yes [x] No ## Testing & Validation - [ ] Tests pass (`bun test`) - [ ] Code formatted (`bun run fmt`) - [ ] Changes tested locally ## Related Issues <!-- Link related issues or write "None" if not applicable --> --------- Co-authored-by: DevCats <christofer@coder.com>
15 lines
198 B
Bash
15 lines
198 B
Bash
#!/bin/bash
|
|
|
|
if [[ "$1" == "--version" ]]; then
|
|
echo "HELLO: $(bash -c env)"
|
|
echo "aider version v0.86.0"
|
|
exit 0
|
|
fi
|
|
|
|
set -e
|
|
|
|
while true; do
|
|
echo "$(date) - aider-agent-mock"
|
|
sleep 15
|
|
done
|