Files
seedit/scripts/AGENTS.md
2026-03-19 16:12:22 +08:00

784 B

scripts/AGENTS.md

These rules apply to scripts/**. Follow the repo-root AGENTS.md first, then use this file for automation and workflow helpers.

  • Keep scripts non-interactive and idempotent. Print the command, URL, branch, or path being acted on so failures are diagnosable.
  • Use repo-relative paths and environment variables instead of user-specific absolute paths.
  • For dev-server helpers, default to http://localhost:3000 unless the caller overrides AGENT_APP_URL.
  • Keep shell helpers thin. When logic becomes stateful or cross-platform, prefer a Node script.
  • Git and worktree helpers must validate input and default to safe operations.
  • If a helper deletes local branches automatically, document the exact eligibility checks and keep the behavior conservative.