clixad 0.0.1-beta.0
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/NOTICE +24 -0
- package/README.md +23 -0
- package/dist/clixad.mjs +3018 -0
- package/package.json +45 -0
package/NOTICE
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Clixad CLI
|
|
2
|
+
Copyright 2026 Clixad
|
|
3
|
+
|
|
4
|
+
This package includes a launcher (the `clixad code` command) that configures and
|
|
5
|
+
starts Kimi Code CLI, a separate work licensed under the Apache License,
|
|
6
|
+
Version 2.0:
|
|
7
|
+
|
|
8
|
+
Kimi Code CLI
|
|
9
|
+
Copyright 2025 Moonshot AI
|
|
10
|
+
https://github.com/MoonshotAI/kimi-cli
|
|
11
|
+
Licensed under the Apache License, Version 2.0
|
|
12
|
+
https://www.apache.org/licenses/LICENSE-2.0
|
|
13
|
+
|
|
14
|
+
Kimi CLI's source is neither vendored nor redistributed here: no Apache-2.0
|
|
15
|
+
licensed code is contained in or bundled into dist/clixad.mjs. The user installs
|
|
16
|
+
Kimi CLI separately (`uv tool install kimi-cli` / `pipx install kimi-cli`), and
|
|
17
|
+
`clixad code` writes a configuration file and launches that installed
|
|
18
|
+
executable.
|
|
19
|
+
|
|
20
|
+
"Kimi" is a trademark of Moonshot AI; its use here is nominative — it identifies
|
|
21
|
+
the software being launched — and does not imply affiliation with or endorsement
|
|
22
|
+
by Moonshot AI.
|
|
23
|
+
|
|
24
|
+
The Clixad CLI itself is UNLICENSED; all rights reserved. See README.md.
|
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# clixad
|
|
2
|
+
|
|
3
|
+
A terminal coding agent that routes model calls through the Clixad metering gateway.
|
|
4
|
+
|
|
5
|
+
**This is an early beta and is published under the `beta` dist-tag only.** There is deliberately no
|
|
6
|
+
`latest` tag yet, so `npx clixad` and `npm install clixad` do not resolve. To try the beta
|
|
7
|
+
explicitly:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g clixad@beta
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Requires Node.js >= 20.
|
|
14
|
+
|
|
15
|
+
## Status
|
|
16
|
+
|
|
17
|
+
Pre-release. Interfaces, commands and credit mechanics may change without notice between beta
|
|
18
|
+
versions.
|
|
19
|
+
|
|
20
|
+
## License
|
|
21
|
+
|
|
22
|
+
UNLICENSED — all rights reserved. Published to reserve the package name; no rights to use, copy,
|
|
23
|
+
modify or distribute are granted.
|