feat(awooop): Phase 1-8 完整實作 — AwoooP Agent Platform 六平面架構
Some checks failed
run-migration / migrate (push) Failing after 59s
Code Review / ai-code-review (push) Successful in 1m8s
Type Sync Check / check-type-sync (push) Successful in 2m27s

## Phase 1-3: Control Plane + Contract System
- awooop_phase1_control_plane_2026-05-04.sql: 12 張核心表 + RLS
- awooop_phase1_batch1_rls_2026-05-04.sql: 全部 FORCE RLS + GRANT
- packages/awooop-contracts/: 六合約 JSON Schema + golden fixtures
- src/models/awooop_contracts.py: Pydantic v2 contract models(extra=forbid)
- src/repositories/contract_repository.py: contract lifecycle(draft→published→active)
- src/services/contract_service.py: HMAC publish sig + Redis multi-sig activate
- src/services/schema_validator.py: LLM output validator(retry×3, E-SCHEMA-001)

## Phase 2: Tenant Isolation
- awooop_phase2_budget_ledger_2026-05-04.sql: budget_ledger + RLS
- src/services/budget_service.py: Token Budget Hard Kill 三層防線
- src/core/context.py: PROJECT_ID ContextVar(31 background loop 自動繼承)
- src/db/base.py + models.py: project_id 欄位 + RLS set_config 注入
- src/hermes/nl_gateway.py: project_id Redis key 前綴(Phase A 雙寫)
- src/services/anomaly_counter.py: per-project 改造(Phase A fallback)

## Phase 4: Platform Shell in Shadow Mode
- awooop_phase4_run_state_2026-05-04.sql: run_state + step_journal + idempotency
- src/services/run_state_machine.py: 8-state FSM + SKIP LOCKED + stale reaper
- src/services/platform_runtime.py: UUID v7 + W3C trace_id + shadow_execute
- src/services/audit_sink.py: PII/secret redaction 9 patterns
- src/api/v1/platform/runs.py: POST/GET /v1/platform/runs(Router→Service 架構)
- src/workers/platform_worker.py: SKIP LOCKED worker + heartbeat + reaper loop
- src/main.py: platform router + lifespan worker start/stop

## Phase 5: MCP Gateway 五閘門
- awooop_phase5_mcp_gateway_2026-05-04.sql: 4 表 + RLS
- src/plugins/mcp/gateway.py: McpGateway(Gate 1~5, E-MCP-GATE-001~009)
- src/plugins/mcp/redaction_middleware.py: 雙層 redaction + 16K 截斷
- src/plugins/mcp/registry.py: __provider name mangling(ADR-116)
- src/plugins/mcp/credential_resolver.py: k8s secret ref 解析
- tests/test_mcp_credential_isolation.py: 10 個迴歸測試(secret leak 防再現)

## Phase 6-8: EwoooC + Channel Hub + Approval Token
- awooop_phase6_ewoooc_onboarding_2026-05-04.sql: ewoooc tenant + 4 read-only MCP tools
- awooop_phase7_channel_hub_2026-05-04.sql: conversation_event + outbound_message
- src/services/provider_proxy.py: ProviderProxy + PlatformEnvelope(ADR-115)
- src/services/channel_hub.py: Telegram inbound mirror + Progressive Feedback(30s)
- src/services/awooop_approval_token.py: HS256 + jti NX replay 防護 + suggest mode

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Your Name
2026-05-04 19:31:53 +08:00
parent 0a90dab1e9
commit 8629ac709b
69 changed files with 10999 additions and 77 deletions

View File

@@ -0,0 +1,304 @@
"""
Run State Machine
==================
AwoooP Phase 4: Run FSM 轉換規則 + Worker LeaseADR-114/ADR-119
2026-05-04 ogt + Claude Sonnet 4.6
狀態機:
PENDING → RUNNINGworker 取得 lease
RUNNING → WAITING_TOOL等待 tool call 完成)
RUNNING → WAITING_APPROVAL等待人工審核
RUNNING → COMPLETED / FAILED / CANCELLED
WAITING_TOOL → RUNNINGtool call 完成)
WAITING_TOOL → FAILEDtool call 失敗 + 超過 max_attempts
WAITING_APPROVAL → RUNNING核准
WAITING_APPROVAL → CANCELLED拒絕/超時)
* → TIMEOUTlease_until 過期且超過 max_attempts
SKIP LOCKED
Worker 以 SELECT ... FOR UPDATE SKIP LOCKED 取單,防 double-pickup。
Lease TTL = 60 秒Heartbeat 每 15 秒更新。
Stale run reaper
每分鐘掃描 lease_until < NOW() 的 running run
attempt_count < max_attempts → 重設 PENDING
attempt_count >= max_attempts → 標記 FAILED(E-RUN-002)
"""
from __future__ import annotations
import socket
import uuid
from datetime import datetime, timedelta, timezone
from typing import TYPE_CHECKING
import structlog
from sqlalchemy import select, text, update
from src.db.awooop_models import AwoooPRunState
from src.db.base import get_db_context
if TYPE_CHECKING:
from uuid import UUID
logger = structlog.get_logger(__name__)
# Worker lease TTL
LEASE_TTL_SECONDS = 60
HEARTBEAT_INTERVAL_SECONDS = 15
STALE_REAPER_INTERVAL_SECONDS = 60
# 有效的 FSM 轉換表
# key: from_state, value: set of valid to_states
_VALID_TRANSITIONS: dict[str, frozenset[str]] = {
"pending": frozenset({"running", "cancelled"}),
"running": frozenset({"waiting_tool", "waiting_approval", "completed", "failed", "cancelled", "timeout"}),
"waiting_tool": frozenset({"running", "failed", "cancelled"}),
"waiting_approval": frozenset({"running", "cancelled", "timeout"}),
"completed": frozenset(), # terminal
"failed": frozenset(), # terminal
"cancelled": frozenset(), # terminal
"timeout": frozenset(), # terminal
}
TERMINAL_STATES = frozenset({"completed", "failed", "cancelled", "timeout"})
_WORKER_ID = f"{socket.gethostname()}:{uuid.uuid4().hex[:8]}"
# ─────────────────────────────────────────────────────────────────────────────
# FSM 驗證
# ─────────────────────────────────────────────────────────────────────────────
class InvalidStateTransitionError(Exception):
def __init__(self, from_state: str, to_state: str) -> None:
self.from_state = from_state
self.to_state = to_state
super().__init__(f"非法 FSM 轉換: {from_state!r}{to_state!r}")
def validate_transition(from_state: str, to_state: str) -> None:
"""驗證 FSM 轉換是否合法,非法則拋出 InvalidStateTransitionError"""
valid_targets = _VALID_TRANSITIONS.get(from_state, frozenset())
if to_state not in valid_targets:
raise InvalidStateTransitionError(from_state, to_state)
# ─────────────────────────────────────────────────────────────────────────────
# Worker LeaseSKIP LOCKED
# ─────────────────────────────────────────────────────────────────────────────
async def acquire_pending_run(
project_id: str,
worker_id: str = _WORKER_ID,
) -> AwoooPRunState | None:
"""
以 SKIP LOCKED 取得一筆 PENDING run並設定 lease。
同時只有一個 worker 可取得同一筆 runPostgreSQL SKIP LOCKED 保證)。
Returns None 表示目前沒有待處理的 run。
"""
lease_until = datetime.now(timezone.utc) + timedelta(seconds=LEASE_TTL_SECONDS)
now = datetime.now(timezone.utc)
async with get_db_context(project_id) as db:
# SKIP LOCKED其他 worker 已鎖定的 row 直接跳過
result = await db.execute(
text("""
SELECT run_id FROM awooop_run_state
WHERE project_id = :project_id
AND state = 'pending'
AND (lease_until IS NULL OR lease_until < NOW())
ORDER BY created_at ASC
LIMIT 1
FOR UPDATE SKIP LOCKED
"""),
{"project_id": project_id},
)
row = result.fetchone()
if row is None:
return None
run_id = row[0]
# 更新 lease + 轉為 RUNNING
await db.execute(
update(AwoooPRunState)
.where(
AwoooPRunState.run_id == run_id,
AwoooPRunState.project_id == project_id,
)
.values(
state="running",
lease_until=lease_until,
heartbeat_at=now,
worker_id=worker_id,
started_at=now,
attempt_count=AwoooPRunState.attempt_count + 1,
)
)
# 重新讀取完整 record
result2 = await db.execute(
select(AwoooPRunState).where(AwoooPRunState.run_id == run_id)
)
run = result2.scalar_one()
logger.info(
"run_lease_acquired",
run_id=str(run_id),
project_id=project_id,
worker_id=worker_id,
attempt_count=run.attempt_count,
)
return run
async def heartbeat(run_id: "UUID", project_id: str) -> None:
"""更新 run 的 heartbeat + 延長 lease TTL"""
new_lease = datetime.now(timezone.utc) + timedelta(seconds=LEASE_TTL_SECONDS)
async with get_db_context(project_id) as db:
await db.execute(
update(AwoooPRunState)
.where(
AwoooPRunState.run_id == run_id,
AwoooPRunState.state == "running",
)
.values(
heartbeat_at=datetime.now(timezone.utc),
lease_until=new_lease,
)
)
async def transition(
run_id: "UUID",
project_id: str,
to_state: str,
*,
error_code: str | None = None,
error_detail: str | None = None,
output_sha256: str | None = None,
cost_usd_delta: float = 0.0,
step_count_delta: int = 0,
) -> None:
"""
執行 FSM 狀態轉換(含驗證)。
先從 DB 讀取 current state驗證轉換合法性再 UPDATE。
terminal state 同時寫入 completed_at。
"""
async with get_db_context(project_id) as db:
result = await db.execute(
select(AwoooPRunState.state).where(
AwoooPRunState.run_id == run_id,
AwoooPRunState.project_id == project_id,
)
)
row = result.fetchone()
if row is None:
raise ValueError(f"run {run_id} 不存在或無 RLS 權限")
from_state = row[0]
validate_transition(from_state, to_state)
values: dict = {"state": to_state}
if error_code:
values["error_code"] = error_code
if error_detail:
values["error_detail"] = error_detail
if output_sha256:
values["output_sha256"] = output_sha256
if cost_usd_delta:
values["cost_usd"] = AwoooPRunState.cost_usd + cost_usd_delta
if step_count_delta:
values["step_count"] = AwoooPRunState.step_count + step_count_delta
if to_state in TERMINAL_STATES:
values["completed_at"] = datetime.now(timezone.utc)
values["lease_until"] = None
values["worker_id"] = None
await db.execute(
update(AwoooPRunState)
.where(AwoooPRunState.run_id == run_id)
.values(**values)
)
logger.info(
"run_state_transition",
run_id=str(run_id),
from_state=from_state,
to_state=to_state,
error_code=error_code,
)
# ─────────────────────────────────────────────────────────────────────────────
# Stale Run Reaper
# ─────────────────────────────────────────────────────────────────────────────
async def reap_stale_runs(project_id: str) -> int:
"""
掃描 lease_until < NOW() 的 RUNNING run。
- attempt_count < max_attempts → 重設 PENDINGretry
- attempt_count >= max_attempts → FAILED(E-RUN-002)
Returns: 處理的 stale run 數
"""
now = datetime.now(timezone.utc)
reaped = 0
async with get_db_context(project_id) as db:
# 找所有 stale RUNNING runs
result = await db.execute(
select(AwoooPRunState).where(
AwoooPRunState.project_id == project_id,
AwoooPRunState.state == "running",
AwoooPRunState.lease_until < now,
)
)
stale_runs = list(result.scalars().all())
for run in stale_runs:
if run.attempt_count < run.max_attempts:
# Retry重設為 PENDING
await db.execute(
update(AwoooPRunState)
.where(AwoooPRunState.run_id == run.run_id)
.values(
state="pending",
lease_until=None,
worker_id=None,
heartbeat_at=None,
)
)
logger.warning(
"stale_run_requeued",
run_id=str(run.run_id),
attempt_count=run.attempt_count,
max_attempts=run.max_attempts,
)
else:
# 超過最大重試次數 → FAILED
await db.execute(
update(AwoooPRunState)
.where(AwoooPRunState.run_id == run.run_id)
.values(
state="failed",
error_code="E-RUN-002",
error_detail=f"max_attempts={run.max_attempts} 超過stale run 已廢棄",
completed_at=now,
lease_until=None,
worker_id=None,
)
)
logger.error(
"stale_run_failed",
run_id=str(run.run_id),
attempt_count=run.attempt_count,
)
reaped += 1
if reaped:
logger.info("stale_run_reaper_done", project_id=project_id, reaped=reaped)
return reaped