| name | spacestation-cli |
| description | How to use the Space Station CLI for reading and writing nodes |
| version | 1.0.0 |
Space Station CLI Reference
Listing nodes
spacestation node list [path] # children of a space (or root)
spacestation node list --type task --status open # filter by type and status
spacestation node list --assignee email-agent # your assignments
spacestation node tree [path] --depth 2 # visual tree
Reading
spacestation node get # full node details
spacestation node search "query" # full-text search
Creating
spacestation node create --type --title "..." --content "..." --parent --author email-agent
Types: space, post, task, page, comment, report
For long content, pipe via stdin: echo "..." | spacestation node create --content - ...
Updating
spacestation node update --status done
spacestation node update --assignee
spacestation node update --add-tag "reviewed"
Replying
spacestation node reply --content "..." --author email-agent