construct-shader-graph-mcp 0.5.0 → 0.7.0
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/package.json +1 -1
- package/src/guidance/skill.md +2 -2
- package/src/server.mjs +1 -1
package/package.json
CHANGED
package/src/guidance/skill.md
CHANGED
|
@@ -186,8 +186,8 @@ Side-effecting calls:
|
|
|
186
186
|
When the model does not know which node type to use:
|
|
187
187
|
|
|
188
188
|
- Prefer `nodeTypes.search(query)` to search by concept.
|
|
189
|
-
- Use `nodeTypes.list()`
|
|
190
|
-
- Use `nodeTypes.get(typeKey)` to inspect one exact type before creating it.
|
|
189
|
+
- Use `nodeTypes.list()` only for lightweight discovery of available names/categories/tags.
|
|
190
|
+
- Use `nodeTypes.get(typeKey)` to inspect one exact type in full before creating it.
|
|
191
191
|
- Use `nodes.search(query)` as a convenience alias for node type search.
|
|
192
192
|
- Use `uniforms.getNodeTypes()` to discover generated uniform-backed node types.
|
|
193
193
|
- Use `customNodes.list()` to discover reusable custom node definitions already in the project.
|
package/src/server.mjs
CHANGED
|
@@ -318,7 +318,7 @@ function createToolDefinitions() {
|
|
|
318
318
|
const response = await invokeSession(session, method, args);
|
|
319
319
|
const result = {
|
|
320
320
|
sessionId: session.sessionId,
|
|
321
|
-
project: session.project,
|
|
321
|
+
// project: session.project,
|
|
322
322
|
method,
|
|
323
323
|
args,
|
|
324
324
|
durationMs: response.durationMs ?? 0,
|