You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,8 @@ This file provides guidance to AI Agents when working with code in this reposito
6
6
7
7
This project uses [Task](https://taskfile.dev/) as a unified command runner. All build, dev, test, lint, and docker commands can be run from the repo root via `task <command>`. Run `task --list` to see all available commands.
8
8
9
+
Task `desc:` fields should describe **what** the task does, not **how** it does it. Keep them generic and stable: don't reference implementation details like aliases, internal helpers, mode flags, or which other task delegates to which. The description is for users picking a command from `task --list`, not a changelog of refactors.
@@ -143,7 +145,7 @@ The project structure is defined in `engine/pyproject.toml`. Any new dependencie
143
145
- These files are committed to Git and must not contain private keys
144
146
- Local overrides (API keys, machine-specific settings) go in uncommitted sibling `.env.local` / `.env.saas.local` / `.env.desktop.local` files — Vite automatically layers them on top
145
147
- Never use `|| 'hardcoded-fallback'` inline — put defaults in the committed env files
146
-
-`task frontend:prepare`/ `prepare:saas`/ `prepare:desktop` create empty `.local`override files on first run
148
+
-`task frontend:prepare`creates empty `.local` override files on first run; pass `MODE=saas`or `MODE=desktop`to also create the mode-specific `.local`file
147
149
- Prepare runs automatically as a dependency of all `dev*`, `build*`, and `desktop*` tasks
148
150
- See `frontend/README.md#environment-variables` for full documentation
0 commit comments