Create NOX

NOX begins with a simple truth: every day, I generate a structured log set to track everything that happens. This page documents the real system I use β€” for decision capture, retrospectives, and progress tracking.

The script is scoped to July 2025. It creates a model directory and three Markdown files with YAML headers, matching filenames, and internal routing. It's partly hard-coded for now but extensible via environment variables.

πŸ“ Folder Structure

Dropbox/
|-- nox/
|   |-- models/
|   |   |-- homework/
|   |   |   |-- 2025/
|   |   |   |   |-- 07-july/
|   |   |   |   |   |-- 13-homework/
|   |   |   |   |   |   |-- models/
|   |   |   |   |   |   |   |-- a-model-log-13.md
|   |   |   |   |   |   |   |-- a-model-notes-13.md
|   |   |   |   |   |   |-- signals-13.md
|   |   |   |   |   |   |-- log-13.md
|   |   |   |   |   |   |-- homework-13.md
|   |-- log.md

a-model is a stand-in for any real model β€” a place to capture logs, notes, and expansion files.

This repeatable pattern gives me the structure I need to log, orient, tally, and grow. Each day has its own folder. Each folder contains three primary files:

🧭 signals-#.md

This file is always written first. It tracks morning routine, scoring of yesterday's tasks, and the emotional/strategic plan for the day ahead.

## Routine
_A simple start-of-day shell. Each line sets an anchor for presence and pacing._

| ID | Time   | Domain | Check | Time  | Notes       |
|----|--------|--------|-------|-------|-------------|
| 1  | @ 3:30 | Awake  | [ ]   | :     | Quiet wake  |

## Scoring Shell

2025-07-13 [mode:account] - Review of yesterday's tasks [SYS] ${checklist: |  
  - [x] Finished README for PDC Blueprint
  - [ ] Push updated archive.log
}

## Let's Agree on This

2025-07-13 [mode:restore] - Morning Agreement Block [SUN] ${feed: |

  _EiTi Shell_  
  - Dump zone for mental clutter  
  - Includes large tasks, vague ideas, or open threads  
  - Meant to be triaged or refined later  

  _Let’s Agree on This_  
  - [ ] Simple, tangible tasks assigned at the beginning of the day  

  _Signal Shell_  
  - Captures mid-log tasks needing follow-up  
  - Syntax: `{ [ ] Verb Task [DOMAIN] ↳ source-file.md }`

  - { [ ] Add routing to HNET [HNET] ↳ document-foo.md }

}

πŸ“œ log-#.md

This file holds the timeline. What happened, when, and what got built. It's structured using standard NOX log syntax.

🧾 homework-#.md

This is the task router. It points to other models, tracks ticket numbers, and links out to new content created during the day.

I name the primary folder "homework" β€” simple, non-intimidating, and familiar. It grounds the system without adding friction.

---
title: Homework Assignments
author: Alex Catalano
date: 2025-07-13
route: nox/models/homework/2025/07-july/13-homework/
file: homework-13.md
---

[Signals](signals-13.md)

### πŸŽ’ Homework Assignments

## Change Log

[Log: 2025-{tag}](log-{tag}.md)  

## Models Created Today

- **a-model** β€” [View its folder](models/a-model/)  


---
**End of Homework File**

← Return to NOX Home