Skip to content

Latest commit

 

History

History
46 lines (36 loc) · 1.58 KB

File metadata and controls

46 lines (36 loc) · 1.58 KB

AutoCode Agent Guide

Working Style

  • Communicate with the user in Chinese by default unless the requested artifact needs another language.
  • Inspect the current code, configuration, and docs before editing.
  • Keep changes small and local; avoid broad refactors unless the task requires them.
  • Do not invent test results, benchmark numbers, citations, API behavior, or project status.
  • Preserve user work. Do not revert unrelated changes.

Privacy And Security

  • Never commit or print real API keys, tokens, passwords, private endpoints, or personal paths.
  • Keep secrets in ignored local files such as .env.local or .auto-code/local.env.
  • Treat .auto-code/, generated sessions, traces, local reports, and temporary prompts as private runtime artifacts.
  • Use neutral placeholders in public examples, for example https://api.example.com/v1, C:/example/project, and example__repo-123.

Repository Notes

  • This is a TypeScript ESM CLI project.
  • Use npm.cmd in Windows PowerShell examples.
  • Do not traverse or publish node_modules/, dist/, prefix/, .auto-code/, .codegraph/, acceptance-evidence/, or docs/generated/ by default.
  • Keep README.md public-facing and high level.
  • Keep public docs free of local paths, internal handoff notes, real provider credentials, and development-session logs.

Verification

Use the smallest meaningful check for the touched surface. Common commands:

npm.cmd run check
npm.cmd run build
npm.cmd run verify:demo-mvp-smoke

Run broader smoke scripts only when the change touches that behavior.