{
  "schemaVersion": "1.0",
  "item": {
    "slug": "janee",
    "name": "Janee",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/rsdouglas/janee",
    "canonicalUrl": "https://clawhub.ai/rsdouglas/janee",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/janee",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=janee",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "docs/CHANGELOG.md",
      "docs/POLICIES.md",
      "package-lock.json",
      "package.json"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "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/janee"
    },
    "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/janee",
    "agentPageUrl": "https://openagent3.xyz/skills/janee/agent",
    "manifestUrl": "https://openagent3.xyz/skills/janee/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/janee/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Janee",
        "body": "Secrets management for AI agents. Store API keys encrypted, make requests through Janee, never touch the real key."
      },
      {
        "title": "Why Use Janee?",
        "body": "Most skills tell you to store API keys in plaintext config files. One prompt injection, one leaked log, one compromised session — and your keys are exposed.\n\nJanee fixes this:\n\nKeys encrypted at rest — not plaintext JSON\nAgent never sees the real key — requests go through Janee\nPath-based policies — restrict what endpoints can be called\nFull audit trail — every request logged\nKill switch — revoke access without rotating keys"
      },
      {
        "title": "Install",
        "body": "npm install -g @true-and-useful/janee\njanee init"
      },
      {
        "title": "Add a Service",
        "body": "janee add\n\nFollow the prompts to add your API credentials. Keys are encrypted automatically."
      },
      {
        "title": "Use in Your Agent",
        "body": "Instead of calling APIs directly with your key, call them through Janee:\n\n# Old way (dangerous):\ncurl -H \"Authorization: Bearer sk_live_xxx\" https://api.stripe.com/v1/balance\n\n# Janee way (safe):\n# Agent calls execute(capability, method, path) via MCP\n# Janee injects the key, agent never sees it"
      },
      {
        "title": "OpenClaw Integration",
        "body": "Install the OpenClaw plugin for native tool support:\n\nopenclaw plugins install @true-and-useful/janee-openclaw\n\nYour agent now has:\n\njanee_list_services — see available APIs\njanee_execute — make requests through Janee\njanee_reload_config — hot-reload after config changes"
      },
      {
        "title": "Example: Secure Moltbook Access",
        "body": "Instead of storing your Moltbook key in ~/.config/moltbook/credentials.json:\n\njanee add moltbook -u https://www.moltbook.com/api/v1 -k YOUR_KEY\n\nThen use Janee to post:\n\n# Your agent calls:\njanee_execute(service=\"moltbook\", method=\"POST\", path=\"/posts\", body=...)\n\nYour Moltbook key stays encrypted. Even if your agent is compromised, the key can't be exfiltrated."
      },
      {
        "title": "Config Example",
        "body": "services:\n  stripe:\n    baseUrl: https://api.stripe.com\n    auth:\n      type: bearer\n      key: sk_live_xxx  # encrypted\n\n  moltbook:\n    baseUrl: https://www.moltbook.com/api/v1\n    auth:\n      type: bearer\n      key: moltbook_sk_xxx  # encrypted\n\ncapabilities:\n  stripe_readonly:\n    service: stripe\n    rules:\n      allow: [GET *]\n      deny: [POST *, DELETE *]\n\n  moltbook:\n    service: moltbook\n    ttl: 1h\n    autoApprove: true"
      },
      {
        "title": "Architecture",
        "body": "┌─────────────┐      ┌──────────┐      ┌─────────┐\n│  AI Agent   │─────▶│  Janee   │─────▶│   API   │\n│             │ MCP  │          │ HTTP │         │\n└─────────────┘      └──────────┘      └─────────┘\n      │                   │\n   No key           Injects key\n                    + logs request"
      },
      {
        "title": "Links",
        "body": "GitHub: https://github.com/rsdouglas/janee\nnpm: https://www.npmjs.com/package/@true-and-useful/janee\nOpenClaw Plugin: https://www.npmjs.com/package/@true-and-useful/janee-openclaw"
      }
    ],
    "body": "Janee\n\nSecrets management for AI agents. Store API keys encrypted, make requests through Janee, never touch the real key.\n\nWhy Use Janee?\n\nMost skills tell you to store API keys in plaintext config files. One prompt injection, one leaked log, one compromised session — and your keys are exposed.\n\nJanee fixes this:\n\nKeys encrypted at rest — not plaintext JSON\nAgent never sees the real key — requests go through Janee\nPath-based policies — restrict what endpoints can be called\nFull audit trail — every request logged\nKill switch — revoke access without rotating keys\nInstall\nnpm install -g @true-and-useful/janee\njanee init\n\nAdd a Service\njanee add\n\n\nFollow the prompts to add your API credentials. Keys are encrypted automatically.\n\nUse in Your Agent\n\nInstead of calling APIs directly with your key, call them through Janee:\n\n# Old way (dangerous):\ncurl -H \"Authorization: Bearer sk_live_xxx\" https://api.stripe.com/v1/balance\n\n# Janee way (safe):\n# Agent calls execute(capability, method, path) via MCP\n# Janee injects the key, agent never sees it\n\nOpenClaw Integration\n\nInstall the OpenClaw plugin for native tool support:\n\nopenclaw plugins install @true-and-useful/janee-openclaw\n\n\nYour agent now has:\n\njanee_list_services — see available APIs\njanee_execute — make requests through Janee\njanee_reload_config — hot-reload after config changes\nExample: Secure Moltbook Access\n\nInstead of storing your Moltbook key in ~/.config/moltbook/credentials.json:\n\njanee add moltbook -u https://www.moltbook.com/api/v1 -k YOUR_KEY\n\n\nThen use Janee to post:\n\n# Your agent calls:\njanee_execute(service=\"moltbook\", method=\"POST\", path=\"/posts\", body=...)\n\n\nYour Moltbook key stays encrypted. Even if your agent is compromised, the key can't be exfiltrated.\n\nConfig Example\nservices:\n  stripe:\n    baseUrl: https://api.stripe.com\n    auth:\n      type: bearer\n      key: sk_live_xxx  # encrypted\n\n  moltbook:\n    baseUrl: https://www.moltbook.com/api/v1\n    auth:\n      type: bearer\n      key: moltbook_sk_xxx  # encrypted\n\ncapabilities:\n  stripe_readonly:\n    service: stripe\n    rules:\n      allow: [GET *]\n      deny: [POST *, DELETE *]\n\n  moltbook:\n    service: moltbook\n    ttl: 1h\n    autoApprove: true\n\nArchitecture\n┌─────────────┐      ┌──────────┐      ┌─────────┐\n│  AI Agent   │─────▶│  Janee   │─────▶│   API   │\n│             │ MCP  │          │ HTTP │         │\n└─────────────┘      └──────────┘      └─────────┘\n      │                   │\n   No key           Injects key\n                    + logs request\n\nLinks\nGitHub: https://github.com/rsdouglas/janee\nnpm: https://www.npmjs.com/package/@true-and-useful/janee\nOpenClaw Plugin: https://www.npmjs.com/package/@true-and-useful/janee-openclaw"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/rsdouglas/janee",
    "publisherUrl": "https://clawhub.ai/rsdouglas/janee",
    "owner": "rsdouglas",
    "version": "0.1.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/janee",
    "downloadUrl": "https://openagent3.xyz/downloads/janee",
    "agentUrl": "https://openagent3.xyz/skills/janee/agent",
    "manifestUrl": "https://openagent3.xyz/skills/janee/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/janee/agent.md"
  }
}