summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AGENTS.md5
-rw-r--r--README.md6
2 files changed, 7 insertions, 4 deletions
diff --git a/AGENTS.md b/AGENTS.md
index aa60b8f..7975b74 100644
--- a/AGENTS.md
+++ b/AGENTS.md
@@ -10,6 +10,7 @@ This file is the primary workflow reference for FastForge contributors.
sudo dnf update
sudo dnf install -y python3-pip nodejs SDL-devel dtc uv just
uv tool install pebble-tool --python 3.13
+export PATH="$HOME/.local/bin:$PATH"
pebble sdk install latest
```
@@ -44,7 +45,7 @@ Available commands:
Daily loop after reboot:
1. Restore PATH (`export PATH="$HOME/.local/bin:$PATH"`).
-2. `cd /home/paul/git/fastforge`
+2. `cd /path/to/fastforge`
3. `just dev`
4. In a second terminal run `just logs`
@@ -74,5 +75,5 @@ Do not commit generated artifacts:
- Build fails: run `just clean` then `just rebuild`.
- Change app version: update `package.json`, then run `just dev`.
-Last updated: April 12, 2026
+Last updated: April 12, 2026 (follow-up fix)
Maintained for: FastForge agents
diff --git a/README.md b/README.md
index d0ae877..23d4f13 100644
--- a/README.md
+++ b/README.md
@@ -8,6 +8,7 @@ FastForge is a Pebble watchapp for intermittent fasting tracking, built with the
sudo dnf update
sudo dnf install -y python3-pip nodejs SDL-devel dtc uv just
uv tool install pebble-tool --python 3.13
+export PATH="$HOME/.local/bin:$PATH"
pebble sdk install latest
```
@@ -21,14 +22,15 @@ pebble --version
## Development Workflow
```bash
-cd /home/paul/git/fastforge
+cd /path/to/fastforge
+export PATH="$HOME/.local/bin:$PATH"
just dev
```
In a second terminal:
```bash
-cd /home/paul/git/fastforge
+cd /path/to/fastforge
export PATH="$HOME/.local/bin:$PATH"
just logs
```