diff --git a/docs/TODO-SYSTEM.md b/docs/TODO-SYSTEM.md index b5c42a4..da3179b 100644 --- a/docs/TODO-SYSTEM.md +++ b/docs/TODO-SYSTEM.md @@ -60,7 +60,7 @@ inject_todo_instructions: true # Include todo instructions in system prompt continuation_prompt: | # Optional: customize the continuation prompt [CONTINUE] You have unfinished tasks. Proceed with the next pending item. - Do not explain—just execute. + Do not explain; just execute. ``` ### Default Continuation Prompt @@ -229,6 +229,6 @@ automatically. If you're seeing loops: --- ## Additional Docs -- [Agents](./AGENTS.md) — Full agent configuration guide -- [Function Calling](./function-calling/TOOLS.md) — How tools work in Loki -- [Sessions](./SESSIONS.md) — How conversation state is managed +- [Agents](./AGENTS.md) - Full agent configuration guide +- [Function Calling](./function-calling/TOOLS.md) - How tools work in Loki +- [Sessions](./SESSIONS.md) - How conversation state is managed diff --git a/src/config/agent.rs b/src/config/agent.rs index bbb793e..0145bd6 100644 --- a/src/config/agent.rs +++ b/src/config/agent.rs @@ -25,7 +25,7 @@ You have built-in task tracking tools. Use them to track your progress:\n\ \n\ RULES:\n\ - Always create a todo list before starting work.\n\ -- Mark each task done as soon as you finish it — do not batch.\n\ +- Mark each task done as soon as you finish it; do not batch.\n\ - If you stop with incomplete tasks, the system will automatically prompt you to continue."; pub type AgentVariables = IndexMap;