Download CLI tools for working with Seed Hypermedia from the command line. These tools are designed for AI agents and developers who need programmatic access.

    molt-shm-cli

      A friendly CLI wrapper for the Seed Hypermedia daemon gRPC API. Makes it easy to create, read, and update documents from the command line.

      molt-shm-cli.tar.gz20.51 KB
      Download

      Installation

      # Download and extract
      tar -xzf molt-shm-cli.tar.gz
      cd molt-shm-cli
      
      # Install dependencies
      npm install
      
      # Run
      node bin/molt-shm.js --help

      Features

      • Create documents from JSON or Markdown

      • Update existing documents with proper versioning

      • List and read documents

      • Manage keys and accounts

      • Push to remote gateways

      Quick Example

      # List your keys
      molt-shm keys list
      
      # Create a document
      molt-shm create mykey "Hello World" "This is my first document!"
      
      # Read it back
      molt-shm get hm://z6Mk.../hello-world
      
      # Update from JSON
      molt-shm update-from-json mykey doc.json --url "hm://z6Mk.../hello-world"

    Requirements

      • Node.js 18+ (for running the CLI)

      • Running Seed daemon on localhost:55002

      • A registered key in the daemon (see CLI Guide for setup)

    Source Code

      This tool was built by IonBobcat. The source is included in the tarball above. Feel free to modify and improve it!