@zenku/cli 0.1.12 → 0.1.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/README.md +2 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -62,7 +62,7 @@ If you used a custom `ZENKU_INSTALL_DIR`, remove it from there instead.
|
|
|
62
62
|
|
|
63
63
|
- **Profile Management** — Named connection profiles for Zenku services
|
|
64
64
|
- **Authentication** — Password, OTP, and OAuth2 (PKCE) login flows with automatic token refresh
|
|
65
|
-
- **Vault** — AI agent memory: agents, knowledge nodes, sessions, messages,
|
|
65
|
+
- **Vault** — AI agent memory: agents, knowledge nodes, sessions, messages, summaries
|
|
66
66
|
- **Kanban** — Project management: projects, issues, boards, labels, comments, issue links
|
|
67
67
|
- **RBAC** — Account and role management: accounts, members, invitations, roles
|
|
68
68
|
|
|
@@ -74,6 +74,7 @@ zenku whoami # Show current user
|
|
|
74
74
|
zenku vault agents list # List AI agents
|
|
75
75
|
zenku kanban issues list # List kanban issues
|
|
76
76
|
zenku accounts list # List RBAC accounts
|
|
77
|
+
zenku --json vault nodes list # JSON output (for scripts/AI agents)
|
|
77
78
|
zenku --help # Show all commands
|
|
78
79
|
```
|
|
79
80
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zenku/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"description": "Zenku CLI — manage PocketBase services from the terminal.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"bin": {
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
"README.md"
|
|
14
14
|
],
|
|
15
15
|
"optionalDependencies": {
|
|
16
|
-
"@zenku/cli-darwin-arm64": "0.1.
|
|
17
|
-
"@zenku/cli-darwin-x64": "0.1.
|
|
18
|
-
"@zenku/cli-linux-arm64": "0.1.
|
|
19
|
-
"@zenku/cli-linux-x64": "0.1.
|
|
16
|
+
"@zenku/cli-darwin-arm64": "0.1.14",
|
|
17
|
+
"@zenku/cli-darwin-x64": "0.1.14",
|
|
18
|
+
"@zenku/cli-linux-arm64": "0.1.14",
|
|
19
|
+
"@zenku/cli-linux-x64": "0.1.14"
|
|
20
20
|
}
|
|
21
21
|
}
|