Active paths
| Path | Purpose |
|---|---|
.uai/file-handoff.uai | File Handoff rules and setup URL |
.uai/intake-outcome-ledger.uai | disposition and proof-of-use evidence |
agent-file-handoff/Content/ | candidate content and source material |
agent-file-handoff/Improvement/ | audits, bug reports, QA, strategy, fixes |
.uai/docs-source-ledger.uai | durable /docs source memory map |
Outcomes
| Outcome | Meaning |
|---|---|
incorporated | accepted and used in site content, code, tests, docs, or memory |
rejected-with-reason | inspected and declined with explanation |
preserved-to-durable-memory | stored in approved durable source/evidence location |
kept-active-with-reason | intentionally left in active intake with an explicit reason |
Intake pseudocode
PROCEDURE handle_intake_file(file)
inspection <- SAFE_READ(file)
risk <- CLASSIFY_RISK(inspection)
IF risk.blocked
outcome <- "rejected-with-reason"
ELSE IF inspection.relevant_to_current_task
APPLY(inspection)
outcome <- "incorporated"
ELSE IF inspection.should_be_preserved
PRESERVE_TO_DURABLE_TARGET(inspection)
outcome <- "preserved-to-durable-memory"
ELSE
outcome <- "rejected-with-reason"
END IF
RECORD_LEDGER(file, outcome, evidence)
REMOVE_OR_KEEP_ACTIVE(file, outcome)
END PROCEDURECurrent configuration
ModelBreeder.com v1.2.x uses File Handoff only. It does not configure LLM Wiki memory. /docs is the durable source-report memory layer.