139 Commits

Author SHA1 Message Date
David Noël-Romas 65797bafa7 fix: sync lock file with zvec ^0.2.0 optional dep
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
v1.15.0
2026-02-23 11:36:44 -06:00
David Noël-Romas 145d2a4936 feat(atxp): auto-install zvec on first use, default to skill install
Auto-install @zvec/zvec into ~/.atxp/deps on first `memory index` or
`memory search` call so agents using npx get local vector search
without manual setup. Fix zvec optional dep version to ^0.2.0. When
`npx atxp` is run with no arguments, install the atxp skill via
`npx skills add`.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-23 11:30:05 -06:00
GitHub Action c6c7c3f5cd bump version to 1.14.0 [skip ci] 2026-02-23 17:10:29 +00:00
David Noël-Romas a8bae206ce fix(atxp): fix zvec integration bugs and improve memory file collection
Fix three zvec integration bugs: ESM dynamic import not unwrapping
CJS default export, wrong indexParams key (type→indexType), and search
query being contaminated with flag values. Replace .md-only file filter
with gitignore-aware collection of all text files, skip binary files
and common directories (node_modules, .git, etc.), and increase file
limit to 500.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
v1.14.0
2026-02-23 11:08:54 -06:00
GitHub Action fc18fecf00 bump version to 1.13.0 [skip ci] 2026-02-23 16:53:23 +00:00
R-M-Naveen 1ebda95cb1 Merge pull request #47 from atxp-dev/naveen/skill.md-refinements
docs: optimize SKILL.md for discovery platforms and tone down securit…
v1.13.0
2026-02-23 10:48:58 -06:00
R-M-Naveen a3a6c0303f fix: exclude vendor directory from eslint
Obfuscated .cjs vendor files cause lint errors in CI. Exclude
src/vendor/ from the lint command since vendor code shouldn't be linted.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-23 10:47:12 -06:00
R-M-Naveen 4b79a71c81 feat(atxp): unify fund command, remove topup
Replace separate `topup` and `deposit` commands with a unified `fund`
command that calls POST /api/funding/fund and displays both crypto
deposit addresses and payment links (for agent accounts).

- Rewrite deposit.ts to use Bearer auth and call unified endpoint
- Remove topup.ts (functionality merged into fund)
- Update help.ts and index.ts routing
- Include transactions command and memory from main merge

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-23 10:41:43 -06:00
R-M-Naveen e6f0dbe8fe merge: pull main into naveen/skill.md-refinements 2026-02-23 10:32:19 -06:00
GitHub Action da168ea714 bump version to 1.12.0 [skip ci] 2026-02-23 15:57:09 +00:00
David Noël-Romas 1a5f6c8514 feat(atxp): send runtime context with auth requests
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
v1.12.0
2026-02-23 09:53:39 -06:00
David N f3c0330ae0 Merge pull request #49 from atxp-dev/claude/memory-management-refactor-qXjEc 2026-02-22 17:42:06 -06:00
Claude 5f23c242f2 refactor(atxp): rename backup to memory, add local vector search via zvec
Refactor the backup tool and skill into a broader "memory management"
system. Cloud backup/restore (push/pull/status) is preserved with full
backward compatibility ('backup' is an alias for 'memory'). Two new
subcommands are added:

- memory index --path <dir>: chunks .md files by heading, generates
  feature-hash embeddings (256-dim), and stores them in a local zvec
  HNSW index for fast approximate nearest-neighbor search.
- 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.

https://claude.ai/code/session_017TjuWQCrpzPM4rYdTTPFBQ
2026-02-22 22:07:54 +00:00
David N 60a85796e7 Merge pull request #48 from atxp-dev/claude/backup-tool-zip-compression-Yax9w 2026-02-22 15:33:25 -06:00
Claude 0fefad471c feat(atxp): compress backup files into zip archive before upload
The backup tool now uses jszip to create DEFLATE-compressed zip archives
instead of sending raw JSON payloads. This reduces transfer size and
bandwidth usage. Includes server migration instructions for the
corresponding endpoint changes.

https://claude.ai/code/session_01HZSR7WQPTnnuo8Pmi8UwAw
2026-02-22 20:46:08 +00:00
GitHub Action 3ab4b05234 bump version to 1.11.0 [skip ci] 2026-02-22 05:44:12 +00:00
David Noël-Romas 1c10051244 docs(atxp): address ClawHub OpenClaw scanner concerns
The OpenClaw LLM scanner flagged the skill as "suspicious" across
five dimensions. Changes to improve the score:

- Add top-level permissions field to frontmatter declaring network,
  filesystem, subprocess, and credential access explicitly
- Expand compatibility field to mention all runtime requirements
  (credential, network, filesystem, npx download)
- Add Runtime Execution Model section documenting npx download
  behavior, version pinning, source verification, and cache location
- Add human-approval recommendations for financial operations:
  require approval before first paid call, use test wallets,
  implement per-session spending caps, treat email send as high-risk
- Remove "No human approval per transaction" claim and replace with
  pointer to Financial Safety guardrails

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
v1.11.0
2026-02-21 23:42:17 -06:00
David Noël-Romas e2b9d9a15f docs(atxp): harden SKILL.md against security audit findings
Address Snyk W007 (HIGH): remove --token CLI examples and echo
$ATXP_CONNECTION pattern that expose secrets in process listings
and shell history. Add explicit rule against passing credentials
as CLI arguments.

Address Snyk W011 / Trust Hub prompt injection: add boundary
marker guidance ([BEGIN/END UNTRUSTED CONTENT]) for untrusted
output from search, email, and X commands.

Address Snyk W009: add Financial Safety section with guardrails
against externally-triggered spending, payment link generation,
and social engineering vectors.

Address Trust Hub command execution: add explicit rule against
sourcing ~/.atxp/config (uses export syntax = shell execution).

Update version pinning guidance to recommend exact versions and
npm audit signatures for supply-chain verification.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-21 23:39:47 -06:00
David Noël-Romas 66b8b1fe02 feat(atxp): add backup command for agent identity and memory files
Push/pull .md files to ATXP servers so agents can preserve their
identity (SOUL.md, MEMORY.md, etc.) across workspace rebuilds.
Separate skill file with its own security boundary since it reads/writes
arbitrary directories.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-21 23:38:40 -06:00
R-M-Naveen 391b4e49b4 docs: optimize SKILL.md for discovery platforms and tone down security warnings
Rewrite description as keyword-dense routing rule for skills.sh, ClawHub,
and find-skills. Move security and provenance sections to end of document.
Condense security from 47 lines to 4 paragraphs. Remove inline warning
badges from command tables.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-20 11:10:16 -06:00
David N f4ac1d9187 Merge pull request #46 from atxp-dev/claude/update-atxp-llm-gateway-vgqhS 2026-02-19 19:17:05 -06:00
Claude f7fa095fea docs(atxp): expand LLM Gateway section with OpenAI-compatible API details
Adds detail to the SKILL.md LLM Gateway section explaining that:
- The gateway accepts ATXP credits and exposes state-of-the-art models
- It features an OpenAI-compatible API for easy drop-in integration
- Authentication uses the existing ATXP_CONNECTION token
- Links to https://docs.atxp.ai/agents/llm-gateway

https://claude.ai/code/session_01VwZwfGeDbJMJrB39TV8ucv
2026-02-20 00:30:01 +00:00
R-M-Naveen b8fc220eb8 Merge pull request #45 from atxp-dev/naveen/skill.md-refinements
docs: rewrite SKILL.md with security model, expanded metadata, and @latest pinning
2026-02-19 10:45:03 -06:00
R-M-Naveen 5ec26b9a14 docs: rewrite SKILL.md with security model, expanded metadata, and @latest pinning
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 10:31:56 -06:00
R-M-Naveen 8472aff7a2 Merge pull request #44 from atxp-dev/naveen/agent-register-cli-added
Naveen/agent register cli added
2026-02-18 16:50:36 -06:00
R-M-Naveen dfdc05cd3c Merge remote-tracking branch 'origin/main' into naveen/agent-register-cli-added 2026-02-18 16:47:41 -06:00
R-M-Naveen 2152d56446 docs: add agent, topup, and whoami commands to SKILL.md
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 16:47:41 -06:00
GitHub Action a4f0d06d0b bump version to 1.10.9 [skip ci] 2026-02-18 22:01:26 +00:00
R-M-Naveen a841f37272 Merge pull request #43 from atxp-dev/naveen/agent-register-cli-added
feat: add topup command and owner info in whoami
v1.10.9
2026-02-18 15:57:55 -06:00
R-M-Naveen ec82f9653c feat: add topup command and owner info in whoami
Add `npx atxp topup` command for agent funding via Stripe Payment Links
with payer-adjustable amounts ($1-$1000, default $10). Update whoami to
display owner email and orphan status for agent accounts.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 15:29:47 -06:00
GitHub Action 44d7574982 bump version to 1.10.8 [skip ci] 2026-02-18 01:06:33 +00:00
R-M-Naveen 11dd8e3c8f fix: login --token with full connection string URL no longer doubles the URL
When passing a full connection string (starting with http) via --token,
the login command was wrapping it inside another URL, producing an invalid
doubled connection string. Now detects full URLs and uses them as-is.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
v1.10.8
2026-02-17 19:05:14 -06:00
GitHub Action 2a2eeb9390 bump version to 1.10.7 [skip ci] 2026-02-18 00:59:09 +00:00
R-M-Naveen eb46594598 Merge pull request #42 from atxp-dev/naveen/agent-register-cli-added
feat: simplify agent register to single-step and add whoami command
v1.10.7
2026-02-17 18:53:26 -06:00
R-M-Naveen 7c3524dc65 feat: simplify agent register to single-step and add whoami command
Remove the two-step challenge/verify flow from `agent register` — now a
single POST creates the agent account and returns credentials immediately.

Add `whoami` command that displays account info (ID, email, wallet, team,
connection string) by hitting GET /me with Basic auth.

- Remove readline import, promptForInput helper, --answer/--registration-id flags
- Single POST to /agents/register returns full account data
- New commands/whoami.ts with formatted output matching register style
- Wire whoami into index.ts and help.ts

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 18:45:37 -06:00
GitHub Action 8193ebcf9e bump version to 1.10.6 [skip ci] 2026-02-17 23:01:41 +00:00
David Noël-Romas f72ca50a88 feat: Add email reply, search, delete, and attachment commands
- reply: Reply to a message with auto-populated threading headers ($0.01)
- search: Search emails by subject or sender address (FREE)
- delete: Soft-delete an email (FREE)
- get-attachment: Download attachment content as base64 (FREE)
- Show read/unread status in inbox and search listings
- Show attachment list when reading a message

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
v1.10.6
2026-02-17 17:00:44 -06:00
GitHub Action 5b644397bc bump version to 1.10.5 [skip ci] 2026-02-17 20:57:17 +00:00
David Noël-Romas 198ffbab37 feat: Add email username claim/release commands
Support the new email_claim_username and email_release_username MCP
tools. Users can claim a human-readable username ($1.00) to use
{username}@atxp.email instead of {user_id}@atxp.email.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
v1.10.5
2026-02-17 14:56:21 -06:00
GitHub Action 738d33b60c bump version to 1.10.4 [skip ci] 2026-02-17 20:23:28 +00:00
David Noël-Romas a30f677e5b feat: Rename deposit to fund, add credit card payment option
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
v1.10.4
2026-02-17 14:22:30 -06:00
GitHub Action 943f211ca6 bump version to 1.10.3 [skip ci] 2026-02-16 17:42:34 +00:00
David Noël-Romas e1fbefbfd1 feat: Add deposit address command
Adds `npx atxp deposit` to fetch and display the user's deposit
addresses (typically Base and Solana) for topping up their ATXP
account with USDC.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
v1.10.3
2026-02-16 11:41:49 -06:00
GitHub Action e11337018e bump version to 1.10.2 [skip ci] 2026-02-12 17:28:16 +00:00
R-M-Naveen 9a798209ab Merge pull request #41 from atxp-dev/naveen/agent-register-cli-added
feat: Add --registration-id flag for two-step agent registration
v1.10.2
2026-02-12 12:26:27 -05:00
R-M-Naveen d053f244a0 feat: Add --registration-id flag for two-step agent registration
Allows agents to resume a previous registration challenge without
fetching a new one. When both --registration-id and --answer are
provided, the CLI skips step 1 (challenge fetch) and goes directly
to verification. This enables non-interactive registration flows.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-12 11:21:42 -06:00
GitHub Action e3adb9ad2c bump version to 1.10.1 [skip ci] 2026-02-12 16:30:15 +00:00
R-M-Naveen 390757cbd9 Merge pull request #40 from atxp-dev/naveen/agent-register-cli-added
feat: Add agent self-registration CLI command
v1.10.1
2026-02-12 11:15:47 -05:00
R-M-Naveen 796140e546 feat: Add agent self-registration CLI command
Adds `npx atxp agent register` for AI agents to self-register without
requiring an existing login. The command handles the 2-step flow:
fetches a base64-encoded captcha challenge, decodes and displays it,
prompts for the answer, then verifies and creates the account.

Supports --server flag for custom server URL and --answer for
non-interactive use.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-12 10:10:52 -06:00
GitHub Action 88db529a4b bump version to 1.10.0 [skip ci] 2026-02-10 15:11:47 +00:00