@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.
Files changed (2) hide show
  1. package/README.md +18 -11
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,8 +1,12 @@
1
- # ideaspaces
1
+ # IdeaSpaces CLI
2
2
 
3
- > Persistent, searchable knowledge from the command line.
3
+ > Capture durable agent knowledge from the command line.
4
4
 
5
- `ideaspaces` is the CLI for [IdeaSpaces](https://ideaspaces.xyz) a place where teams of people and agents maintain shared understanding. A **space** is a git repository where knowledge compounds: notes are state, conversations are process, and the directory tree is how you navigate. This CLI is the fastest way to work with a space: clone it locally, edit and capture, search, push and pull, and talk to an agent — online or fully local.
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 login # authenticate
19
- ideaspaces clone alice/notes # clone a space to a local working copy
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 ideas.md # edit a note
23
- ideaspaces commit -m "" ideas.md # save the capture
24
- ideaspaces push # send your commits to the remote
25
- ideaspaces pull # integrate others' changes
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 clone on disk. Edits are yours until you `push`.
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.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
- "description": "IdeaSpaces CLI — persistent, searchable knowledge from the command line",
5
+ "description": "IdeaSpaces CLI — capture durable agent knowledge from the command line",
6
6
  "keywords": [
7
7
  "ideaspaces",
8
8
  "knowledge",