docs: add NEWSTART.md and NEWSTART.llm.md capturing all governance, process, and blueprint for a clean repo restart
Some checks are pending
ci / test (push) Waiting to run

This commit is contained in:
2025-09-17 11:40:15 -05:00
parent 11a611e072
commit 6fa024ddfa
10 changed files with 200 additions and 5 deletions

View File

@@ -52,4 +52,8 @@
-- Quiet Shell/No Streaming --
- Never stream file contents/diffs in chat. Avoid `cat`/`sed` outputs.
- Use silent checks (exit codes, `grep -q`); log details in DevLog files.
- Quiet is mandatory (no toggle); default to minimal, non-chat output.
- Quiet is mandatory (no toggle); default to minimal, non-chat output.
-- Tool Logging --
- On success: no chat output; optional one-line summary to `docs/devlog/tool.log`.
- On failure (not sandbox): capture stdout/stderr and append to `docs/devlog/tool.log` with timestamp and command.

View File

@@ -35,7 +35,12 @@ You are a coding agent running in the Codex CLI (terminal-based). Be precise, sa
- Do not stream file contents or diffs into chat. Avoid `cat`/`sed` output in chat.
- Prefer silent checks (e.g., `grep -q`, exit codes) and write details to DevLog files if needed.
- If content must be inspected, avoid printing it to chat; summarize findings in DevLog and reference the file.
- Quiet is mandatory (no toggle). Tools and scripts should default to minimal, non-chat output.
- Quiet is mandatory (no toggle). Tools and scripts should default to minimal, non-chat output.
## Tool Logging (tool.log)
- On command success: do not print to chat; optionally append a one-line summary to `docs/devlog/tool.log`.
- On command failure (not sandbox failures): write full stdout/stderr to `docs/devlog/tool.log` with timestamp and command.
- Use a quiet wrapper script to enforce this behavior.
## Dev Logs and Docs
- Maintain `docs/devlog/DEVLOG_LLM.md` and `docs/devlog/DEVLOG_HUMAN.md`. Add an entry for each meaningful change.