main
md 38 lines 1.95 KB
Rendered Raw
1 # Tiny Local Agent Profile DOX
2
3 ## Purpose
4
5 - Own the bundled Tiny Local profile for small/local chat models.
6 - Keep local-model behavior prompt-only and isolated from core framework execution.
7
8 ## Ownership
9
10 - `agent.yaml` owns profile metadata for discovery and profile switching.
11 - `prompts/agent.system.main.communication.md` owns the local-model communication contract.
12 - `prompts/agent.system.main.solving.md` owns the local-model problem-solving contract and suppresses inherited visible reasoning requirements.
13 - `prompts/fw.msg_repeat.md` owns Tiny Local's profile-specific recovery instructions when the framework rejects a duplicate assistant message.
14 - `prompts/agent.system.tools.md` owns the Tiny Local tools wrapper and final output-shape reminder after tool listing.
15 - `prompts/agent.system.tool.*.md` files own Tiny Local-specific tool examples that avoid inherited reasoning fields and repeated writes.
16
17 ## Local Contracts
18
19 - Preserve the normal Agent Zero tool-call shape: `tool_name` plus `tool_args`.
20 - Do not add parser repair, duplicate suppression runtime, model transport, or text-editor runtime behavior here.
21 - Duplicate-message handling may be tightened through profile prompts only.
22 - Keep prompt text short enough for small local models to follow.
23 - Treat continuation requests such as `proceed` or `continue` as commands to execute the next unfinished step, not as prompts for another status response.
24 - Do not include user-specific provider names, API keys, local paths, or secrets.
25
26 ## Work Guidance
27
28 - Prefer prompt wording changes over new files when tightening this profile, except when replacing inherited tool examples for local-model compliance.
29 - Keep this profile suitable for Ollama, LM Studio, Qwen, and comparable local models.
30
31 ## Verification
32
33 - Render the `tiny-local` system prompt after communication prompt changes.
34 - Run `pytest tests/test_default_prompt_budget.py` for prompt and profile regressions.
35
36 ## Child DOX Index
37
38 No child DOX files.