Skip to main content

Command line wallet tooling built on the pollyweb library.

Project description

pollyweb-cli

pollyweb-cli provides the pw command, a small wallet-style CLI built on top of the pollyweb Python package.

It helps you:

  • create a local PollyWeb key pair
  • bind that identity to a PollyWeb-enabled domain
  • send an echo request to a domain and verify the signed reply
  • send a signed PollyWeb message from a file
  • listen for notifier chat events over AppSync Events
  • send signed shell commands to a remote domain

Install

Install the CLI globally from PyPI with pipx:

pipx install pollyweb-cli

Or install it globally with pip:

python3 -m pip install pollyweb-cli

After installation, the CLI is available as:

pw --help

Before running any pw command, the CLI checks PyPI for a newer published pollyweb-cli release. If it finds one and stdin is interactive, it prompts to upgrade first, installs the newer release into the current Python environment, and then reruns the original pw ... command on the upgraded code. If you decline, the CLI remembers that target release in ~/.pollyweb/declined-upgrades.yaml and stops asking again until a newer release appears.

To confirm which release is installed:

pw --version

For more setup details, see docs/install.md.

Quick Start

Create your local key pair:

pw config

This writes your keys to:

  • ~/.pollyweb/private.pem
  • ~/.pollyweb/public.pem

Bind your wallet to a domain:

pw bind vault.example.com

This sends a signed Bind@Vault request to https://pw.vault.example.com/inbox using the compact public-key value in the request body. The command now uses pollyweb.Wallet.send() directly, so when there is no wallet-specific sender yet it sends From: Anonymous with the standard PollyWeb schema and stores only the UUID portion of the returned bind token in ~/.pollyweb/binds.yaml. Rebinding the same domain replaces the existing bind for that domain unless the server returns a different Schema, in which case both entries are kept.

You can also use the PollyWeb shorthand domain suffix:

pw bind any-hoster.dom

That alias is normalized to any-hoster.pollyweb.org before signing, delivery, and local bind storage.

Open an interactive shell against a domain:

pw shell vault.example.com

Listen for notifier chat events on the configured wallet channel:

pw chat

Override the configured notifier for a single chat session:

pw chat notifier.example.com --debug --test

Publish a one-shot "TEST" event immediately after the websocket connection is acknowledged, then keep listening:

pw chat --test

Send a one-shot echo request and verify the synchronous signed response:

pw echo vault.example.com

This sends a signed Echo@Domain message to https://pw.<domain>/inbox, expects a synchronous PollyWeb message in return, verifies the reply signature using the responding domain's DKIM key, and checks that the response From, To, Subject, and Correlation values match the target domain and the original request.

Send a signed message from a file:

pw msg ./message.yaml

This reads a YAML, JSON, or Python message definition, or you can pass a raw JSON object string or inline Key:Value fields. The CLI signs the message with the configured wallet key through pollyweb.Wallet.send(), sends it to https://pw.<To>/inbox, and prints the raw synchronous response body.

pw msg '{"To":"vault.example.com","Subject":"Echo@Domain","Body":{"Ping":"pong"}}'
pw msg To:any-domain.org Subject:topic@role DynamicBodyProperty:123
pw msg to:any-domain.dom subject:Echo@Domain --debug

For pw msg, inline header keys like to and subject are matched case-insensitively, and a To domain ending in .dom is expanded to .pollyweb.org before signing and sending. Because the command now follows wallet semantics directly, From must be omitted, Anonymous, or a UUID bind value.

Run a wrapped message test fixture:

pw test ./test.yaml

This reads a YAML file with Outbound and optional Inbound sections. The CLI sends only Outbound with the same wallet-backed rules as pw msg, then if Inbound is present it parses the synchronous JSON response and verifies that the expected Inbound fields appear in the returned payload. Fixtures can also use {BindOf(domain)} string placeholders, which resolve against ~/.pollyweb/binds.yaml with the same canonical domain normalization as pw bind.

Each command you enter is parsed into a base Command plus an Arguments dictionary, then sent as a signed Shell@Domain message whose From header is set to the first stored bind for that domain. Long flags like --all 123 become {"all":"123"}, short flags like -a 123 become {"a":"123"}, key=value tokens like a=123 become {"a":"123"}, and plain positional arguments remain indexed as {"0":"value"}. pw shell also keeps the last 20 commands for that exact domain in ~/.pollyweb/history/, so you can use the up/down arrows to revisit recent commands. Commands are recorded before the network request is sent, which means failed requests still appear in that domain's history.

To inspect the signed shell request and response for each command as colorized, indented YAML, including the full inbox URL the POST is sent to:

pw shell --debug vault.example.com

Debugging Bind Requests

Use --debug with pw bind to print the outbound request payload, the full inbox URL the POST is sent to, and the inbound response body as colorized, indented YAML:

pw bind --debug vault.example.com

This is useful when you want to inspect the exact message contents being sent or troubleshoot an unexpected server response.

Command Summary

  • pw config generates a PollyWeb key pair in ~/.pollyweb
  • pw config --force replaces an existing key pair
  • pw bind <domain> requests and stores a bind token for a domain
  • pw bind --debug <domain> shows the target inbox URL plus bind request and response payloads as colorized YAML
  • pw echo <domain> sends Echo@Domain and verifies the signed synchronous response
  • pw echo --debug <domain> shows the target inbox URL plus echo request and response payloads as colorized YAML
  • pw msg <message...> sends a signed message from a YAML, JSON, or Python file, a JSON object string, or inline Key:Value fields
  • pw msg --debug <message...> shows the target inbox URL plus message request and response payloads as colorized YAML
  • pw test <path> sends a wrapped Outbound fixture and verifies the returned payload against Inbound
  • pw test --debug <path> shows the target inbox URL plus test request and response payloads as colorized YAML
  • pw chat listens for AppSync Events on the configured notifier and wallet channel
  • pw chat [domain] optionally overrides Helpers.Notifier for that run
  • pw chat --test publishes a "TEST" event immediately after connecting, then listens
  • pw shell <domain> starts an interactive remote shell session
  • pw shell <domain> remembers the last 20 commands per domain for arrow-key navigation
  • pw shell --debug <domain> shows the target inbox URL plus shell request and response payloads as colorized YAML
  • pw --version prints the installed CLI version after the same upgrade preflight check used by other pw commands

For more examples and command behavior, see docs/usage.md and the command-specific guides in docs/commands/.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pollyweb_cli-0.1.66.tar.gz (48.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pollyweb_cli-0.1.66-py3-none-any.whl (33.5 kB view details)

Uploaded Python 3

File details

Details for the file pollyweb_cli-0.1.66.tar.gz.

File metadata

  • Download URL: pollyweb_cli-0.1.66.tar.gz
  • Upload date:
  • Size: 48.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pollyweb_cli-0.1.66.tar.gz
Algorithm Hash digest
SHA256 d5ee567019ce766644b2dca90cf47315cfc7bfdc530cc69eded1ad7ef7d3fee9
MD5 29b78b30cf5fab81186da20c0412f014
BLAKE2b-256 f3d9139335ea823b90621d5e8a78834376c566b339afbd610e86d467dfb9c42f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pollyweb_cli-0.1.66.tar.gz:

Publisher: publish.yml on pollycore/wallet-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pollyweb_cli-0.1.66-py3-none-any.whl.

File metadata

  • Download URL: pollyweb_cli-0.1.66-py3-none-any.whl
  • Upload date:
  • Size: 33.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pollyweb_cli-0.1.66-py3-none-any.whl
Algorithm Hash digest
SHA256 cb96b58f6556e74ec975d1f28061af8aab556068d097d8a6394104a9f52ea717
MD5 e7063452003b5f714ead34fe1f0f3454
BLAKE2b-256 3118f5921b8c07aeed0cb25237f9273cd6257e74afe01ec5ea4bfb88ea7f7633

See more details on using hashes here.

Provenance

The following attestation bundles were made for pollyweb_cli-0.1.66-py3-none-any.whl:

Publisher: publish.yml on pollycore/wallet-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page