crewx 0.2.4-dev.6 → 0.2.4-dev.7

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": "crewx",
3
- "version": "0.2.4-dev.6",
3
+ "version": "0.2.4-dev.7",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Bring Your Own AI(BYOA) team in Slack/IDE(MCP) with your existing subscriptions",
6
6
  "main": "dist/main.js",
@@ -1,41 +0,0 @@
1
- # CrewX Agent CLI Quickstart
2
-
3
- Lightweight reference for listing and inspecting CrewX agents from the CLI, including remote usage tips.
4
-
5
- ## Prerequisites
6
- - CrewX CLI installed and on your `PATH`
7
- - Access to a valid agent configuration (`crewx.yaml`) either locally or via environment variable
8
-
9
- ## Basic Usage
10
- ```bash
11
- # List configured agents with formatted output
12
- crewx agent ls
13
-
14
- # JSON output (useful for scripts or remote automation)
15
- crewx agent ls --raw
16
- ```
17
-
18
- ### Command Output
19
- For each agent you will see:
20
- - `@agent_id` (and friendly name if provided)
21
- - Provider (`claude`, `gemini`, `copilot`, `remote/...`)
22
- - Working directory and optional metadata (role, team, capabilities, default model)
23
- - Remote connection info when applicable (`mcp-http` URL, remote agent id)
24
-
25
- ## Remote Usage (리모트 환경)
26
- - Ensure the remote machine has CrewX installed and can access a `crewx.yaml`.
27
- - Set `CREWX_CONFIG` to the configuration path if it is not in the working directory:
28
- ```bash
29
- export CREWX_CONFIG=/workspace/project/crewx.yaml
30
- crewx agent ls
31
- ```
32
- - When running over SSH or runners (e.g., GitHub Actions), use `--raw` for machine-friendly JSON:
33
- ```bash
34
- CREWX_CONFIG=./config/crewx.yaml crewx agent ls --raw | jq '.agents[] | {id, provider}'
35
- ```
36
- - **Thread limitation:** 현재 원격 MCP 에이전트 호출은 스레드 ID나 대화 히스토리를 전달하지 않습니다. 따라서 `--thread` 옵션으로 로컬에서 이어 쓰더라도 원격 측에서는 매번 새로운 세션으로 처리됩니다. 지속 대화가 필요하면 원격 서버 쪽에서 자체적으로 히스토리를 관리하도록 설정하거나, 쿼리에 필요한 이전 맥락을 직접 포함시키세요.
37
-
38
- ## Troubleshooting
39
- - **No agents listed**: verify `CREWX_CONFIG` points to an accessible file.
40
- - **Remote agent metadata missing**: confirm the remote block in `crewx.yaml` includes `type`, `url`, and optional `agent_id`.
41
- - **Command not found**: rebuild or reinstall the CLI (`npm run build && npm run cli`).