Skip to content

Glossary

Reference. Canonical terms used across nubos-pilot. Every other page links here when a term first appears.

Execution ontology

Milestone

Top-level project goal. Identified as M<NNN> (e.g. M001). Lives at .nubos-pilot/milestones/M<NNN>/. One milestone produces one or more slices, plus its own context, research, plan-review, and verification artifacts. See Unit Types § Milestone.

Slice (= wave)

Execution wave inside a milestone. Identified as S<NNN> within its milestone (full-id M<NNN>-S<NNN>). All tasks inside one slice run in parallel; slices run serially. Cross-slice dependencies flow forward only — a task in S002 may depend on a task in S001, never the reverse. There is no separate "wave" entity; slice is the wave.

Task

Atomic unit of work inside a slice. Full-id M<NNN>-S<NNN>-T<NNNN>. Produces exactly one git commit with subject task(<full-id>): <title> (ADR-0004). Lifecycle: pending → in-progress → verifying → pre-commit → done (with skipped and parked as alternative terminals).

Capture ontology

Todo

Captured-on-the-fly idea. Lives at .nubos-pilot/todos/pending/YYYY-MM-DD-<slug>.md until scheduled into a milestone. Created by /np:add-todo.

Note

Free-form scratch. Project scope writes to .nubos-pilot/notes/ and commits to git. Global scope writes to ~/.nubos-pilot/notes/ and never commits. Created by /np:note.

Thread

Cross-session context store at .nubos-pilot/threads/<slug>.md. Lifecycle in frontmatter: OPEN → IN_PROGRESS → RESOLVED. Created and resumed by /np:thread <slug>.

"Phase" vs. "milestone"

User-facing slash-commands keep the word phase for backwards compatibility:

  • /np:discuss-phase <N> — operates on milestone M<N>
  • /np:plan-phase <N> — plans milestone M<N>
  • /np:execute-phase <N> — executes milestone M<N>
  • /np:research-phase <N>, /np:architect-phase <N>, /np:validate-phase <N> — same pattern

On disk, in IDs, and in roadmap.yaml, the noun is always milestone. The mismatch is intentional — renaming the slash-commands would break every project's muscle memory. New documentation, error messages, and code paths use "milestone" exclusively.

File trees

Source

The tools/nubos-pilot/ git repo. Only contributors see this. Normal git lifecycle.

Install-Payload

Owned by the installer. Lives at .claude/nubos-pilot/ (and optionally .opencode/nubos-pilot/). Manifest-tracked; rewritten on npx nubos-pilot update. User edits are backed up to .bak.<n> before being overwritten.

Project-State

Lives at .nubos-pilot/ next to your code. Owned by the user, mutated only by workflows under a single-writer file lock. Survives uninstall — your plans, decisions, and history persist even after removing the tool. See ADR-0005.

Agents

Subagent

A one-shot, role-prompted invocation of the host runtime's "spawn a subordinate agent" capability (Claude's Task, Codex's equivalent, …). Lives as a single Markdown file in agents/. No daemon, no caching — loadAgent() re-reads the file every time.

Tier

Single model-selection knob (haiku / sonnet / opus) that every agent declares in its frontmatter. Concrete model id is resolved at spawn time by np-tools.cjs resolve-model against the active model_profile. Embedding a literal model id is forbidden by D-09.

Handoff

Persistent agent-to-agent note for cross-phase signals. Lives at milestones/M<NNN>/handoffs/ (milestone-scoped) or top-level handoffs/ (project-global). Status lifecycle open → read → acted → archived. Written via np-tools.cjs handoff-write, read via handoff-list + handoff-read.

Verification & validation

Success criterion (SC)

Observable outcome a milestone must achieve. Lives in roadmap.yaml as success_criteria[] per milestone. Verified post-execution by np-verifier, classified as Pass / Fail / Defer / Needs-User-Confirm.

Verification

Goal-backward post-execution check that the implementation satisfies each SC. Output: M<NNN>-VERIFICATION.md. Run by /np:verify-work <N>.

Validation (Nyquist)

Test-coverage audit that at least one test directly observes each requirement's behavior. Output: M<NNN>-VALIDATION.md with COVERED / UNDER_SAMPLED / UNCOVERED per requirement. Run by /np:validate-phase <N>.

A milestone that passes verification but fails validation shipped working code with inadequate regression coverage.

Configuration shorthand

TermMeaning
model_profileTier → model resolution profile (frontier / quality / balanced / budget / inherit); set in config.json
runtimeActive host CLI adapter (one of 14 ids)
scopelocal (project-scoped install) or global (user-home install)
text_modePlain-text prompt rendering for non-TTY shells; falls back to process.env.CLAUDECODE

Full key reference: Configuration.

Acronyms

AcronymExpansionWhere it appears
ADRArchitectural Decision Recorddocs/adr/, ADR Index
SCSuccess Criterionroadmap.yaml, M<NNN>-VERIFICATION.md
UATUser Acceptance TestS<NNN>-UAT.md
SSOTSingle Source Of Truthinformal — used to argue against duplication
MCPModel Context Protocolmcp-configs/, np-researcher
REQRequirementREQUIREMENTS.md (REQ-NN ids)
D-NNDecision (locked, project- or milestone-scope)M<NNN>-CONTEXT.md, RULES.md
TTL(Not used in nubos-pilot)