# Send Devtools Secrets to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "devtools-secrets",
    "name": "Devtools Secrets",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/basher83/devtools-secrets",
    "canonicalUrl": "https://clawhub.ai/basher83/devtools-secrets",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/devtools-secrets",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=devtools-secrets",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/fnox-configuration.md",
      "references/infisical-patterns.md",
      "references/mise-integration.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/devtools-secrets"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/devtools-secrets",
    "downloadUrl": "https://openagent3.xyz/downloads/devtools-secrets",
    "agentUrl": "https://openagent3.xyz/skills/devtools-secrets/agent",
    "manifestUrl": "https://openagent3.xyz/skills/devtools-secrets/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/devtools-secrets/agent.md"
  }
}
```
## Documentation

### DevTools Secrets

Knowledge and guardrails for the mise + fnox + infisical secrets toolchain.

### Toolchain Validation

IMPORTANT: Check tool availability before proceeding with any guidance.

mise: !command -v mise >/dev/null 2>&1 && echo "INSTALLED ($(mise --version 2>/dev/null | head -1))" || echo "MISSING — install with: curl https://mise.run | sh"
fnox: !command -v fnox >/dev/null 2>&1 && echo "INSTALLED ($(fnox --version 2>/dev/null | head -1))" || echo "MISSING — install with: mise use -g fnox"
infisical: !command -v infisical >/dev/null 2>&1 && echo "INSTALLED ($(infisical --version 2>/dev/null | head -1))" || echo "MISSING — install with: mise use -g infisical"

If any tool above shows MISSING, stop and help the user install it before
proceeding. Do not provide configuration guidance for tools that aren't
installed.

### Project Config State

fnox.toml: !test -f fnox.toml && echo "YES" || echo "NO (run: fnox init)"
.infisical.json: !test -f .infisical.json && cat .infisical.json || echo "NO (run: infisical init)"
mise.toml env section: !grep -A5 '^\\[env\\]' mise.toml 2>/dev/null || echo "No env section"

### System/Global Config

mise global config: !test -f ~/.config/mise/config.toml && head -10 ~/.config/mise/config.toml || echo "No global mise config"
fnox global config: !test -f ~/.config/fnox/config.toml && head -10 ~/.config/fnox/config.toml || echo "No global fnox config"
infisical logged in: !infisical user get 2>/dev/null | head -3 || echo "Not logged in or not installed"

### Tool Roles

ToolRolemiseTask runner + env manager. Orchestrates dev tooling, runs tasks, manages env vars through plugins.fnoxUnified secret interface. Abstracts over multiple secret backends (infisical, age, env files) with a single CLI.infisicalRemote secrets backend. Stores, syncs, and injects secrets from a central server.

These tools complement each other: infisical stores secrets remotely, fnox
provides a unified local interface to them, and mise orchestrates tasks that
consume secrets via fnox.

### Integration Chain

The typical flow:

fnox.toml defines infisical as a provider with project/environment config
fnox exec -- resolves secrets from the provider and injects them as env vars
mise tasks can wrap fnox exec to run commands with secrets injected
Alternatively, mise env plugins can call fnox directly for auto-injection on cd

### Secrets Enforcement

This project enforces secrets hygiene via always-on hooks in
.claude/settings.json (not scoped to this skill):

block-hardcoded-secrets.py — Blocks Edit/Write operations containing
hardcoded API keys, tokens, passwords, or known secret prefixes (sk-, ghp_,
AKIA, xox[bpras]-)
block-bare-secret-exports.py — Blocks Bash commands that export
secret-like env vars without wrapping in fnox exec or infisical run

These hooks are always active regardless of whether this skill is loaded.

### Configuration Patterns

Detailed configuration for each tool is in the reference files:

@references/mise-integration.md — mise env plugins, tasks, fnox integration
@references/fnox-configuration.md — fnox.toml structure, providers, profiles
@references/infisical-patterns.md — infisical CLI, scanning, CI/CD

### Gotchas

Order matters: fnox.toml must exist before fnox exec works. Run
fnox init if missing.
Profile mismatches: fnox profiles (dev/staging/prod) must match infisical
environment slugs. A mismatch silently returns empty secrets.
.infisical.json is safe to commit — it contains project IDs and
workspace config, not secrets.
fnox.toml may contain sensitive paths — review before committing if
using age-encrypted file provider.
mise env plugins run on cd — if a plugin calls fnox and fnox is
misconfigured, you get errors on every directory change.
infisical auth expires — infisical login tokens have a TTL. CI/CD
should use INFISICAL_TOKEN (service token) instead.
Token path scope is explicit — a service token scoped to / cannot
access secrets in child paths like /git_actions. Each path requires its
own token or use --recursive with the CLI directly.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: basher83
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/devtools-secrets)
- [Send to Agent page](https://openagent3.xyz/skills/devtools-secrets/agent)
- [JSON manifest](https://openagent3.xyz/skills/devtools-secrets/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/devtools-secrets/agent.md)
- [Download page](https://openagent3.xyz/downloads/devtools-secrets)