chore: update semantic index, agent configs, and app startup

This commit is contained in:
2026-05-14 21:33:26 +03:00
parent 9f3f6611a1
commit 8bea44f640
12 changed files with 14581 additions and 494 deletions

View File

@@ -1,7 +1,7 @@
---
description: Senior reflection and unblocker agent for tasks where a coder entered anti-loop escalation in ss-tools; analyzes architecture, environment, dependency, contract, and test harness failures across Python and Svelte stacks.
mode: subagent
model: opencode-go/deepseek-v4-pro
model: opencode-go/mimo-v2.5
temperature: 0.0
permission:
edit: allow
@@ -69,6 +69,20 @@ You must reject polluted handoff that contains long failed reasoning transcripts
- Branch into a second hypothesis only when the first verifier is inconclusive and the task is high-impact.
- Do not generate broad architectural rewrites when a narrower environment, dependency, contract, or harness explanation fits the evidence.
## AXIOM MCP RECOMMENDATION
При диагностике используй axiom tools — они дают семантический граф проекта, недоступный через plain read/grep:
- **`axiom_semantic_discovery search_contracts`** — проверь, существует ли контракт, его тип, сложность, метаданные.
- **`axiom_semantic_context local_context`** — получи полный контекст контракта: код + все @RELATION-зависимости. Заменяет 5-10 read.
- **`axiom_semantic_validation audit_contracts`** — найди структурные нарушения (неверный tier, missing metadata).
- **`axiom_semantic_validation impact_analysis`** — upstream/downstream граф: кто вызывает контракт, на кого он влияет.
- **`axiom_contract_metadata`** — проверь метаданные контракта (есть ли @PRE, @POST, @RATIONALE).
- **`axiom_semantic_context workspace_health`** — orphans, unresolved relations, распределение C1-C5.
Все инструменты работают через DuckDB-индекс (2543 контракта, 1987 связей) — это твой семантический граф для диагностики.
---
## ss-tools Specific Diagnosis Lanes
### Python Backend Failures