Add state-hub v0.1 — local-first state service for the Custodian
Implements the first live layer of the Custodian cognitive infrastructure:
PostgreSQL schema, FastAPI REST API, FastMCP stdio server, and Observable
Framework telemetry dashboard.
- state-hub/: full stack (docker-compose, FastAPI, Alembic, MCP server, dashboard)
- 5 DB tables: topics, workstreams, tasks, decisions, progress_events
- 11 MCP tools + 5 resources registered in .mcp.json
- Observable dashboard: Overview, Workstreams, Decisions, Progress pages
- CLAUDE.md: session protocol (get_state_summary / add_progress_event ritual)
- ~/.claude/CLAUDE.md: global cross-project reference to the hub
- scripts/pull_image.py: WSL2 TLS-resilient Docker image downloader
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-24 17:47:49 +01:00
|
|
|
import enum
|
|
|
|
|
import uuid
|
|
|
|
|
from datetime import date
|
|
|
|
|
|
2026-03-04 19:44:14 +01:00
|
|
|
from sqlalchemy import Boolean, Date, Enum, ForeignKey, String, Text
|
Add state-hub v0.1 — local-first state service for the Custodian
Implements the first live layer of the Custodian cognitive infrastructure:
PostgreSQL schema, FastAPI REST API, FastMCP stdio server, and Observable
Framework telemetry dashboard.
- state-hub/: full stack (docker-compose, FastAPI, Alembic, MCP server, dashboard)
- 5 DB tables: topics, workstreams, tasks, decisions, progress_events
- 11 MCP tools + 5 resources registered in .mcp.json
- Observable dashboard: Overview, Workstreams, Decisions, Progress pages
- CLAUDE.md: session protocol (get_state_summary / add_progress_event ritual)
- ~/.claude/CLAUDE.md: global cross-project reference to the hub
- scripts/pull_image.py: WSL2 TLS-resilient Docker image downloader
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-24 17:47:49 +01:00
|
|
|
from sqlalchemy.dialects.postgresql import UUID
|
|
|
|
|
from sqlalchemy.orm import Mapped, mapped_column, relationship
|
|
|
|
|
|
|
|
|
|
from api.models.base import Base, TimestampMixin, new_uuid
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TaskStatus(str, enum.Enum):
|
|
|
|
|
todo = "todo"
|
|
|
|
|
in_progress = "in_progress"
|
|
|
|
|
blocked = "blocked"
|
|
|
|
|
done = "done"
|
|
|
|
|
cancelled = "cancelled"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TaskPriority(str, enum.Enum):
|
|
|
|
|
low = "low"
|
|
|
|
|
medium = "medium"
|
|
|
|
|
high = "high"
|
|
|
|
|
critical = "critical"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Task(Base, TimestampMixin):
|
|
|
|
|
__tablename__ = "tasks"
|
|
|
|
|
|
|
|
|
|
id: Mapped[uuid.UUID] = mapped_column(
|
|
|
|
|
UUID(as_uuid=True), primary_key=True, default=new_uuid
|
|
|
|
|
)
|
|
|
|
|
workstream_id: Mapped[uuid.UUID] = mapped_column(
|
|
|
|
|
UUID(as_uuid=True), ForeignKey("workstreams.id", ondelete="RESTRICT"), nullable=False, index=True
|
|
|
|
|
)
|
|
|
|
|
title: Mapped[str] = mapped_column(String(255), nullable=False)
|
|
|
|
|
description: Mapped[str | None] = mapped_column(Text, nullable=True)
|
|
|
|
|
status: Mapped[TaskStatus] = mapped_column(
|
|
|
|
|
Enum(TaskStatus), nullable=False, default=TaskStatus.todo
|
|
|
|
|
)
|
|
|
|
|
priority: Mapped[TaskPriority] = mapped_column(
|
|
|
|
|
Enum(TaskPriority), nullable=False, default=TaskPriority.medium
|
|
|
|
|
)
|
|
|
|
|
assignee: Mapped[str | None] = mapped_column(String(100), nullable=True)
|
|
|
|
|
due_date: Mapped[date | None] = mapped_column(Date, nullable=True)
|
|
|
|
|
blocking_reason: Mapped[str | None] = mapped_column(Text, nullable=True)
|
2026-03-04 19:44:14 +01:00
|
|
|
needs_human: Mapped[bool] = mapped_column(Boolean, default=False, nullable=False, index=True)
|
|
|
|
|
intervention_note: Mapped[str | None] = mapped_column(Text, nullable=True)
|
Add state-hub v0.1 — local-first state service for the Custodian
Implements the first live layer of the Custodian cognitive infrastructure:
PostgreSQL schema, FastAPI REST API, FastMCP stdio server, and Observable
Framework telemetry dashboard.
- state-hub/: full stack (docker-compose, FastAPI, Alembic, MCP server, dashboard)
- 5 DB tables: topics, workstreams, tasks, decisions, progress_events
- 11 MCP tools + 5 resources registered in .mcp.json
- Observable dashboard: Overview, Workstreams, Decisions, Progress pages
- CLAUDE.md: session protocol (get_state_summary / add_progress_event ritual)
- ~/.claude/CLAUDE.md: global cross-project reference to the hub
- scripts/pull_image.py: WSL2 TLS-resilient Docker image downloader
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-24 17:47:49 +01:00
|
|
|
parent_task_id: Mapped[uuid.UUID | None] = mapped_column(
|
|
|
|
|
UUID(as_uuid=True), ForeignKey("tasks.id", ondelete="SET NULL"), nullable=True
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
workstream: Mapped["Workstream"] = relationship("Workstream", back_populates="tasks") # noqa: F821
|
|
|
|
|
subtasks: Mapped[list["Task"]] = relationship(
|
|
|
|
|
"Task", foreign_keys=[parent_task_id], lazy="selectin"
|
|
|
|
|
)
|
|
|
|
|
progress_events: Mapped[list["ProgressEvent"]] = relationship( # noqa: F821
|
|
|
|
|
"ProgressEvent", back_populates="task", lazy="selectin"
|
|
|
|
|
)
|