upd readme

This commit is contained in:
Luxferre
2026-03-23 08:52:04 +02:00
parent 56002c0af1
commit b273f3a304
+4
View File
@@ -243,6 +243,10 @@ Speed, robustness, platform support. Writing the same in C would involve a lot m
Yes, but don't think much in terms of user-facing features. Think of it as a Lego: Sidekick gives you a good set of building blocks to orchestrate the flow, it's totally up to you what to do with these blocks. That's why it also exposes itself as an MCP server: to be called by other agents. You can even configure a Sidekick subagent to call another running instance of itself if you really need to. However, because of the subagentic architecture, you most probably won't need this. Yes, but don't think much in terms of user-facing features. Think of it as a Lego: Sidekick gives you a good set of building blocks to orchestrate the flow, it's totally up to you what to do with these blocks. That's why it also exposes itself as an MCP server: to be called by other agents. You can even configure a Sidekick subagent to call another running instance of itself if you really need to. However, because of the subagentic architecture, you most probably won't need this.
### Why does the `shell_exec` tool have a separate safety toggle but `write_file`/`edit_file` don't?
In production environments, the agent is supposed to run within a container without external mounts. As such, inadvertent writes to the container's ephemeral filesystem should not harm anything. On the other hand, these built-in tools allow the LLMs to optimize some processes by caching the data to reduce the amount of iterations and outside calls.
### Is Sidekick going to include a more beautiful TUI application, tailored for coder's needs (like OpenCode, Claude Code, Gemini CLI, Qwen Code etc)? ### Is Sidekick going to include a more beautiful TUI application, tailored for coder's needs (like OpenCode, Claude Code, Gemini CLI, Qwen Code etc)?
Yes, there are plans to implement something like that once the core agentic functionality is polished. It may be a totally separate application or a `sidekick-tui` evolution. The current `sidekick-tui` is more tailored for testing your agent configurations (`config.toml` and `prompt.toml`) without having to spin up the MCP server. Yes, there are plans to implement something like that once the core agentic functionality is polished. It may be a totally separate application or a `sidekick-tui` evolution. The current `sidekick-tui` is more tailored for testing your agent configurations (`config.toml` and `prompt.toml`) without having to spin up the MCP server.