@zenku/cli 0.1.2 → 0.1.3

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 +44 -0
  2. package/package.json +8 -7
package/README.md ADDED
@@ -0,0 +1,44 @@
1
+ # @zenku/cli
2
+
3
+ Multi-service CLI for managing PocketBase-backed applications from the terminal.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install -g @zenku/cli
9
+ ```
10
+
11
+ Or run without installing:
12
+
13
+ ```bash
14
+ npx @zenku/cli --help
15
+ ```
16
+
17
+ Or install via shell script (no Node.js required):
18
+
19
+ ```bash
20
+ curl -fsSL https://raw.githubusercontent.com/kaiz11/hikari/main/apps/zenku-cli/install.sh | sh
21
+ ```
22
+
23
+ ## Features
24
+
25
+ - **Profile Management** — Named connection profiles pointing to PocketBase instances and service APIs
26
+ - **Authentication** — Password, OTP, and OAuth2 (PKCE) login flows with automatic token refresh
27
+ - **Vault** — AI agent memory: agents, knowledge nodes, sessions, messages, observations, summaries
28
+ - **Kanban** — Project management: projects, issues, boards, labels, comments, issue links
29
+ - **RBAC** — Account and role management: accounts, members, invitations, roles
30
+
31
+ ## Usage
32
+
33
+ ```
34
+ zenku login # Interactive login
35
+ zenku whoami # Show current user
36
+ zenku vault agents list # List AI agents
37
+ zenku kanban issues list # List kanban issues
38
+ zenku accounts list # List RBAC accounts
39
+ zenku --help # Show all commands
40
+ ```
41
+
42
+ ## License
43
+
44
+ Proprietary — see [LICENSE](./LICENSE).
package/package.json CHANGED
@@ -1,19 +1,20 @@
1
1
  {
2
2
  "name": "@zenku/cli",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Zenku CLI — manage PocketBase services from the terminal.",
5
- "license": "UNLICENSED",
5
+ "license": "SEE LICENSE IN LICENSE",
6
6
  "bin": {
7
7
  "zenku": "bin/zenku.js"
8
8
  },
9
9
  "files": [
10
10
  "bin",
11
- "LICENSE"
11
+ "LICENSE",
12
+ "README.md"
12
13
  ],
13
14
  "optionalDependencies": {
14
- "@zenku/cli-darwin-arm64": "0.1.2",
15
- "@zenku/cli-darwin-x64": "0.1.2",
16
- "@zenku/cli-linux-arm64": "0.1.2",
17
- "@zenku/cli-linux-x64": "0.1.2"
15
+ "@zenku/cli-darwin-arm64": "0.1.3",
16
+ "@zenku/cli-darwin-x64": "0.1.3",
17
+ "@zenku/cli-linux-arm64": "0.1.3",
18
+ "@zenku/cli-linux-x64": "0.1.3"
18
19
  }
19
20
  }