rrce-workflow 0.2.89 → 0.2.91
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/agent-core/docs/path-resolution.md +17 -4
- package/dist/index.js +745 -1141
- package/package.json +1 -2
|
@@ -42,10 +42,23 @@ Tool: search_knowledge
|
|
|
42
42
|
Args: { query: "your query", project: "<other-project>" }
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
45
|
+
## Resolution via MCP Tool (Highly Recommended)
|
|
46
|
+
|
|
47
|
+
If the "System Resolved Paths" table is missing or you suspect it might be outdated, use the `resolve_path` tool. This is the most robust way to determine the correct configuration, as it handles the logic for detecting global vs. local workspace modes.
|
|
48
|
+
|
|
49
|
+
```
|
|
50
|
+
Tool: resolve_path
|
|
51
|
+
Args: { path: "/absolute/path/to/workspace/root" }
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Or if you only know the project name:
|
|
55
|
+
|
|
56
|
+
```
|
|
57
|
+
Tool: resolve_path
|
|
58
|
+
Args: { project: "project-name" }
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
The tool returns a JSON object containing `RRCE_DATA`, `RRCE_HOME`, `WORKSPACE_ROOT`, and `storage_mode`.
|
|
49
62
|
|
|
50
63
|
## Common Paths Reference
|
|
51
64
|
|