Greenhorn / literal onboarding audit

Greenhorn fix-loop fixture · after

LAST STEP COMPLETED

A literal newcomer followed the repository’s written path. Every proposed command received an independent contract ruling before it could reach the container shell.

Read the docsRule each commandExecute in DockerVerify the checkpoint
0.5 min (documented verification)

Documented checkpoint independently verified

Verification evidenceThe documented verification command `node verify.js` exited 0 and printed the documented marker `fix-loop checkpoint passed` in the isolated executor.
2026-07-18T14:09:01.170Z

Literal execution trace

Every rule, shell handoff, and observed result remains inspectable. Long command output is tucked away, never discarded.

  1. Documentation scope

    Documentation scope

    Loaded 1 documentation files (depth ≤2, cap 6; external links disabled).

  2. Command proposal

    npm install

    LICENSEDFRICTION
    Documentation evidence
    Install the dependencies with `npm install`.

    The README explicitly licenses `npm install` for dependency installation.

    Literal readings considered
    • The proposed command exactly matches the documented installation command.
    • The repository is identified as a Node project and includes npm project files.

    SHELL RECEIVED: YESAccepted command reached the isolated executor.

  3. Container result

    npm install

    Container resultexit 0
    Show command output
    up to date, audited 1 package in 151ms
    
    found 0 vulnerabilities
  4. Command proposal

    node verify.js

    LICENSEDFRICTION
    Documentation evidence
    Run `node verify.js`.

    README.md explicitly licenses `node verify.js`, and the file required by the command exists.

    Literal readings considered
    • The proposed command exactly matches the documented verification command.
    • The referenced file `verify.js` is present in state.

    SHELL RECEIVED: YESAccepted command reached the isolated executor.

  5. Container result

    node verify.js

    Container resultexit 0
    Show command output
    fix-loop checkpoint passed
  6. Success criterion

    Checkpoint

    The documented checkpoint is `fix-loop checkpoint passed`, and the approved `node verify.js` action exited 0 with that output.

  7. Independent verification

    Checkpoint

    The documented verification command `node verify.js` exited 0 and printed the documented marker `fix-loop checkpoint passed` in the isolated executor.

What the newcomer was allowed to read

  • README.mdlocal

How this run was contained

Read the isolation statement

Ubuntu 24.04 container, new filesystem state, source copied inside at run start. Codex reasons in a separate empty host scratch directory; the Azure GPT-5.6 key stays on the host. Only accepted commands reach the container shell.

The no-peeking constraint is enforced by per-command rulings, not a filesystem barrier — an adversarial agent could read files via licensed commands. Greenhorn's agent is cooperative by construction and every command it ran is in the transcript.

Read the newcomer contract
You are a brand-new developer on your first day. You are literate, careful,
and completely unfamiliar with this project and its ecosystem's conventions.
1. Only run a command the documentation explicitly states, or the single
   unambiguous literal reading of an instruction.
2. Ambiguous instruction (multiple reasonable readings)? Do not choose.
   Halt that path and record every reading you see.
3. On failure: read the error, re-read the docs for a documented remedy.
   Never debug from your own knowledge.
4. Never install/configure/invoke anything the docs never mentioned.
5. When stuck, say plainly what you expected, what you got, and which
   sentence failed you.
6. Undocumented environment values (keys, URLs) = dead end. Never invent.
Inspect the container Dockerfile
# Deliberately small and inspectable: no project state, dotfiles, or cached package manager data.
FROM ubuntu:24.04

ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
 && apt-get install -y --no-install-recommends ca-certificates curl git \
 && curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \
 && apt-get install -y --no-install-recommends nodejs \
 && rm -rf /var/lib/apt/lists/* /root/.npm

WORKDIR /workspace
ENTRYPOINT []