pluripo 0.1.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/LICENSE +16 -0
- package/README.md +39 -0
- package/bin/pluripo.js +8 -0
- package/dist/main.js +903 -0
- package/package.json +37 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Pluripo CLI — Proprietary License
|
|
2
|
+
Copyright (c) Pluripo. All rights reserved.
|
|
3
|
+
|
|
4
|
+
This software is closed-source and provided for use as a commercial product.
|
|
5
|
+
It is licensed, not sold. No license is granted to copy, modify, redistribute,
|
|
6
|
+
sublicense, sell, decompile, disassemble, or otherwise reverse-engineer this
|
|
7
|
+
software or any part of it, except to the limited extent that applicable law
|
|
8
|
+
expressly permits despite this restriction.
|
|
9
|
+
|
|
10
|
+
Use of this software is governed by the Pluripo Terms of Service at
|
|
11
|
+
https://pluripo.com/legal/tos. By installing or using it, you agree to those
|
|
12
|
+
terms.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
IMPLIED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
16
|
+
DAMAGES, OR OTHER LIABILITY ARISING FROM THE USE OF THE SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Pluripo CLI
|
|
2
|
+
|
|
3
|
+
Pluripo is an agentic coding tool. This package is the **terminal coding agent** —
|
|
4
|
+
an interactive chat agent that lives in your terminal, reads and edits your code
|
|
5
|
+
behind approvals, runs commands, and works through tasks with you.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npm i -g pluripo
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Requires Node.js 20 or newer.
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
Run it in your project directory:
|
|
18
|
+
|
|
19
|
+
```sh
|
|
20
|
+
pluripo
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
The first run walks you through signing in. From there, just describe what you
|
|
24
|
+
want — Pluripo plans, edits files, runs commands (asking first), and iterates.
|
|
25
|
+
|
|
26
|
+
To update to the latest version:
|
|
27
|
+
|
|
28
|
+
```sh
|
|
29
|
+
npm i -g pluripo@latest
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Learn more
|
|
33
|
+
|
|
34
|
+
Visit [pluripo.com](https://pluripo.com).
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
Closed-source commercial software. Use is governed by the
|
|
39
|
+
[Pluripo Terms of Service](https://pluripo.com/legal/tos). See `LICENSE`.
|
package/bin/pluripo.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// The built bundle (dist/main.js) is ESM — ink + yoga-layout use top-level
|
|
3
|
+
// await, which can't be emitted into CommonJS — so this CommonJS shim loads it
|
|
4
|
+
// via dynamic import() rather than require().
|
|
5
|
+
import("../dist/main.js").catch((err) => {
|
|
6
|
+
console.error(err);
|
|
7
|
+
process.exit(1);
|
|
8
|
+
});
|