@clickzetta/cz-cli-darwin-arm64 0.3.80 → 0.3.83
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/bin/cz-cli +0 -0
- package/bin/skills/cz-cli/SKILL.md +4 -2
- package/package.json +1 -1
package/bin/cz-cli
CHANGED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: cz-cli
|
|
3
|
-
description: "
|
|
3
|
+
description: "Delegate ClickZetta Lakehouse OPERATIONS (run SQL, manage tables/schemas, create Studio tasks, set up sync/ingest pipelines, configure profiles) to the cz-cli agent. TRIGGER when user wants to EXECUTE something on Lakehouse: query data, create/alter tables, deploy tasks, build pipelines, set up a new connection. SKIP when user is developing the cz-cli tool itself (cwd is the cz-cli source repo, editing CLI source/tests, debugging build/install/unlink/permission issues), or only discussing cz-cli design/code without wanting to run anything on Lakehouse."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# cz-cli — ClickZetta Lakehouse Subagent
|
|
@@ -124,9 +124,11 @@ Note: In non-TTY with `--format a2a` or `--format json`, async mode activates au
|
|
|
124
124
|
### Poll status
|
|
125
125
|
|
|
126
126
|
```bash
|
|
127
|
-
cz-cli agent session status <session_id>
|
|
127
|
+
cz-cli agent session status <session_id> [--wait]
|
|
128
128
|
```
|
|
129
129
|
|
|
130
|
+
By default this returns the current status once. With `--wait`, it keeps waiting and streams progress until completion or timeout.
|
|
131
|
+
|
|
130
132
|
While running:
|
|
131
133
|
```json
|
|
132
134
|
{"session_id": "01JXF3K...", "status": "busy", "progress": "$ cz-cli table list -o table"}
|