Mercurial
view AGENT.md @ 279:b3b547563ec7
Add Google connector service and agent wiki
Implement the C/Seobeo Google Drive and Gmail connector with encrypted OAuth storage, Zenbu authentication, browser testing, AI tool discovery, chunked HTTP decoding, and Bazel coverage. Consolidate repository guidance into progressive wiki documentation and enforce arena-first allocation for new first-party C code.
Co-authored-by: Copilot <[email protected]>
Copilot-Session: 84c338fd-0939-4bb3-b7f3-1062eb213e5d
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 17 Aug 2026 22:22:36 -0700 |
| parents | a8d6435dc021 |
| children |
line wrap: on
line source
# Agent instructions ## Bazel is the project interface All project execution must happen through Bazel. Use existing `bazel build`, `bazel test`, and `bazel run` targets instead of invoking compiled binaries, language runtimes, package managers, generated scripts, or multiple services manually. When a workflow needs several processes or commands, add a Bazel target that owns their startup, runfiles, supervision, shutdown, and exit status. The user should need one `bazel run` command. For hg-web development, run the complete local stack with: ```bash bazel run //hg-web:dev ``` Add or update the smallest relevant Bazel target whenever code cannot be built, tested, run, bundled, or orchestrated through Bazel.