@crewx/sdk 0.8.9-rc.8 → 0.8.9-rc.9
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/esm/index.js +21 -21
- package/dist/facade/Crewx.d.ts +1 -0
- package/dist/index.js +21 -21
- package/package.json +1 -1
- package/templates/agents/default.yaml +9 -0
package/package.json
CHANGED
|
@@ -37,6 +37,15 @@ layouts:
|
|
|
37
37
|
{{#if agent.workingDirectory}}<working_directory>{{{agent.workingDirectory}}}</working_directory>{{/if}}
|
|
38
38
|
</identity>
|
|
39
39
|
|
|
40
|
+
{{#if vars.crewx_caller_workspace_path}}
|
|
41
|
+
<dispatched_from>
|
|
42
|
+
<path>{{{vars.crewx_caller_workspace_path}}}</path>
|
|
43
|
+
{{#if vars.crewx_caller_workspace_id}}<id>{{{vars.crewx_caller_workspace_id}}}</id>{{/if}}
|
|
44
|
+
{{#if vars.crewx_caller_workspace_name}}<name>{{{vars.crewx_caller_workspace_name}}}</name>{{/if}}
|
|
45
|
+
<note>This is the caller's workspace (dispatch origin), NOT your home directory. Your working_directory is where you should run commands. Read dispatcher documents using absolute paths from the path above.</note>
|
|
46
|
+
</dispatched_from>
|
|
47
|
+
{{/if}}
|
|
48
|
+
|
|
40
49
|
{{#if agentMetadata.specialties.length}}
|
|
41
50
|
<specialties>
|
|
42
51
|
{{#each agentMetadata.specialties}}
|