@zenku/cli 0.1.1 → 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.
- package/LICENSE +9 -0
- package/README.md +44 -0
- package/package.json +9 -7
package/LICENSE
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Copyright (c) 2026 Zenku. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This software is proprietary and confidential. No part of this software may be
|
|
4
|
+
reproduced, distributed, or transmitted in any form or by any means, including
|
|
5
|
+
photocopying, recording, or other electronic or mechanical methods, without the
|
|
6
|
+
prior written permission of the copyright holder.
|
|
7
|
+
|
|
8
|
+
Unauthorized copying, modification, distribution, or use of this software, via
|
|
9
|
+
any medium, is strictly prohibited.
|
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,18 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zenku/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Zenku CLI — manage PocketBase services from the terminal.",
|
|
5
|
-
"license": "
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"bin": {
|
|
7
7
|
"zenku": "bin/zenku.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
|
-
"bin"
|
|
10
|
+
"bin",
|
|
11
|
+
"LICENSE",
|
|
12
|
+
"README.md"
|
|
11
13
|
],
|
|
12
14
|
"optionalDependencies": {
|
|
13
|
-
"@zenku/cli-darwin-arm64": "0.1.
|
|
14
|
-
"@zenku/cli-darwin-x64": "0.1.
|
|
15
|
-
"@zenku/cli-linux-arm64": "0.1.
|
|
16
|
-
"@zenku/cli-linux-x64": "0.1.
|
|
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"
|
|
17
19
|
}
|
|
18
20
|
}
|