|
Entropic 2.3.8
Local-first agentic inference engine
|
Tool for signaling task completion. More...


Public Member Functions | |
| CompleteTool (ToolDefinition def) | |
| Construct from tool definition. | |
| ServerResponse | execute (const std::string &args_json) override |
| Execute completion signal. | |
Public Member Functions inherited from entropic::ToolBase | |
| ToolBase (ToolDefinition def) | |
| Construct with a pre-built definition. | |
| const std::string & | name () const |
| Get the tool name. | |
| const ToolDefinition & | definition () const |
| Get the full tool definition. | |
| virtual std::string | anchor_key (const std::string &args_json) const |
| Generate anchor key for this tool result. | |
| virtual MCPAccessLevel | required_access_level () const |
| Minimum access level required to execute this tool. | |
Additional Inherited Members | |
Protected Attributes inherited from entropic::ToolBase | |
| ToolDefinition | definition_ |
| Tool definition. | |
Tool for signaling task completion.
Definition at line 368 of file entropic_server.cpp.
|
inlineexplicit |
Construct from tool definition.
| def | Tool definition loaded from entropic/complete.json. |
Definition at line 376 of file entropic_server.cpp.
|
overridevirtual |
Execute completion signal.
Parse summary and emit completion directives.
| args_json | JSON with "summary". |
Issue #10 (v2.1.4): also forwards coverage_gap and suggested_files into the result JSON so the engine's directive builder can populate the typed CompleteDirective fields. The engine then suppresses auto-relay when coverage_gap is set, injecting a [COVERAGE GAP] user message into the lead context instead.
| args_json | JSON with "summary" and optional "coverage_gap" / "suggested_files". |
Implements entropic::ToolBase.
Definition at line 405 of file entropic_server.cpp.