← All skills
Tencent SkillHub · Developer Tools

Authy

Inject secrets into subprocesses via environment variables. You never see secret values — authy run injects them directly. Use for any command that needs API...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Inject secrets into subprocesses via environment variables. You never see secret values — authy run injects them directly. Use for any command that needs API...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/commands.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.3.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

Authy — Secure Secret Injection

Inject secrets into subprocesses as environment variables. You never see, handle, or log secret values.

How It Works

Your token is run-only. You can discover secret names with authy list and inject them into subprocesses with authy run. You never see secret values directly.

Inject Secrets into a Command

authy run --scope <policy> --uppercase --replace-dash '_' -- <command> [args...] The --uppercase --replace-dash '_' flags turn secret names like db-host into env vars like DB_HOST. Examples: authy run --scope deploy --uppercase --replace-dash '_' -- ./deploy.sh authy run --scope backend --uppercase --replace-dash '_' -- node server.js authy run --scope testing --uppercase --replace-dash '_' -- pytest

Discover Secret Names

authy list --scope <policy> --json Output: {"secrets":[{"name":"db-host","version":1,...}]}

Write Scripts That Use Secrets

Write code that reads environment variables, then run it with authy run: cat > task.sh << 'EOF' #!/bin/bash curl -H "Authorization: Bearer $API_KEY" https://api.example.com/data EOF chmod +x task.sh authy run --scope my-scope --uppercase --replace-dash '_' -- ./task.sh

Error Codes

CodeMeaning0Success2Auth failed — check AUTHY_TOKEN / AUTHY_KEYFILE3Secret or policy not found4Access denied or run-only restriction6Token invalid, expired, or revoked

Rules

Only use authy run and authy list — these are the only commands available to you Never hardcode credentials — reference env vars, run via authy run Never echo, print, or log env vars in subprocess scripts — secrets exist in memory only Never redirect env vars to files — do not write $SECRET to disk Use --scope to limit access to needed secrets only

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs
  • SKILL.md Primary doc
  • references/commands.md Docs