Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 1.39 KB

File metadata and controls

23 lines (17 loc) · 1.39 KB

Guidelines for Codex Agents

Testing

  • After modifying website content or configuration, run jekyll build to ensure the site compiles.

Posts

  • Blog posts reside in _posts/ and use the YYYY-MM-DD-title.md naming scheme.
  • Include YAML front matter with at least title and layout keys.

Pages and Assets

  • Place standalone pages in the repo root or appropriate folders.
  • Store images in img/ or assets/.

Environment

  • The development environment is defined in codex.yaml.

AROS LLM-Wiki Integration & Governance

  • Strict Grounding: When answering questions or updating codebase components, search .wiki/ first. Refer to entities using Obsidian style double bracket links [[page]].
  • Gap Detection: If you cannot resolve a question using workspace documentation or .wiki/, prompt the user: "Would you like me to run /wiki-research to investigate this topic?"
  • Slash Commands: Recognize /wiki-query, /wiki-research, /wiki-ingest, /wiki-update, and /wiki-build as valid workflow commands.
  • Workspace Hygiene: Always place temporary or scratch files in ~/.gemini/antigravity/brain/<session_id>/scratch/. Do not pollute the repository root.
  • Large Artifacts Rule: If generating files exceeding 3000 words, HTML reports, or massive tables, use Python script automation to write files rather than direct LLM completion to prevent content truncation.