Standardizes FixLog writing and handles Chrome persistence.
tech_rag, refactor).PROJECT_AGENT_CONFIG.md) Project prefix.PROJECT_AGENT_CONFIG.md) Project name.id, document (description), and metadatas (project, type, date, files, tests, result).uv run .agent/skills/fixlog_writer/scripts/write_log.py \
--project "ProjectName" \
--prefix "PREFIX" \
--desc "Description of the fix" \
--files "file1.py,file2.js" \
--test "Test description" \
--result "pass" # ⚠️ VALID VALUES: "pass" or "fail" (NOT "success"!)
Critical Parameter Values:
--result: ONLY accepts "pass" or "fail" (enforced by argparse choices)--files: Comma-separated list of file paths (will be split into array).agent/fix_logs/<ID>.json.fix_logs.uv run .agent/skills/fixlog_writer/scripts/write_log.py \
--project "Antigravity" \
--prefix "AG" \
--desc "Fixed critical bug in authentication flow" \
--files "src/auth.py,tests/test_auth.py" \
--test "pytest tests/test_auth.py - all passed" \
--result "pass"