---
phase: 01-foundation
plan: 01
runtime: codex-cli
assurance: self_checked
---

# Phase 1 Plan

## Objective

Ship the first runnable version of `hello-proof` and document how to run and test it.

## Tasks

<task id="01-01" type="code">
  <files>
    - CREATE: package.json
    - CREATE: index.js
    - CREATE: tests/cli.test.cjs
    - CREATE: README.md
  </files>
  <action>
    Create a minimal Node CLI with a default greeting, add one automated test command, and document how to run it.
  </action>
  <verify>
    - `node index.js`
    - `node index.js --name Ada`
    - `npm test`
  </verify>
  <done>
    The CLI runs locally, the test command is wired, and README explains the run/test path.
  </done>
</task>
