2.2 KiB
2.2 KiB
encoding_rule
- All source/code/config/docs files must be saved and edited in UTF-8 without BOM; never write mojibake placeholders or replacement characters.
commit_message_rule
- After applying fixes, always provide the user with a ready commit title in Russian.
graphify
This project has a graphify knowledge graph at graphify-out/.
Rules:
- Before answering architecture or codebase questions, read graphify-out/GRAPH_REPORT.md for god nodes and community structure
- If graphify-out/wiki/index.md exists, navigate it instead of reading raw files
- After modifying code files in this session, run
python -c "from graphify.watch import _rebuild_code; from pathlib import Path; _rebuild_code(Path('.'))"to keep the graph current
codex_domain_loop
- Project-scoped Codex orchestration lives under
.codex/. - Use
.codex/skills/domain-case-loopfor repeatable domain hardening loops on one concrete case. - The same skill/launcher also supports multi-step domain scenarios with shared assistant session state under
artifacts/domain_runs/<scenario_id>/steps/. - For full domain question pools, use pack mode and aggregate artifacts under
artifacts/domain_runs/<pack_id>/scenarios/. - Preserve current architecture: domain loop may automate capture, review, rerun, and artifact storage, but must not rewrite runtime foundations.
- Prefer machine-readable case artifacts in
artifacts/domain_runs/<case_id>/, especiallybaseline_turn.json/rerun_turn.json, over ad hoc prose-only summaries. - For cascading user questions in one domain, prefer scenario artifacts (
scenario_manifest.json,scenario_state.json, per-stepturn.json) over separate unlinked case folders. - If a case falls outside the current routed contour because the route/intent/capability is not wired yet, treat it as domain enablement work for this project, not as automatic out-of-scope rejection.
- For new unmarked domains,
needs_exact_capabilitymeans "bootstrap or extend the contour" rather than "close the case as unsupported". - A case can be marked
acceptedonly when analyst verdict is at least80/100, no unresolvedP0remains, and the rerun does not mask heuristic output as confirmed.