Skip to content

Releases: joelhooks/agent-secrets

v0.5.5

20 Mar 01:17
be5aefe

Choose a tag to compare

Fixes

  • No more stderr noise: SilenceErrors + SilenceUsage on root command. Errors go exclusively through the JSON envelope on stdout.
  • Non-zero exit codes: All error paths return proper exit codes via output.PrintFail(). No more exit 0 on failures.
  • HTTP timeout on update check: 5s timeout prevents CLI hangs when GitHub API is slow or unreachable.
  • Download timeout: Binary downloads use 60s timeout.

Internal

  • New output.PrintFail() and output.ExitError helpers
  • 16 command files refactored from Print+return nil to return PrintFail()
  • Test mock client updated to cover custom HTTP clients

v0.5.4

19 Feb 06:26

Choose a tag to compare

agent-secrets v0.5.4

Portable credential management for AI agents.

Installation

# One-liner
curl -fsSL https://raw.githubusercontent.com/joelhooks/agent-secrets/main/install.sh | bash

# Or download binary directly
# macOS (Apple Silicon)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.5.4/agent-secrets_0.5.4_darwin_arm64.tar.gz

# macOS (Intel)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.5.4/agent-secrets_0.5.4_darwin_amd64.tar.gz

# Linux (x86_64)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.5.4/agent-secrets_0.5.4_linux_amd64.tar.gz

# Linux (ARM64)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.5.4/agent-secrets_0.5.4_linux_arm64.tar.gz

Changelog

  • a47cd87 ralph: Integration tests: full agent workflow with new commands

v0.5.3

19 Feb 06:03

Choose a tag to compare

agent-secrets v0.5.3

Portable credential management for AI agents.

Installation

# One-liner
curl -fsSL https://raw.githubusercontent.com/joelhooks/agent-secrets/main/install.sh | bash

# Or download binary directly
# macOS (Apple Silicon)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.5.3/agent-secrets_0.5.3_darwin_arm64.tar.gz

# macOS (Intel)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.5.3/agent-secrets_0.5.3_darwin_amd64.tar.gz

# Linux (x86_64)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.5.3/agent-secrets_0.5.3_linux_amd64.tar.gz

# Linux (ARM64)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.5.3/agent-secrets_0.5.3_linux_arm64.tar.gz

Changelog

  • 8bf77f2 ralph: Test coverage: cmd/secrets command tests
  • a3edec4 ralph: Test coverage: daemon handlers (list, update, delete)
  • d0655e6 ralph: Test coverage: internal/output envelope and formatters

v0.5.2

19 Feb 05:29

Choose a tag to compare

agent-secrets v0.5.2

Portable credential management for AI agents.

Installation

# One-liner
curl -fsSL https://raw.githubusercontent.com/joelhooks/agent-secrets/main/install.sh | bash

# Or download binary directly
# macOS (Apple Silicon)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.5.2/agent-secrets_0.5.2_darwin_arm64.tar.gz

# macOS (Intel)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.5.2/agent-secrets_0.5.2_darwin_amd64.tar.gz

# Linux (x86_64)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.5.2/agent-secrets_0.5.2_linux_amd64.tar.gz

# Linux (ARM64)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.5.2/agent-secrets_0.5.2_linux_arm64.tar.gz

Changelog

  • aa38d53 ralph: Remove MCP references, credit Alex Hillman, clean up README

v0.5.1

19 Feb 03:06

Choose a tag to compare

agent-secrets v0.5.1

Portable credential management for AI agents.

Installation

# One-liner
curl -fsSL https://raw.githubusercontent.com/joelhooks/agent-secrets/main/install.sh | bash

# Or download binary directly
# macOS (Apple Silicon)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.5.1/agent-secrets_0.5.1_darwin_arm64.tar.gz

# macOS (Intel)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.5.1/agent-secrets_0.5.1_darwin_amd64.tar.gz

# Linux (x86_64)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.5.1/agent-secrets_0.5.1_linux_amd64.tar.gz

# Linux (ARM64)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.5.1/agent-secrets_0.5.1_linux_arm64.tar.gz

Changelog

  • f9d4aca ralph: Add update and delete commands for secrets
  • ab82c85 ralph: Backwards compatibility: restore deprecated flags with warnings

v0.5.0

19 Feb 01:42

Choose a tag to compare

agent-secrets v0.5.0

Portable credential management for AI agents.

Installation

# One-liner
curl -fsSL https://raw.githubusercontent.com/joelhooks/agent-secrets/main/install.sh | bash

# Or download binary directly
# macOS (Apple Silicon)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.5.0/agent-secrets_0.5.0_darwin_arm64.tar.gz

# macOS (Intel)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.5.0/agent-secrets_0.5.0_darwin_amd64.tar.gz

# Linux (x86_64)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.5.0/agent-secrets_0.5.0_linux_amd64.tar.gz

# Linux (ARM64)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.5.0/agent-secrets_0.5.0_linux_arm64.tar.gz

Changelog

  • d40f16e ralph: Add fix field to all error responses
  • 9b4f48f ralph: Add list command to show all stored secret names
  • 5c0a22e ralph: Make lease default to raw value output
  • df3b636 ralph: Refactor response envelope to match cli-design standard
  • 111807c ralph: Remove TTY detection and legacy output format flags — JSON always
  • 01775fe ralph: Self-documenting root command with command tree
  • a1c3156 ralph: Update README, SKILL.md, and AGENTS.md for new CLI design

v0.4.1

03 Feb 01:54

Choose a tag to compare

agent-secrets v0.4.1

Portable credential management for AI agents.

Installation

# One-liner
curl -fsSL https://raw.githubusercontent.com/joelhooks/agent-secrets/main/install.sh | bash

# Or download binary directly
# macOS (Apple Silicon)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.4.1/agent-secrets_0.4.1_darwin_arm64.tar.gz

# macOS (Intel)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.4.1/agent-secrets_0.4.1_darwin_amd64.tar.gz

# Linux (x86_64)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.4.1/agent-secrets_0.4.1_linux_amd64.tar.gz

# Linux (ARM64)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.4.1/agent-secrets_0.4.1_linux_arm64.tar.gz

Changelog

  • 03889d1 feat: restart daemon after update
  • 277cefd fix: goreleaser ldflags target correct package
  • 45a8125 fix: make daemon start/stop cross-platform
  • 537cf39 fix: restore correct ldflags targeting main package

v0.3.3

02 Feb 18:54

Choose a tag to compare

agent-secrets v0.3.3

Portable credential management for AI agents.

Installation

# One-liner
curl -fsSL https://raw.githubusercontent.com/joelhooks/agent-secrets/main/install.sh | bash

# Or download binary directly
# macOS (Apple Silicon)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.3.3/agent-secrets_0.3.3_darwin_arm64.tar.gz

# macOS (Intel)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.3.3/agent-secrets_0.3.3_darwin_amd64.tar.gz

# Linux (x86_64)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.3.3/agent-secrets_0.3.3_linux_amd64.tar.gz

# Linux (ARM64)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.3.3/agent-secrets_0.3.3_linux_arm64.tar.gz

Changelog

  • 50a6ddf feat: add serve command to start daemon
  • 9f16647 feat: auto-init store and auto-start daemon on install

v0.3.2

02 Feb 17:54
8811cd5

Choose a tag to compare

agent-secrets v0.3.2

Portable credential management for AI agents.

Installation

# One-liner
curl -fsSL https://raw.githubusercontent.com/joelhooks/agent-secrets/main/install.sh | bash

# Or download binary directly
# macOS (Apple Silicon)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.3.2/agent-secrets_0.3.2_darwin_arm64.tar.gz

# macOS (Intel)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.3.2/agent-secrets_0.3.2_darwin_amd64.tar.gz

# Linux (x86_64)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.3.2/agent-secrets_0.3.2_linux_amd64.tar.gz

# Linux (ARM64)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.3.2/agent-secrets_0.3.2_linux_arm64.tar.gz

Changelog

  • 8811cd5 feat: add auto-update check with 24-hour caching (issue #10) (#11)

v0.3.1

02 Feb 17:21

Choose a tag to compare

agent-secrets v0.3.1

Portable credential management for AI agents.

Installation

# One-liner
curl -fsSL https://raw.githubusercontent.com/joelhooks/agent-secrets/main/install.sh | bash

# Or download binary directly
# macOS (Apple Silicon)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.3.1/agent-secrets_0.3.1_darwin_arm64.tar.gz

# macOS (Intel)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.3.1/agent-secrets_0.3.1_darwin_amd64.tar.gz

# Linux (x86_64)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.3.1/agent-secrets_0.3.1_linux_amd64.tar.gz

# Linux (ARM64)
curl -LO https://github.com/joelhooks/agent-secrets/releases/download/v0.3.1/agent-secrets_0.3.1_linux_arm64.tar.gz

Changelog

  • 7d97e29 fix: scanner exclusion matches exact dir names, not substrings