pm7 Secrets

Share a secret. Once.

One-time links for handing credentials to people and AI agents. The link is the key: the server keeps only a hash of it, so nothing in the database can reveal a secret on its own.

An agent drops off a key

# public endpoint: no account, no token
curl -s https://secrets.pm7.dev/agent \
  -H 'content-type: application/json' \
  -d '{"agent":"deploy-bot","items":[{"name":"API_KEY","secret":"sk-…"}]}'

{"link":"https://secrets.pm7.dev/s/…"}

A machine picks it up

# one call, then the link is dead
curl -s https://secrets.pm7.dev/s/<token>/raw

{"name":"API_KEY","secret":"sk-…","items":[…]}

What you get

Sign in with Google Sending needs an account. Receiving never does.