@ideaspaces/cli 0.1.1 → 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.
- package/README.md +8 -3
- package/bundle/ideaspaces.js +3585 -1353
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -22,6 +22,7 @@ This installs the `ideaspaces` command. Node 20+ is required.
|
|
|
22
22
|
ideaspaces create my-space --yes # create the standard repository shape
|
|
23
23
|
cd my-space
|
|
24
24
|
ideaspaces navigate . # orient: what's here, what changed
|
|
25
|
+
ideaspaces inspect work/Next.md # deepen one document, summary first
|
|
25
26
|
ideaspaces write decisions/idea.md --content "Idea body text"
|
|
26
27
|
ideaspaces commit -m "Capture idea" decisions/idea.md
|
|
27
28
|
|
|
@@ -41,7 +42,9 @@ Run `ideaspaces <command> --help` for full usage. `--json` is available on most
|
|
|
41
42
|
### Spaces & content
|
|
42
43
|
| Command | What it does |
|
|
43
44
|
|---|---|
|
|
44
|
-
| `clone <
|
|
45
|
+
| `clone <space-url> [dir]` | Clone an authorized Space by stable identity into a local working copy |
|
|
46
|
+
| `fork <space-url> [dir]` | Create and clone an independent current-content copy without source history |
|
|
47
|
+
| `update [--yes]` | Preview or apply maintained source updates to a fork without displacing local work |
|
|
45
48
|
| `clones` | List your local working copies |
|
|
46
49
|
| `create <name>` | Create a new space |
|
|
47
50
|
| `repos` | List spaces you can access |
|
|
@@ -58,14 +61,16 @@ Run `ideaspaces <command> --help` for full usage. `--json` is available on most
|
|
|
58
61
|
### Sync & publish
|
|
59
62
|
| Command | What it does |
|
|
60
63
|
|---|---|
|
|
64
|
+
| `sync` | Report where you, the Space, and a fork's recorded source stand — reads only, integrates nothing |
|
|
61
65
|
| `push` | Send your committed captures to the remote |
|
|
62
|
-
| `pull` | Integrate
|
|
66
|
+
| `pull` | Integrate changes from the fork's own Git remote |
|
|
63
67
|
| `publish` | Publish a local space to the server |
|
|
64
68
|
|
|
65
69
|
### Navigate & search
|
|
66
70
|
| Command | What it does |
|
|
67
71
|
|---|---|
|
|
68
72
|
| `navigate <path>` | Orient at a position — contract, awareness, what changed |
|
|
73
|
+
| `inspect <path>` | Inspect one local Markdown file by summary, outline, or selected section |
|
|
69
74
|
| `catalog` | List the nodes at a position |
|
|
70
75
|
| `ls [<path>]` | List files and folders under a path, typed (folder / repo / ideaspace) |
|
|
71
76
|
| `search <query>` | Full-text search (filename + BM25) over the local clone |
|
|
@@ -77,7 +82,7 @@ Run `ideaspaces <command> --help` for full usage. `--json` is available on most
|
|
|
77
82
|
|---|---|
|
|
78
83
|
| `conversation` | Start or continue a conversation (online or `--local`) |
|
|
79
84
|
| `conversations` | List conversations |
|
|
80
|
-
| `share` |
|
|
85
|
+
| `share` | Share a Space at a grade — explore, fork, or collaborate — and see who has it |
|
|
81
86
|
| `agents` | List agents available to you |
|
|
82
87
|
| `times` | Activity timeline |
|
|
83
88
|
|