Slice 1 (1/4): core engine, workflow ABC, free-form seed + CI - #1
Merged
Conversation
tildesrc
force-pushed
the
slice1/01-core
branch
5 times, most recently
from
June 12, 2026 21:17
84c25b9 to
0658a01
Compare
tildesrc
commented
Jun 12, 2026
tildesrc
commented
Jun 14, 2026
tildesrc
commented
Jun 14, 2026
tildesrc
commented
Jun 14, 2026
tildesrc
force-pushed
the
slice1/01-core
branch
2 times, most recently
from
June 14, 2026 16:05
58db21b to
cd90db8
Compare
tildesrc
commented
Jun 14, 2026
tildesrc
force-pushed
the
slice1/01-core
branch
5 times, most recently
from
June 14, 2026 16:49
be04033 to
7b5b92b
Compare
tildesrc
commented
Jun 14, 2026
tildesrc
commented
Jun 14, 2026
tildesrc
commented
Jun 14, 2026
tildesrc
commented
Jun 14, 2026
… seed + CI Slice 1, PR 1 of 4 — the core contracts the rest of the slice builds on. - panopticon.core.models: domain types (Task, Repo[+git_url], HistoryEntry[+trigger], Turn, Status, Advance, Responsibility) — pure data, no clock, no I/O. - panopticon.core.state: states as classes — State (non-terminal, inherits a DROPPED transition) / TerminalState, with built-in Complete/Dropped. Each declares two orthogonal facts: turn_on_enter (who acts on entry) and advance (MANUAL: the user transitions out / AUTOMATIC: the agent does when satisfied). - panopticon.core.workflow: the Workflow interface owns the whole state machine — nested State classes discovered and their string/class transitions resolved + validated at instantiation; queries (transitions, turn_on_enter, advance, …); and task lifecycle (start_task, apply_transition). Dropping is the universal escape hatch. - panopticon.workflows.Spike: the minimal seed workflow. - Golden tests for resolution / turn / advance / responsibility gating. - GitHub Actions CI: uv sync, mypy, pytest. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This was referenced Jun 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
First of four stacked PRs implementing Slice 1 — Contracts + walking skeleton (
docs/ROADMAP.md). Lands the core contracts + CI.panopticon.core.models— domain types (Task,Repo,HistoryEntry,Ball,Mode,Verdict,DoDItem); pure data, no clock/I/O.panopticon.core.workflow— theWorkflowABC (the workflow interface, ADR 0004).panopticon.core.engine— deterministic lifecycle engine (state machine + ball + DoD gating).panopticon.workflows.FreeFormWorkflow— the seed workflow.Stack: #1→main, #2→#1, #3→#2, #4→#3. Merge bottom-up.
🤖 Generated with Claude Code