@zenku/cli 0.1.2 → 0.1.4

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 (3) hide show
  1. package/LICENSE +30 -7
  2. package/README.md +44 -0
  3. package/package.json +8 -7
package/LICENSE CHANGED
@@ -1,9 +1,32 @@
1
- Copyright (c) 2026 Zenku. All rights reserved.
1
+ Copyright (c) 2026 Kai Zhao. All rights reserved.
2
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.
3
+ PROPRIETARY SOFTWARE LICENSE
7
4
 
8
- Unauthorized copying, modification, distribution, or use of this software, via
9
- any medium, is strictly prohibited.
5
+ This software and associated documentation files (the "Software") are the
6
+ proprietary and confidential property of Kai Zhao.
7
+
8
+ RESTRICTIONS
9
+
10
+ You may NOT, without prior written permission from the copyright holder:
11
+
12
+ 1. Copy, reproduce, or duplicate the Software or any portion thereof
13
+ 2. Modify, adapt, translate, or create derivative works based on the Software
14
+ 3. Distribute, sublicense, lease, rent, loan, or otherwise transfer the Software
15
+ 4. Reverse engineer, disassemble, decompile, or attempt to derive the source
16
+ code of the Software
17
+ 5. Remove or alter any proprietary notices, labels, or marks on the Software
18
+ 6. Use the Software for any commercial purpose
19
+ 7. Make the Software available to any third party
20
+
21
+ DISCLAIMER
22
+
23
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
27
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
28
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29
+
30
+ CONTACT
31
+
32
+ For licensing inquiries, please contact the copyright holder.
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.4",
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.4",
16
+ "@zenku/cli-darwin-x64": "0.1.4",
17
+ "@zenku/cli-linux-arm64": "0.1.4",
18
+ "@zenku/cli-linux-x64": "0.1.4"
18
19
  }
19
20
  }