{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gopass",
    "name": "gopass",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/erdGeclaw/gopass",
    "canonicalUrl": "https://clawhub.ai/erdGeclaw/gopass",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/gopass",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gopass",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/gopass"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/gopass",
    "agentPageUrl": "https://openagent3.xyz/skills/gopass/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gopass/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gopass/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "gopass Skill",
        "body": "gopass is a CLI password manager for teams, built on GPG and Git."
      },
      {
        "title": "Prerequisites",
        "body": "gopass binary installed\nGPG key available (gopass uses GPG for encryption)\nStore initialized (gopass init or gopass setup)"
      },
      {
        "title": "List secrets",
        "body": "gopass ls\ngopass ls -f          # flat list"
      },
      {
        "title": "Show a secret",
        "body": "gopass show path/to/secret           # full entry (password + metadata)\ngopass show -o path/to/secret        # password only\ngopass show -c path/to/secret        # copy to clipboard\ngopass show path/to/secret key       # show specific field"
      },
      {
        "title": "Create / Update",
        "body": "gopass insert path/to/secret         # interactive\ngopass edit path/to/secret           # open in $EDITOR\necho \"mypassword\" | gopass insert -f path/to/secret   # non-interactive\n\nAdd key-value metadata below the first line (password):\n\nmysecretpassword\nusername: erdGecrawl\nurl: https://github.com\nnotes: Created 2026-01-31"
      },
      {
        "title": "Generate passwords",
        "body": "gopass generate path/to/secret 24           # 24-char password\ngopass generate -s path/to/secret 32        # with symbols\ngopass generate --xkcd path/to/secret 4     # passphrase (4 words)"
      },
      {
        "title": "Delete",
        "body": "gopass rm path/to/secret\ngopass rm -r path/to/folder          # recursive"
      },
      {
        "title": "Move / Copy",
        "body": "gopass mv old/path new/path\ngopass cp source/path dest/path"
      },
      {
        "title": "Search",
        "body": "gopass find github                   # search entry names\ngopass grep \"username\"               # search entry contents"
      },
      {
        "title": "Initialize",
        "body": "gopass setup                         # guided first-time setup\ngopass init <gpg-id>                 # init with specific GPG key"
      },
      {
        "title": "Mount sub-stores",
        "body": "gopass mounts add work /path/to/work-store\ngopass mounts remove work\ngopass mounts                        # list mounts"
      },
      {
        "title": "Sync (git push/pull)",
        "body": "gopass sync"
      },
      {
        "title": "Recipients (team access)",
        "body": "gopass recipients                    # list\ngopass recipients add <gpg-id>\ngopass recipients remove <gpg-id>"
      },
      {
        "title": "TOTP",
        "body": "gopass otp path/to/secret            # show current TOTP code\n\nStore TOTP URI as totp: otpauth://totp/... in the entry body."
      },
      {
        "title": "Non-interactive Tips",
        "body": "Use echo \"pw\" | gopass insert -f path for scripted inserts\nUse gopass show -o path for machine-readable password-only output\nUse gopass show -f path to suppress warnings\nSet GOPASS_NO_NOTIFY=true to suppress desktop notifications\nUse gopass --yes to auto-confirm prompts"
      }
    ],
    "body": "gopass Skill\n\ngopass is a CLI password manager for teams, built on GPG and Git.\n\nPrerequisites\ngopass binary installed\nGPG key available (gopass uses GPG for encryption)\nStore initialized (gopass init or gopass setup)\nCommon Operations\nList secrets\ngopass ls\ngopass ls -f          # flat list\n\nShow a secret\ngopass show path/to/secret           # full entry (password + metadata)\ngopass show -o path/to/secret        # password only\ngopass show -c path/to/secret        # copy to clipboard\ngopass show path/to/secret key       # show specific field\n\nCreate / Update\ngopass insert path/to/secret         # interactive\ngopass edit path/to/secret           # open in $EDITOR\necho \"mypassword\" | gopass insert -f path/to/secret   # non-interactive\n\n\nAdd key-value metadata below the first line (password):\n\nmysecretpassword\nusername: erdGecrawl\nurl: https://github.com\nnotes: Created 2026-01-31\n\nGenerate passwords\ngopass generate path/to/secret 24           # 24-char password\ngopass generate -s path/to/secret 32        # with symbols\ngopass generate --xkcd path/to/secret 4     # passphrase (4 words)\n\nDelete\ngopass rm path/to/secret\ngopass rm -r path/to/folder          # recursive\n\nMove / Copy\ngopass mv old/path new/path\ngopass cp source/path dest/path\n\nSearch\ngopass find github                   # search entry names\ngopass grep \"username\"               # search entry contents\n\nStore Management\nInitialize\ngopass setup                         # guided first-time setup\ngopass init <gpg-id>                 # init with specific GPG key\n\nMount sub-stores\ngopass mounts add work /path/to/work-store\ngopass mounts remove work\ngopass mounts                        # list mounts\n\nSync (git push/pull)\ngopass sync\n\nRecipients (team access)\ngopass recipients                    # list\ngopass recipients add <gpg-id>\ngopass recipients remove <gpg-id>\n\nTOTP\ngopass otp path/to/secret            # show current TOTP code\n\n\nStore TOTP URI as totp: otpauth://totp/... in the entry body.\n\nNon-interactive Tips\nUse echo \"pw\" | gopass insert -f path for scripted inserts\nUse gopass show -o path for machine-readable password-only output\nUse gopass show -f path to suppress warnings\nSet GOPASS_NO_NOTIFY=true to suppress desktop notifications\nUse gopass --yes to auto-confirm prompts"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/erdGeclaw/gopass",
    "publisherUrl": "https://clawhub.ai/erdGeclaw/gopass",
    "owner": "erdGeclaw",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/gopass",
    "downloadUrl": "https://openagent3.xyz/downloads/gopass",
    "agentUrl": "https://openagent3.xyz/skills/gopass/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gopass/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gopass/agent.md"
  }
}