@roam-research/roam-tools-core 0.6.2 → 0.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tools.js +1 -1
- package/package.json +1 -1
package/dist/tools.js
CHANGED
|
@@ -39,7 +39,7 @@ export function defineStandaloneTool(name, description, schema, action) {
|
|
|
39
39
|
};
|
|
40
40
|
}
|
|
41
41
|
// Note appended to all client tool descriptions
|
|
42
|
-
const GUIDELINES_NOTE = "\n\
|
|
42
|
+
const GUIDELINES_NOTE = "\n\nCall get_graph_guidelines first when starting work on a graph.";
|
|
43
43
|
// Data Tools (require graph/client; reusable across local + hosted MCP transports)
|
|
44
44
|
export const dataTools = [
|
|
45
45
|
defineTool("get_graph_guidelines", "IMPORTANT: Call this tool first when starting to work with a graph, before performing any other operations. Returns user-defined instructions and preferences for AI agents. The user may have specified naming conventions, preferred structures, or constraints that should guide your behavior. After receiving the response, follow the nextSteps field — it contains orientation actions you should take before proceeding.", GetGuidelinesSchema, getGuidelines),
|