Pulse
Pulse is a permissioned coding-agent CLI for working on software repositories. It combines repository-aware planning, durable task state, explicit mutation controls, sandboxed command execution, provider routing, audit trails, and cost tracking in one Python package.
Public beta — 0.1.1: Pulse is supported for controlled, local, single-user use. The remote worker and VS Code extension are included for evaluation and development, but they are not supported as multi-tenant or unattended production services.
Requirements
- Python 3.11, 3.12, or 3.13
- An API key for the model provider you choose
- Docker or Podman for local isolated execution, or access to a configured Pulse remote worker
Install
Install the current beta from PyPI with pip:
python -m pip install pulse-coding-agent==0.1.2
The PyPI distribution name is pulse-coding-agent; the Python import and
installed command are both pulse. Do not run pip install pulse: that name
belongs to an unrelated WSGI package published in 2009.
For an isolated command-line installation, use uv or pipx:
uv tool install pulse-coding-agent==0.1.2
Alternatively, use pipx install pulse-coding-agent==0.1.2.
Quick start
Run these commands from the repository you want Pulse to work on:
pulse login
pulse doctor --production --target local
pulse ask "Explain this repository and identify the highest-risk missing test"
After Google login, Pulse guides provider selection, model selection, and hidden
BYOK entry. New provider keys are stored in the native OS credential vault.
The official distribution already contains Pulse's Google Desktop OAuth client
credentials; installed users do not create a .env file or provide them. As
with every installed application, these identify the application but cannot be
kept confidential on end-user machines; PKCE protects authorization-code
exchange. Provider API keys are collected through hidden terminal input and are
not written to the project.
To run commands without installing Docker on the client workstation, configure a remote worker:
PULSE_REMOTE_URL=wss://sandbox.example.com
PULSE_REMOTE_TOKEN=<random token of at least 32 characters>
PULSE_TLS_CERT=/absolute/path/to/client.crt
PULSE_TLS_KEY=/absolute/path/to/client.key
PULSE_TLS_CA=/absolute/path/to/ca.crt
When those variables are set, Pulse tries the remote sandbox first and uses a local Docker/Podman engine only as a secure fallback. The remote worker host still requires Docker or Podman; execution never silently falls back to the client host.
Before allowing mutations or shell execution, review the proposed operation and its permission prompt. Treat model output, tool arguments, and repository content as untrusted input.
What the beta includes
- Repository indexing and context-aware conversations
- Durable plans, tasks, sessions, episodic memory, and recovery state
- Permission-gated file mutations with transactional rollback
- Host, Docker, Podman, and authenticated remote sandbox backends
- Filesystem, network, resource, timeout, and secret-redaction policies
- Multi-provider model routing and usage/cost accounting
- Loopback JSON-RPC integration through
pulse-rpcorpulse serve - Production preflight checks, structured audit events, and correlation IDs
The package installs three entry points:
pulse Interactive CLI
pulse-rpc Loopback JSON-RPC server
pulse-remote Evaluation-only remote sandbox worker
Use pulse --help for the current command surface and command-specific help.
pulse-rpc and pulse serve require a strong PULSE_RPC_TOKEN bearer secret
and must stay bound to loopback.
Interactive shell
Run pulse without arguments for the responsive project shell. Natural-language
input goes to the agent; prefix any regular CLI command with / to run it in the
same session, such as /status, /keys list, or /chat switch ID. Completions
appear as you type and are always generated from the public CLI parser.
TaborCtrl-Space: open/accept command completionUp/Down: navigate history;Ctrl-R: search historyAlt-Enter: insert a newline;Enter: submitCtrl-C: clear the current input; on an empty prompt, exit/help,/clear, and/exit: shell controls
History is stored locally in the Git-ignored .pulse/history file.
Account and provider keys
pulse version
pulse login
pulse auth-status
pulse whoami
pulse logout
pulse keys
pulse keys list
pulse keys set openai
pulse keys rotate openai
pulse keys remove openai
pulse keys opens the status and rotation manager. Set and rotate operations
prompt with hidden input; provider keys are never accepted as command-line
arguments or printed back to the terminal. New keys are stored in a
workspace-scoped entry in the native OS credential vault. Existing .env keys
remain readable for compatibility and are removed for that provider after a
successful vault-backed set or rotation. Pulse never creates a .env file.
Process environment variables and external secret managers remain supported as
operator-managed fallback sources.
Supported boundary
The 0.1.2 beta supports the local CLI and loopback RPC server for one trusted
user on one workstation. Pulse does not claim a security boundary between
mutually untrusted tenants. Do not expose pulse-rpc or pulse-remote directly
to the public internet.
The remote worker requires authenticated transport, durable configuration, and container isolation. It remains evaluation-only until tenant isolation, centralized observability, load testing, disaster-recovery exercises, and an independent security review are complete. The VS Code extension is source-only and is not part of the Python distribution.
Pulse sends prompts and selected repository context to the configured model provider. Data handling therefore also depends on that provider's terms and settings. Pulse itself does not include product analytics or telemetry export in this beta.
Development
Clone the repository and create the locked development environment:
uv sync --locked
uv run pulse --help
Run the local quality gates:
uv run ruff check src tests scripts
uv run mypy
uv run pytest tests/ -k "not sandbox" --cov=pulse --cov-report=term-missing --cov-fail-under=54
PULSE_GOOGLE_CLIENT_ID=<desktop-client-id> PULSE_GOOGLE_CLIENT_SECRET=<desktop-credential> uv run python scripts/configure_product_oauth.py
uv build
uv run python scripts/verify_release_artifacts.py dist --expected-version 0.1.2
Docker security tests require a working Docker daemon and are enforced by the hosted release workflow. See OPERATIONS.md for release and rollback procedures.
Documentation
- Architecture
- Operations and releases
- Security policy
- Sandbox security boundary
- Privacy policy
- Changelog
To report a vulnerability, use GitHub private vulnerability reporting instead of a public issue. General defects and beta feedback belong in the issue tracker.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pulse_coding_agent-0.1.2.tar.gz.
File metadata
- Download URL: pulse_coding_agent-0.1.2.tar.gz
- Upload date:
- Size: 214.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2a438fb802361c284df8f696bc1be2d635acb0295d0fe4c16484a23036de3c0
|
|
| MD5 |
3c9cb10ae3f1490b9323b49bf064ea8e
|
|
| BLAKE2b-256 |
f97a3ed523b725f1996e0a95de7bd9ff142f565168ee8f33473a3a90b6b2fc52
|
File details
Details for the file pulse_coding_agent-0.1.2-py3-none-any.whl.
File metadata
- Download URL: pulse_coding_agent-0.1.2-py3-none-any.whl
- Upload date:
- Size: 257.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f99424c57c26bb926e4be68afe3f7b24a3431e58890a961adbd1c1936dc32fa
|
|
| MD5 |
f3d3d0fc453f03230264e3202c22d5fb
|
|
| BLAKE2b-256 |
9fe6c645edd9e6311cff36739b06a5c2da934bb3831199513f2d73463e1439b0
|