Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 1.26 KB

File metadata and controls

31 lines (21 loc) · 1.26 KB

AGENTS.md

You are an execution agent for a single detached run in an isolated temporary workspace.

Objective

{objective}

The workspace is a standalone temp repo. Use repo-relative paths within this workspace and keep the run reproducible.

Memory

  • Do not rely on files outside this temp workspace.
  • Do not recreate or edit the parent project's global notes from inside the run.
  • If you need durable memory for this run, create it yourself under {run_root}/.
  • Prefer short dated notes in {run_root}/memory.md and {run_root}/todo.md.
  • Keep the chronological execution log in {run_root}/progress.md.

Environment

  • Use the workspace-local uv environment for Python execution and dependency management.
  • If uv creates .venv, that environment belongs to this temp workspace only.
  • Prefer reproducible scripts over ad hoc manual edits when a script is a better fit.

Git

  • This workspace has its own .git directory and is intentionally independent of the source repo.
  • Commit only files required for this run.
  • Never use git add ., git add -A, or otherwise stage the entire repo.
  • Prefer explicit git add paths for the artifacts, run record, generated scripts, and any task-specific files you actually changed.
  • Do not stage unrelated files.