@zenku/cli 0.1.38 → 0.1.40

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.
Files changed (2) hide show
  1. package/README.md +9 -3
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -62,8 +62,11 @@ 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
- - **Library** AI agent memory: agents, knowledge nodes, sessions, messages, summaries
66
- - **Kanban** — Project management: projects, issues, boards, labels, comments, issue links
65
+ - **Agent + Agent Kit** Agent execution plus skill/agent/persona kit management
66
+ - **Library** — AI memory: agents, knowledge nodes, sessions, messages, summaries
67
+ - **Kanban + Jobs** — Project and queue management commands
68
+ - **Sessions + Schedule** — Claude transcript sync and local offline scheduler
69
+ - **Tooling** — MCP server, remote executor, relay keys, and direct tool execution
67
70
  - **RBAC** — Account and role management: accounts, members, invitations, roles
68
71
 
69
72
  ## Usage
@@ -71,8 +74,11 @@ If you used a custom `ZENKU_INSTALL_DIR`, remove it from there instead.
71
74
  ```
72
75
  zenku login # Interactive login
73
76
  zenku whoami # Show current user
74
- zenku library agents list # List AI agents
77
+ zenku library agents list # List AI agents
75
78
  zenku kanban issues list # List kanban issues
79
+ zenku jobs queues # List remote job queues
80
+ zenku schedule list # List local schedules
81
+ zenku mcp # Start stdio MCP server
76
82
  zenku accounts list # List RBAC accounts
77
83
  zenku --json library nodes list # JSON output (for scripts/AI agents)
78
84
  zenku --help # Show all commands
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zenku/cli",
3
- "version": "0.1.38",
3
+ "version": "0.1.40",
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.38",
17
- "@zenku/cli-darwin-x64": "0.1.38",
18
- "@zenku/cli-linux-arm64": "0.1.38",
19
- "@zenku/cli-linux-x64": "0.1.38"
16
+ "@zenku/cli-darwin-arm64": "0.1.40",
17
+ "@zenku/cli-darwin-x64": "0.1.40",
18
+ "@zenku/cli-linux-arm64": "0.1.40",
19
+ "@zenku/cli-linux-x64": "0.1.40"
20
20
  }
21
21
  }