Kaname Theory

Three Convictions

Kaname is not a process. It is a set of beliefs about how software should be built when AI is doing the building. These three convictions are non-negotiable - they are the foundation everything else rests on.

I

Specification Primacy

The specification is the source of truth. Code is a derived, regenerable output. Specifications endure; implementations are replaced. When specification and code conflict, the specification governs.

Why this conviction

AI can generate code faster than any team can write it. The bottleneck is no longer writing code - it is knowing what to build. A specification that is precise, complete, and owned is the only thing that prevents AI-generated code from drifting away from intent.

In practice

  • No feature exists unless it is defined in spec.md. Verbal agreements and Slack threads are not specifications.
  • When AI output and spec diverge, the AI output is wrong - not the spec.
  • A spec change requires human approval before any implementation proceeds.
  • The spec is written before any code is generated, not after.

Without this conviction

Teams skip the spec and ask AI to "figure it out." The AI produces something plausible. The team ships it. Three weeks later, the product does something no stakeholder wanted - but nobody can point to where the decision was made, because there was no specification to violate.

Primary artifactspec.mdowned by Spec Owner
II

Flow over Cadence

Work moves continuously through defined stages governed by explicit policies - stated rules about how work enters, advances, and exits each stage. Time-boxed iterations are not required. Work is pulled, not pushed. Limiting work in progress improves delivery more reliably than increasing effort.

Why this conviction

Sprints impose artificial rhythm. In AI-augmented delivery, a single spec can generate a full task list in minutes and implementation can follow in hours. Sprint boundaries become obstacles rather than checkpoints. Flow exposes real bottlenecks - a blocked gate, an overloaded reviewer, an ambiguous spec - rather than hiding them behind a two-week cadence.

In practice

  • Work is pulled from the backlog when capacity exists, not batched into iterations.
  • Each stage has an explicit WIP limit. When a stage is full, upstream work stops.
  • The board state is always honest: Specify, Plan, Implement, Review, Done.
  • A task does not move to the next stage until the human gate for that stage is cleared.

Without this conviction

A team running Kaname-flavored sprints commits to 12 tasks on Monday. By Wednesday, 8 are "in progress" simultaneously. The AI is fast; reviewers are drowning. Nothing ships by Friday. The sprint ends, tasks roll over, and the team calls it normal.

Governed byDelivery Coach
III

Human Governance over AI Autonomy

Artificial intelligence generates code at speed and scale. Human judgment governs intent, architecture, and acceptance. No AI output advances through the delivery system without passing a human gate.

Why this conviction

AI is a powerful but undiscriminating executor. It optimizes for completing the task as stated, not for the consequences of completing it. Architectural decisions made by AI without human review accumulate into systems that are expensive to change and dangerous to operate. Human gates are not bureaucratic overhead - they are the mechanism by which intent is preserved across generations of AI-generated code.

In practice

  • Every stage transition requires a named human to approve the output.
  • The Constitution Guardian can veto any output that violates architectural or security boundaries - at any stage.
  • AI agents are given scoped context per task. They do not have access to the full system.
  • Marking a task "done" without reviewing the AI output against the spec is a gate violation.

Without this conviction

A Task Implementer runs an AI agent on a batch of 20 tasks overnight. In the morning, all tasks are marked done. The code compiles. The tests pass. Nobody reads the diffs. The system now has a new data model, three new API endpoints, and a caching layer that nobody specified - all "working" and all wrong.

Primary artifactconstitution.mdowned by Constitution Guardian

The full guide covers all five roles, the delivery cycle, and human gates.