@ideaspaces/cli 0.1.0 → 0.1.1
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 +18 -11
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
|
-
#
|
|
1
|
+
# IdeaSpaces CLI
|
|
2
2
|
|
|
3
|
-
>
|
|
3
|
+
> Capture durable agent knowledge from the command line.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
The [Ideaspace Protocol](https://github.com/IdeaSpaces-xyz/ideaspace-protocol) is the open standard for how agents turn useful work into durable, portable knowledge. `ideaspaces` implements the common command-line mechanics: create and orient in a space, write and commit captures safely, then optionally publish, push, or pull.
|
|
6
|
+
|
|
7
|
+
A **space** is a git repository where knowledge compounds as ordinary Markdown. The CLI keeps the workflow local-first and scriptable; protocol-aware plugins use the protocol directly for local reads and rely on CLI capabilities for platform operations and transitional writes.
|
|
8
|
+
|
|
9
|
+
Want your agent to follow the standard automatically? Install [IdeaSpaces for Claude Code and Cowork](https://github.com/IdeaSpaces-xyz/claude-code-plugin) or [IdeaSpaces for Pi](https://github.com/IdeaSpaces-xyz/pi-is-space). Use this package directly for terminal workflows, automation, and integration development.
|
|
6
10
|
|
|
7
11
|
## Install
|
|
8
12
|
|
|
@@ -15,17 +19,20 @@ This installs the `ideaspaces` command. Node 20+ is required.
|
|
|
15
19
|
## Quick start
|
|
16
20
|
|
|
17
21
|
```sh
|
|
18
|
-
ideaspaces
|
|
19
|
-
|
|
20
|
-
cd notes
|
|
22
|
+
ideaspaces create my-space --yes # create the standard repository shape
|
|
23
|
+
cd my-space
|
|
21
24
|
ideaspaces navigate . # orient: what's here, what changed
|
|
22
|
-
ideaspaces write
|
|
23
|
-
ideaspaces commit -m "
|
|
24
|
-
|
|
25
|
-
|
|
25
|
+
ideaspaces write decisions/idea.md --content "Idea body text"
|
|
26
|
+
ideaspaces commit -m "Capture idea" decisions/idea.md
|
|
27
|
+
|
|
28
|
+
# Optional: host or collaborate remotely
|
|
29
|
+
ideaspaces login
|
|
30
|
+
ideaspaces publish
|
|
31
|
+
ideaspaces push
|
|
32
|
+
ideaspaces pull
|
|
26
33
|
```
|
|
27
34
|
|
|
28
|
-
Everything is local-first: your working copy is a real git
|
|
35
|
+
Everything is local-first: your working copy is a real git repository on disk. Captures are yours until you choose to publish or push them.
|
|
29
36
|
|
|
30
37
|
## Commands
|
|
31
38
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ideaspaces/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "IdeaSpaces CLI —
|
|
5
|
+
"description": "IdeaSpaces CLI — capture durable agent knowledge from the command line",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"ideaspaces",
|
|
8
8
|
"knowledge",
|