agent-secrets
๐ก๏ธ Portable credential management for AI agents โ Age encryption, session leases, killswitch
File Explorer
Download Latest Version (.zip)- skills
- instructions.md
- ci.yml
- release.yml
- secret_scanning.yml
- secrets.ts
- README.md
- skills
- secrets
- adapter.go
- add.go
- audit.go
- cleanup.go
- client.go
- client_test.go
- daemon.go
- daemon_start_unix.go
- daemon_start_windows.go
- delete.go
- delete_test.go
- env.go
- exec.go
- health.go
- init.go
- lease.go
- lease_test.go
- list.go
- list_test.go
- main.go
- revoke.go
- root.go
- root_test.go
- scan.go
- serve.go
- serve_test.go
- status.go
- testmain_test.go
- update.go
- update_secret.go
- update_secret_test.go
- vercel.go
- vercel_test.go
- adapter.go
- audit.go
- audit_test.go
- entry.go
- watcher.go
- watcher_test.go
- config.go
- config_test.go
- daemon.go
- daemon_test.go
- handlers.go
- handlers_test.go
- protocol.go
- restart_guard.go
- restart_guard_test.go
- testmain_test.go
- envfile.go
- envfile_test.go
- heartbeat.go
- heartbeat_test.go
- killswitch.go
- killswitch_test.go
- lease.go
- lease_test.go
- manager.go
- manager_test.go
- otel.go
- formatter.go
- formatter_test.go
- json.go
- json_test.go
- output.go
- output_test.go
- raw.go
- raw_test.go
- config.go
- config_test.go
- testmain_test.go
- executor.go
- executor_test.go
- rotation.go
- rotation_test.go
- patterns.go
- scanner.go
- scanner_test.go
- encryption.go
- encryption_test.go
- permissions.go
- permissions_test.go
- store.go
- store_test.go
- errors.go
- exitcodes.go
- types.go
- types_test.go
- update.go
- update_test.go
- SKILL.md
- .gitignore
- .goreleaser.yml
- .ralph-context.json
- .ralph-iterations.jsonl
- AGENTS.md
- CLAUDE.md
- go.mod
- go.sum
- install.sh
- integration_test.go
- LICENSE
- Makefile
- openclaw.plugin.json
- prd.json
- progress.txt
- README.md
# Installation Guide
git clone https://github.com/joelhooks/agent-secrets
Downloads the entire project code from GitHub to your computer.
cd agent-secrets
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Go Go is required to use go install.
curl -fsSL https://raw.githubusercontent.com/joelhooks/agent-secrets/main/install.sh | bash
Downloads and runs the official install script in one line โ this handles the full setup automatically.
go install github.com/joelhooks/agent-secrets/cmd/secrets@latest
Downloads and installs the specified version directly โ no need to clone the repo yourself.
Pulled directly from this repo's README.
3. Go
Mediumgo install github.com/joelhooks/agent-secrets/cmd/secrets@latest
Downloads and installs the specified version directly โ no need to clone the repo yourself.
Pulled directly from this repo's README.
4. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make build
Compiles the code based on the generated build configuration to produce an executable.
make test
Compiles the code based on the generated build configuration to produce an executable.
make test-cover
Compiles the code based on the generated build configuration to produce an executable.
make install
Compiles the code based on the generated build configuration to produce an executable.
make lint
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
