KeyBank
Tell an agent “use the development key.” It matches that phrase to a catalog entry and either writes the key into a .env file or sets it for the command it is about to run.
The same skill can add a new API key from a description. The only thing you paste yourself is the secret, into one file: ~/.keybank/secrets.env.
Quick start
- Install the CLI.
uv tool install agent-keybank
pipx install agent-keybank works too.
- Run setup once. It creates
~/.keybankand asks which coding agents you use, then installs the skill for those agents.
keybank setup
Non-interactive:
keybank setup --agents all
keybank setup --agents claude,codex,cursor
- Tell an agent what secrets you need. It writes the ids and descriptions. You paste each secret into
~/.keybank/secrets.env. After that, “use the development key” is enough.
After install
Say something like: “I need a development key and a production key for my API, both exposed as SERVICE_API_KEY.”
The agent adds catalog entries with ids, descriptions, and the runtime name. keybank add inserts blank id= lines. It does not see the secrets.
Open ~/.keybank/secrets.env and paste each value after the =:
service-prod=...
service-dev=...
Do not ask the agent to open that file. Agents must never read it.
From then on you can say:
- “Use the development key and put it in this folder’s
.env.” - “Run this script with the production key.”
- “Add a staging key that maps to
SERVICE_API_KEY.”
Where keys live
The bank is on the machine, not in any git repo. Override the location with KEYBANK_HOME.
| File | Who may read it | What it holds |
|---|---|---|
~/.keybank/catalog.yaml |
You and agents | Id, description, notes, aliases, runtime name, public companions |
~/.keybank/secrets.env |
You and the keybank CLI only |
The secret for each id |
catalog.yaml never contains secrets. secrets.env is mode 600 and stores values under the catalog id:
service-prod=...
service-dev=...
What setup does
keybank setup creates ~/.keybank/ with catalog.yaml and secrets.env if they are missing, then copies the skill into the agent folders you chose.
--agents all covers Claude Code, Codex, Cursor, OpenCode, Gemini, Factory, Grok, and Amp.
Upgrade
Upgrade the CLI, then re-run setup. Setup overwrites the installed SKILL.md files. The bank stays put.
uv tool upgrade agent-keybank
keybank setup --agents all
pipx upgrade agent-keybank works too.
Uninstall
Uninstall removes the CLI. It does not delete ~/.keybank.
uv tool uninstall agent-keybank
pipx uninstall agent-keybank works too.
Commands
Discover keys. These print ids and descriptions, never secret values.
keybank list
keybank list --json
keybank show development
keybank resolve "personal project"
Load a key into a folder as the runtime name the process expects.
keybank load development --into ./scripts/my-probe/.env
keybank load service-dev platform-work --into ./scripts/my-probe/.env
keybank load service-dev --as OTHER_API_KEY --into ./scripts/my-probe/.env
--into DIR writes DIR/.env. --as VAR renames the secret for one key.
Run a command with the key in the process environment and skip writing a file.
keybank run development -- python script.py
Add a catalog entry. keybank add inserts a blank id= line in ~/.keybank/secrets.env. Paste the secret after the =. You can also run keybank set-secret <id> and type it at a hidden prompt.
keybank add service-dev \
--description "Development environment" \
--notes "Load env vars as-is. The client reads SERVICE_API_URL without a path suffix." \
--alias dev --alias development \
--maps-to SERVICE_API_KEY \
--public SERVICE_API_URL=https://api.dev.example.com
Other commands: keybank init, keybank remove <id> --yes, keybank doctor, keybank home.
Catalog format
Agents may read this file. Keep secrets out of it.
keys:
- id: service-prod
description: Production API, personal project
notes: Load env vars as-is. The client reads SERVICE_API_URL without a path suffix.
aliases: [prod, production]
maps_to: SERVICE_API_KEY
public:
SERVICE_API_URL: https://api.example.com
- id: service-dev
description: Development environment
notes: Load env vars as-is. The client reads SERVICE_API_URL without a path suffix.
aliases: [dev, development]
maps_to: SERVICE_API_KEY
public:
SERVICE_API_URL: https://api.dev.example.com
description is when to use the key. Agents match against it to pick an entry. notes is how to use the key after it is chosen. maps_to is the environment variable the process should see. That is how two keys both become SERVICE_API_KEY at use time. public holds non-secret companions such as a base URL.
Prefer letting an agent run keybank add. Hand-edits work if you stick to this shape.
Agent skill
The skill is one file bundled with the CLI. It follows the Agent Skills standard. keybank setup copies it into the personal skill folders for the agents you pick.
New agent sessions pick it up from those folders. The skill tells the agent to use the CLI and to stay out of secret files.
Security rules
The CLI is the only process that should open secrets.env. It never prints secret values.
Generated .env files are mode 600. Add .env to .gitignore in the folder you load into.
keybank run is the safer option when you do not need a leftover file.
Do not put a master .env in a git repo root and do not ask an agent to open it.
Tests
python3 -m unittest discover -s tests -v
License
MIT. See LICENSE. Anyone can use, copy, modify, and distribute this, including commercially.
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 agent_keybank-0.1.2.tar.gz.
File metadata
- Download URL: agent_keybank-0.1.2.tar.gz
- Upload date:
- Size: 20.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed5083d01ddb016f05d39d454441e259efacd8255aae13298f7fca80a93994f8
|
|
| MD5 |
fda40ecde1c151d973e491f9911f7aca
|
|
| BLAKE2b-256 |
2ff2dedea01db4009b20b2e3b03b173bd98c8e72a9b8d7e9348606617bbfea6c
|
Provenance
The following attestation bundles were made for agent_keybank-0.1.2.tar.gz:
Publisher:
publish.yml on jackaldenryan/agent-keybank
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agent_keybank-0.1.2.tar.gz -
Subject digest:
ed5083d01ddb016f05d39d454441e259efacd8255aae13298f7fca80a93994f8 - Sigstore transparency entry: 2645181691
- Sigstore integration time:
-
Permalink:
jackaldenryan/agent-keybank@ec120c7628d3d1d311c81b50df433272b494bff8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/jackaldenryan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ec120c7628d3d1d311c81b50df433272b494bff8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file agent_keybank-0.1.2-py3-none-any.whl.
File metadata
- Download URL: agent_keybank-0.1.2-py3-none-any.whl
- Upload date:
- Size: 17.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
982ccccce35f85eec3bcebea2d914038e6b81892ef32549b5bca5d552e78cbfc
|
|
| MD5 |
af63b9e64f2138cad8579ab4bce2e237
|
|
| BLAKE2b-256 |
8064e98e06452628ddcef25bb87b6bcc40a76aef99535fd0bbc7f3b816801bf5
|
Provenance
The following attestation bundles were made for agent_keybank-0.1.2-py3-none-any.whl:
Publisher:
publish.yml on jackaldenryan/agent-keybank
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agent_keybank-0.1.2-py3-none-any.whl -
Subject digest:
982ccccce35f85eec3bcebea2d914038e6b81892ef32549b5bca5d552e78cbfc - Sigstore transparency entry: 2645182427
- Sigstore integration time:
-
Permalink:
jackaldenryan/agent-keybank@ec120c7628d3d1d311c81b50df433272b494bff8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/jackaldenryan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ec120c7628d3d1d311c81b50df433272b494bff8 -
Trigger Event:
release
-
Statement type: