@sowonai/crewx-cli 0.4.0-dev.13 → 0.4.0-dev.14

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sowonai/crewx-cli",
3
- "version": "0.4.0-dev.13",
3
+ "version": "0.4.0-dev.14",
4
4
  "license": "MIT",
5
5
  "description": "SowonAI CrewX CLI - Bring Your Own AI(BYOA) team in Slack/IDE(MCP) with your existing subscriptions",
6
6
  "private": false,
@@ -64,7 +64,7 @@
64
64
  "prepack": "npm run build"
65
65
  },
66
66
  "dependencies": {
67
- "@sowonai/crewx-sdk": "^0.1.0-dev.7",
67
+ "@sowonai/crewx-sdk": "^0.1.0-dev.8",
68
68
  "@sowonai/nestjs-mcp-adapter": "^0.1.3",
69
69
  "@modelcontextprotocol/sdk": "^1.0.0",
70
70
  "@nestjs/common": "^11.0.0",
@@ -10,9 +10,9 @@ import { fileURLToPath } from 'url';
10
10
  const scriptDir = dirname(fileURLToPath(import.meta.url));
11
11
  const packageRoot = dirname(scriptDir);
12
12
  const candidateTemplateSources = [
13
- join(packageRoot, 'templates'),
14
13
  join(dirname(packageRoot), 'templates'),
15
14
  join(dirname(dirname(packageRoot)), 'templates'),
15
+ join(packageRoot, 'templates'),
16
16
  ];
17
17
  const sourceTemplatesDir = candidateTemplateSources.find(candidate => existsSync(candidate));
18
18
  const targetTemplatesDir = join(packageRoot, 'templates');
@@ -1,25 +1,13 @@
1
- # CrewX Custom Agents Configuration
2
- #
3
- # This file is for your project-specific custom agents.
4
- # Built-in agents (@claude, @gemini, @copilot, @crewx) are always available
5
- # and don't need to be defined here.
1
+ # CrewX Minimal Layout Definition
6
2
  #
7
- # Add your custom agents below:
3
+ # This layout provides a lightweight structure that simply wraps the agent prompt
4
+ # and preserves backward compatibility with inline system prompts.
8
5
 
9
- agents: []
10
- # Example custom agent:
11
- # - id: "my_agent"
12
- # name: "My Custom Agent"
13
- # role: "developer"
14
- # team: "My Team"
15
- # working_directory: "./"
16
- # options:
17
- # query:
18
- # - "--add-dir=."
19
- # inline:
20
- # type: "agent"
21
- # provider: "claude"
22
- # model: "sonnet" # Optional: specify model
23
- # system_prompt: |
24
- # Your custom system prompt here...
6
+ layouts:
7
+ minimal: |
8
+ <crewx_system_prompt>
9
+ {{{agent.inline.prompt}}}
10
+ </crewx_system_prompt>
25
11
 
12
+ propsSchema: {}
13
+ defaultProps: {}