fix(AP1.7b): recurring-Capabilities fuer Service Tokens erlauben
Some checks failed
Deploy Development / deploy (push) Successful in 46s
Test Suite / pytest-backend (push) Failing after 4m41s
Test Suite / k6 /api/health Baseline (push) Has been skipped
Test Suite / playwright-smoke (push) Has been skipped
Test Suite / lint-backend (push) Successful in 3s
Test Suite / compose-smoke (push) Has been skipped

kairo.recurring.read/manage fehlten in ALLOWED_TOKEN_CAPABILITIES —
AP17b-Operational-Tests konnten Agent-Token nicht anlegen.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Lars 2026-07-28 09:26:07 +02:00
parent be0090d513
commit 903304adf1

View File

@ -26,6 +26,8 @@ DEFAULT_AGENT_CAPABILITIES: tuple[str, ...] = (
"kairo.backlog.manage", "kairo.backlog.manage",
"kairo.decision.read", "kairo.decision.read",
"kairo.decision.manage", "kairo.decision.manage",
"kairo.recurring.read",
"kairo.recurring.manage",
) )
ALLOWED_TOKEN_CAPABILITIES = frozenset(DEFAULT_AGENT_CAPABILITIES) ALLOWED_TOKEN_CAPABILITIES = frozenset(DEFAULT_AGENT_CAPABILITIES)