docs: update documentation for new build directory structure

- Add build locations section to AGENTS.md
- Update README.md with build directory information
- Fix AGENTS.md vm-run command reference
- Document that clean removes both ./build/ and ./result/
- Ensure consistency across all documentation files

Addresses documentation inconsistencies after Makefile changes.
This commit is contained in:
2025-09-16 11:24:54 +02:00
parent 5c205dd88b
commit bc52b50cad
3 changed files with 19 additions and 6 deletions

View File

@@ -74,11 +74,16 @@ make status-cloud # Check health
```bash
make vm # Start VM (simulates USB environment)
make usb-build # Verify build (builds ISO)
make usb-build # Build ISO to ./build/iso/
make usb-test # Test ISO in QEMU
```
The VM simulates the USB experience with identical configuration and commands.
**Build Locations:**
- **USB ISOs**: `./build/iso/result/iso/*.iso`
- **VM builds**: `./result/` (Nix default)
## 📚 Complete Recipe Catalog
Based on Co-op Cloud with quality scoring:
@@ -164,7 +169,7 @@ make opencode # Start opencode in dev shell
## 🧹 Cleanup
```bash
make clean # Local artifacts
make clean # Clean build artifacts (./build/ and ./result/)
make destroy-cloud # Cloud infrastructure
```