Files
Skald-Circle/agents/code-explorer/meta.json
T
dguiducci 5081ec2afe
Nightly Build / build (push) Successful in 6m50s
llm: drop model/agent scope matching; add instance-wide compaction model picker
Remove the scope system end-to-end (llm_models.scope column, agent meta
scope field, scope-based tier in model selection, UI checkboxes/pills):
it was only a soft ranking hint, had drifted (6 UI scopes vs 3 used by
agents, 'general' not even selectable) and duplicated what strength
already decides. Strength stays the single AUTO-selection axis.

Compaction: the summary model is now pickable from the Settings page
via a new PropertyType::LlmModel config property (registry key
compaction_model), instance-wide and live (no restart). Fallback chain:
explicit pick -> compaction.strength from config.yml -> priority order;
a deleted configured model degrades to AUTO. ContextCompactor reads the
key at compact time through GlobalConfigManager.
2026-07-25 10:48:09 +01:00

20 lines
1.1 KiB
JSON

{
"name": "Code Explorer",
"description": "Studies code, investigates bugs, analyses architecture, and produces structured Markdown reports in data/explorer/. No implementation, no planning — just analysis and reporting.",
"friendly_description": "Investigates a codebase or a bug and writes up what it finds as a structured report — analysis only, never touches the code.",
"i18n": {
"it": {
"name": "Esploratore di Codice",
"friendly_description": "Analizza un codebase o un bug e scrive un report strutturato — solo analisi, non tocca mai il codice."
},
"fr": {
"name": "Explorateur de Code",
"friendly_description": "Examine un codebase ou un bug et rédige un rapport structuré de ses découvertes — analyse uniquement, ne touche jamais au code."
}
},
"instructions": "Give it a concrete question or area to investigate (a bug, a module, an architecture concern). It writes a Markdown report to data/explorer/ and returns a summary. It never edits code or plans work.",
"type": "task",
"strength": "high",
"icon": "icon.png"
}