runtime zaloha
This commit is contained in:
19
AGENTS.md
19
AGENTS.md
@@ -37,6 +37,25 @@ Never use `/tmp/`, hardcoded absolute paths, or in-memory databases for persiste
|
||||
|
||||
The exec safety guard blocks commands without an explicit workspace path (e.g. `lua -e '...'`, `which`). Write scripts to files inside the workspace (e.g. `tmp/script.lua`) and run them with `working_dir` set to the workspace root.
|
||||
|
||||
## File / Code Conventions
|
||||
|
||||
### Report / result files
|
||||
- Save important reports to `results/` directory with descriptive, date-prefixed filenames (e.g., `2026-06-02_remind-skill-analysis-and-improvements.md`)
|
||||
|
||||
### Script-writing convention
|
||||
- Location: always save scripts in the `scripts/` directory.
|
||||
- Language choice:
|
||||
- Extremely short script (a few lines) -> bash.
|
||||
- Longer / non-trivial script -> Python.
|
||||
- Override: if the user explicitly specifies a language or location, their instruction always takes precedence.
|
||||
|
||||
### Temporary files
|
||||
- All temporary files go to `tmp/` directory.
|
||||
- Clean up after tests and one-off operations.
|
||||
|
||||
### Code changes
|
||||
- User prefers changes to be made in a temporary clone under `workspace/tmp/<repo-name>` for review before applying
|
||||
|
||||
## No proactive actions
|
||||
|
||||
When I ask you to **find out**, **investigate**, **look into**, or **check**
|
||||
|
||||
Reference in New Issue
Block a user