@crewx/sdk 0.8.0 → 0.8.1-rc.1
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/README.md +584 -584
- package/dist/esm/index.js +35 -35
- package/dist/index.d.ts +2 -0
- package/dist/index.js +35 -35
- package/dist/internal/windows-spawn.d.ts +39 -0
- package/package.json +1 -1
- package/src/schemas/hooks.schema.json +59 -59
- package/templates/agents/default.yaml +500 -490
- package/templates/agents/minimal.yaml +16 -16
- package/templates/documents/crewx-manual.md +2278 -0
- package/templates/documents/crewx-quick-guide.md +147 -0
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
# CrewX Minimal Layout Definition
|
|
2
|
-
#
|
|
3
|
-
# This layout provides a lightweight structure that simply wraps the agent prompt
|
|
4
|
-
# and preserves backward compatibility with inline system prompts.
|
|
5
|
-
|
|
6
|
-
layouts:
|
|
7
|
-
minimal: |
|
|
8
|
-
<system_prompt key="{{vars.security_key}}">
|
|
9
|
-
{{{agent.inline.prompt}}}
|
|
10
|
-
</system_prompt>
|
|
11
|
-
|
|
12
|
-
{{#if vars.user_input}}
|
|
13
|
-
<user_query key="{{vars.security_key}}">
|
|
14
|
-
{{{vars.user_input}}}
|
|
15
|
-
</user_query>
|
|
16
|
-
{{/if}}
|
|
1
|
+
# CrewX Minimal Layout Definition
|
|
2
|
+
#
|
|
3
|
+
# This layout provides a lightweight structure that simply wraps the agent prompt
|
|
4
|
+
# and preserves backward compatibility with inline system prompts.
|
|
5
|
+
|
|
6
|
+
layouts:
|
|
7
|
+
minimal: |
|
|
8
|
+
<system_prompt key="{{vars.security_key}}">
|
|
9
|
+
{{{agent.inline.prompt}}}
|
|
10
|
+
</system_prompt>
|
|
11
|
+
|
|
12
|
+
{{#if vars.user_input}}
|
|
13
|
+
<user_query key="{{vars.security_key}}">
|
|
14
|
+
{{{vars.user_input}}}
|
|
15
|
+
</user_query>
|
|
16
|
+
{{/if}}
|