Imported from Heliopause-Hyper/AICO_Intellig (
AGENTS.md). Install upstream withnpx skills add Heliopause-Hyper/AICO_Intellig. Copyright stays with the author.
AICO-Intellig Agent Guide
This file is the operating interface for Codex and other code agents working on
AICO-Intellig.
Current Priority
- The main active project is
AICO-Intellig. - Treat
AICO1as the stable framework baseline unless a task explicitly requires cross-repository coordination. - Prefer work that improves dataset consistency, analysis interfaces, curated exports, backend selection, sequential stopping, risk-sensitive routing, or temporal generalization.
- Before proposing large refactors, first ask whether the task can be solved by extending the current curated/manifests/universe interface.
Mission
- Continue development on the AICO-Intellig layer.
- Treat
AICO1as a separate, largely stable repository. - Prioritize data consistency, analysis interfaces, backend selection, sequential stopping, risk-sensitive policy, and temporal generalization.
First Read
Read these files before proposing non-trivial changes:
README.mddocs/DATASET_INVENTORY.mdresults/curated_datasets/README.mdresults/curated_datasets/universes/summary.json- relevant files in
results/manifests/
Then move into the code:
src/scripts/training/tests/and top-leveltest_*.py
Working Default
Unless the task explicitly says otherwise, assume the work should happen inside
AICO-Intellig, not AICO1.
Preferred Data Interfaces
Use these as the default interfaces:
results/manifests/*.jsonfor experiment-level structureresults/curated_datasets/index.csvandindex.jsonlfor export coverageresults/curated_datasets/universes/{paper,training,full_archive}/summaries for split-aware workdocs/DATASET_INVENTORY.mdfor global counts and directory roles
Conceptually, the canonical tables are:
- instance level:
problem_instance.jsonl - run summary level:
run_summary.jsonl - lightweight run level:
runs.jsonl - checkpoint cache:
run_checkpoint.jsonl
In this repository, the large materialized exports are intentionally not tracked by Git. If you need them, ask the server-side agent to query or summarize them.
Do Not Do
- Do not scan the full
results/tree as a first step. - Do not assume
paper,training, andfull_archiveuniverses are interchangeable. - Do not add bulky result payloads or runtime assets to Git.
- Do not modify
folderA/unless the task is explicitly about CORCA runtime integration. - Do not rewrite stable AICO1 terminology such as
AICO-IR,capability contract, orready/clarify/block.
Collaboration Contract
When Codex works locally and another agent works on the server:
- Codex reads code and proposes the change set.
- The server-side agent applies edits, runs commands, and reports outcomes.
- Exchange:
- target files
- concrete diffs
- executed commands
- test results
- tracebacks or log excerpts
- Reconcile decisions against the current server state before the next round.
Expected Output Style
- Make minimal, explicit patches.
- Prefer curated interfaces over raw directory traversal.
- State which universe is being used:
paper,training, orfull_archive. - If a task depends on untracked large tables, request a targeted extract rather than assuming local availability.