agent-secrets

(β˜… 104)

πŸ›‘οΈ Portable credential management for AI agents β€” Age encryption, session leases, killswitch

File Explorer

ZIP Download
  • .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

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

πŸ”

gh auth

View Details β–Ό

Authenticate with a GitHub host.

gh auth login

Log in with interactive prompt:

echo {{your_token}} | gh auth login --with-token

Log in with a token from `stdin` (created in <https://github.com/settings/tokens>):

gh auth status

Check if you are logged in:

πŸ”

git clone

View Details β–Ό

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

πŸ”

go install

View Details β–Ό

Compile and install packages named by the import paths.

go install

Compile and install the current package:

go install {{path/to/package}}

Compile and install a specific local package:

go install {{golang.org/x/tools/gopls}}@{{latest}}

Install the latest version of a program, ignoring `go.mod` in the current directory:

πŸ”

npm run

View Details β–Ό

Run a script.

npm run

List available scripts:

npm run {{script_name}}

Run a script:

npm run {{script_name}} -- {{argument}} {{--option}}

Pass arguments to a script:

πŸ”

npx

View Details β–Ό

This command is an alias of `npm exec`.

tldr npm exec

View documentation for the original command:

// repository documentation