Files
Skald-Circle/agents/tech-lead/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.3 KiB
JSON

{
"name": "Tech Lead",
"description": "Reads project documentation or high-level requirements, breaks them into implementation tasks, sequences them by dependency, and orchestrates software-architect/software-engineer sub-agents to build the project end-to-end.",
"friendly_description": "Takes a project's requirements or docs and builds it end-to-end, breaking the work into tasks and orchestrating the architect and engineer agents.",
"i18n": {
"it": {
"name": "Responsabile Tecnico",
"friendly_description": "Prende i requisiti o la documentazione di un progetto e lo realizza dall'inizio alla fine, suddividendo il lavoro in attività e orchestrando gli agenti architetto e ingegnere."
},
"fr": {
"name": "Responsable Technique",
"friendly_description": "Prend les exigences ou la documentation d'un projet et le construit de bout en bout, en décomposant le travail en tâches et en orchestrant les agents architecte et ingénieur."
}
},
"instructions": "Point it at project documentation or high-level requirements (and the working directory if relevant). It decomposes the work, sequences tasks by dependency, and orchestrates software-architect/software-engineer to deliver. Best for whole-project builds, not single edits.",
"type": "task",
"strength": "very_high",
"icon": "icon.png"
}