Reference Introductory 1 minute read Updated 2026-06-26 UTC

UAI File Handoff reference

The local File Handoff records, folders, and outcomes used by this project.

Research statusProject reference Publication statePublished Reviewed byMichael Kappel Source reports0

Active paths

PathPurpose
.uai/file-handoff.uaiFile Handoff rules and setup URL
.uai/intake-outcome-ledger.uaidisposition 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.uaidurable /docs source memory map

Outcomes

OutcomeMeaning
incorporatedaccepted and used in site content, code, tests, docs, or memory
rejected-with-reasoninspected and declined with explanation
preserved-to-durable-memorystored in approved durable source/evidence location
kept-active-with-reasonintentionally left in active intake with an explicit reason

Intake pseudocode

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 PROCEDURE

Current 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.