4dc5ca7343
Der letzte Meter des propose-only-Kreislaufs: Vorschlags-Branches (Werkstatt/ Orchestrator) und Traum-Skill-Kandidaten werden als API sichtbar; Annehmen laeuft als detached systemd-Unit (Merge im Worktree -> Push main -> Deploy -> Health -> Auto-Revert bei Rot). Dazu: Chronik-Endpoint (Announce-Store als Timeline), Wissens-Vault-Reader (read-only, Traversal-Guard), Zeitmaschine (Snapshots + detached Restore) und Morgenlage-Spiegel im Chef-Gutachter-Feed (priority=silent). python-multipart explizit in requirements (voice braucht es, war implizit). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
63 lines
1.7 KiB
Python
63 lines
1.7 KiB
Python
"""Auftragsbuch-Endpoints (Vorschlags-Inbox) — dünner REST-Layer über services/auftragsbuch.py.
|
|
LAN-only wie alle MC2-Endpoints; das Gate ist der Klick des Commanders."""
|
|
|
|
from fastapi import APIRouter, HTTPException
|
|
from pydantic import BaseModel
|
|
|
|
from services import auftragsbuch
|
|
|
|
router = APIRouter(prefix="/api")
|
|
|
|
|
|
class BranchIn(BaseModel):
|
|
branch: str
|
|
|
|
|
|
class KandidatIn(BaseModel):
|
|
file: str
|
|
|
|
|
|
@router.get("/auftragsbuch")
|
|
def list_proposals() -> dict:
|
|
return auftragsbuch.list_proposals()
|
|
|
|
|
|
@router.get("/auftragsbuch/diff")
|
|
def diff(branch: str) -> dict:
|
|
res = auftragsbuch.diff_of(branch)
|
|
if not res.get("ok"):
|
|
raise HTTPException(400, res.get("error", "Diff nicht verfügbar."))
|
|
return res
|
|
|
|
|
|
@router.post("/auftragsbuch/annehmen")
|
|
def accept(body: BranchIn) -> dict:
|
|
res = auftragsbuch.accept(body.branch)
|
|
if not res.get("ok"):
|
|
raise HTTPException(400, res.get("error", "Annehmen fehlgeschlagen."))
|
|
return res
|
|
|
|
|
|
@router.post("/auftragsbuch/ablehnen")
|
|
def reject(body: BranchIn) -> dict:
|
|
res = auftragsbuch.reject(body.branch)
|
|
if not res.get("ok"):
|
|
raise HTTPException(400, res.get("error", "Ablehnen fehlgeschlagen."))
|
|
return res
|
|
|
|
|
|
@router.post("/auftragsbuch/skill/annehmen")
|
|
def skill_accept(body: KandidatIn) -> dict:
|
|
res = auftragsbuch.skill_accept(body.file)
|
|
if not res.get("ok"):
|
|
raise HTTPException(400, res.get("error", "Beauftragen fehlgeschlagen."))
|
|
return res
|
|
|
|
|
|
@router.post("/auftragsbuch/skill/ablehnen")
|
|
def skill_reject(body: KandidatIn) -> dict:
|
|
res = auftragsbuch.skill_reject(body.file)
|
|
if not res.get("ok"):
|
|
raise HTTPException(400, res.get("error", "Verwerfen fehlgeschlagen."))
|
|
return res
|