Skip to content

Releases: atxp-dev/cli

v1.18.0

24 Feb 17:19

Choose a tag to compare

What's New

Contacts Command

New local contacts database for resolving names to phone numbers and emails:

  • contacts add / list / show / edit / remove / search
  • Stored in ~/.atxp/contacts.json
  • Cloud backup via contacts push / contacts pull

Phone Filter Options

  • phone sms --unread-only — show only unread messages
  • phone sms --direction incoming|sent — filter SMS by direction
  • phone calls --direction incoming|sent — filter calls by direction
  • Direction labels updated from inbound/outbound to incoming/sent

v1.17.0

24 Feb 16:17

Choose a tag to compare

What's New

  • whoami: show registered phone number — The whoami command now displays your registered phone number (if any) alongside your account info. The phone number is fetched in parallel so there's no added latency.

v1.16.0

23 Feb 22:57

Choose a tag to compare

What's New

Phone (SMS & Voice Calls)

New phone command exposing the phone.mcp.atxp.ai MCP server with full SMS and voice call support:

  • phone register — Register a phone number with optional area code preference ($2.00)
  • phone release — Release your phone number (free)
  • phone configure-voice — Configure AI voice agent (name, voice, knowledge base)
  • phone sms / phone read-sms — Check SMS inbox and read messages
  • phone send-sms — Send SMS/MMS messages ($0.05)
  • phone call — Make AI-powered outbound voice calls ($0.10)
  • phone calls / phone read-call — Check call history and read transcripts
  • phone search — Search across SMS and calls
  • phone get-attachment — Download MMS attachments

Updated skill documentation with phone security boundaries, pricing, and MCP server reference.

v1.15.0

23 Feb 17:57

Choose a tag to compare

What's Changed

Features

  • Auto-install zvec: Running memory index or memory search now auto-installs @zvec/zvec into ~/.atxp/deps/ on first use — no manual setup needed for agents using npx
  • Default skill install: Running npx atxp with no arguments now installs the atxp skill via npx skills add

Fixes

  • Fixed @zvec/zvec optional dependency version (^0.3.0^0.2.0)

v1.14.0

23 Feb 17:09

Choose a tag to compare

What's Changed

Bug Fixes

  • zvec integration: Fixed ESM dynamic import not unwrapping CJS default export, causing Cannot read properties of undefined (reading 'HNSW')
  • zvec integration: Fixed wrong indexParams key (typeindexType)
  • memory search: Fixed search query being contaminated with --path and --topk flag values

Improvements

  • memory push/index: Now collects all text files, not just .md files
  • memory push/index: Respects .gitignore rules (including nested .gitignore files)
  • memory push/index: Automatically skips node_modules, .git, binary files, and other common non-content directories
  • memory push/index: Increased file limit from 100 to 500

v1.13.0

23 Feb 16:52
1ebda95

Choose a tag to compare

What's New

  • Unified fund commandnpx atxp fund now returns both crypto deposit addresses and Stripe payment links (agent accounts). Replaces the separate topup command.
  • Transaction historynpx atxp transactions to view recent transaction history with --limit support.
  • Memory managementnpx atxp memory for push/pull/index/search/status of agent memory files with local vector search.
  • Runtime context — Auth requests now include runtime context for better agent identification.
  • SKILL.md improvements — Optimized for discovery platforms, toned down security warnings.

Fixes

  • Excluded vendor directory from ESLint to fix CI lint failures.

v1.12.0

23 Feb 15:55

Choose a tag to compare

What's New

Memory Management System

The backup tool has been refactored into a broader memory management system. Cloud backup/restore is preserved with full backward compatibility (backup remains as an alias for memory).

New subcommands:

  • npx atxp memory index --path <dir> — Chunks .md files by heading, generates feature-hash embeddings, and stores them in a local HNSW index for fast approximate nearest-neighbor search
  • npx atxp memory search <query> --path <dir> — Converts the query to the same vector space and returns the top-k most similar memory chunks with file paths, headings, line numbers, and similarity scores

Local search is fully offline — no network or authentication required.

Compressed Uploads

Memory backups are now compressed into zip archives before upload, reducing transfer size and bandwidth usage.

Internal Improvements

  • Minor stability and performance improvements

v1.11.0

22 Feb 05:43

Choose a tag to compare

What's New

Backup command

New backup command for pushing and pulling agent identity and memory files (.md only) to ATXP servers. Agents can now preserve their SOUL.md, MEMORY.md, and other workspace files across environment rebuilds.

npx atxp backup push --path ~/.openclaw/workspace-abc/
npx atxp backup pull --path ~/.openclaw/workspace-abc/
npx atxp backup status

Separate skill file (atxp-backup) with its own security boundary since it reads/writes arbitrary directories.

Security hardening

  • Removed --token CLI examples from SKILL.md to prevent credential exposure in process listings and shell history
  • Added boundary markers guidance for untrusted output ([BEGIN/END UNTRUSTED CONTENT])
  • Added Financial Safety section with human-approval recommendations and spending guardrails
  • Added Runtime Execution Model section documenting npx download behavior and version pinning
  • Added top-level permissions field to frontmatter declaring all access requirements explicitly
  • Explicit rule against source-ing ~/.atxp/config

v1.10.9

18 Feb 22:00
a841f37

Choose a tag to compare

What's New

  • npx atxp topup command — Agents can now generate Stripe Payment Links to request funding. Payers can adjust the amount at checkout ($1–$1,000, default $10).
  • Owner info in npx atxp whoami — Agent accounts now see their owner's email, or a "self-registered" label for orphan agents.

v1.10.8

18 Feb 01:05

Choose a tag to compare

What's Changed

  • Fix login --token with full connection strings: Passing a full connection string URL (e.g. from agent register output) no longer produces a doubled/invalid URL
  • Simplified agent registration (from v1.10.7): Single-step flow, removed challenge/verify
  • New whoami command (from v1.10.7): View account info (ID, email, wallet, team)