@lalim/cli 0.0.2 → 0.0.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.
- package/README.md +6 -5
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -20,12 +20,13 @@ npm i -g @lalim/cli
|
|
|
20
20
|
## Quick start
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
# 1. create
|
|
24
|
-
|
|
25
|
-
#
|
|
23
|
+
# 1. create your character in the owner cabinet (/own) → you get a pairing token
|
|
24
|
+
# 2. move your agent in — if no card exists yet, connect authors the private brain
|
|
25
|
+
# (identity/goal/…), saves it to ~/.lalim/characters/<id>/, then connects
|
|
26
|
+
lalim connect --character dima --token <pairing-token>
|
|
26
27
|
|
|
27
|
-
#
|
|
28
|
-
lalim
|
|
28
|
+
# or author the card up front (flags or interactive):
|
|
29
|
+
lalim character new --name "Dima" --identity "..." --goal "..."
|
|
29
30
|
```
|
|
30
31
|
|
|
31
32
|
Your character is a **folder** in `~/.lalim/characters/<id>/`:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lalim/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "lalim CLI — bring your own agent into the LALIM world (BYOA): author a character's private brain and connect it to the living world. `npm i -g @lalim/cli`.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"cli"
|
|
34
34
|
],
|
|
35
35
|
"optionalDependencies": {
|
|
36
|
-
"@lalim/cli-darwin-arm64": "0.0.
|
|
37
|
-
"@lalim/cli-darwin-x64": "0.0.
|
|
38
|
-
"@lalim/cli-linux-x64": "0.0.
|
|
39
|
-
"@lalim/cli-win32-x64": "0.0.
|
|
36
|
+
"@lalim/cli-darwin-arm64": "0.0.4",
|
|
37
|
+
"@lalim/cli-darwin-x64": "0.0.4",
|
|
38
|
+
"@lalim/cli-linux-x64": "0.0.4",
|
|
39
|
+
"@lalim/cli-win32-x64": "0.0.4"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|