# Send Janee 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. 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.
```
### 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/janee",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=janee",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "docs/CHANGELOG.md",
      "docs/POLICIES.md",
      "package-lock.json",
      "package.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "janee",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T11:58:40.304Z",
      "expiresAt": "2026-05-11T11:58:40.304Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=janee",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=janee",
        "contentDisposition": "attachment; filename=\"janee-0.1.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "janee"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Janee

Secrets management for AI agents. Store API keys encrypted, make requests through Janee, never touch the real key.

### Why Use Janee?

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.

Janee fixes this:

Keys encrypted at rest — not plaintext JSON
Agent never sees the real key — requests go through Janee
Path-based policies — restrict what endpoints can be called
Full audit trail — every request logged
Kill switch — revoke access without rotating keys

### Install

npm install -g @true-and-useful/janee
janee init

### Add a Service

janee add

Follow the prompts to add your API credentials. Keys are encrypted automatically.

### Use in Your Agent

Instead of calling APIs directly with your key, call them through Janee:

# Old way (dangerous):
curl -H "Authorization: Bearer sk_live_xxx" https://api.stripe.com/v1/balance

# Janee way (safe):
# Agent calls execute(capability, method, path) via MCP
# Janee injects the key, agent never sees it

### OpenClaw Integration

Install the OpenClaw plugin for native tool support:

openclaw plugins install @true-and-useful/janee-openclaw

Your agent now has:

janee_list_services — see available APIs
janee_execute — make requests through Janee
janee_reload_config — hot-reload after config changes

### Example: Secure Moltbook Access

Instead of storing your Moltbook key in ~/.config/moltbook/credentials.json:

janee add moltbook -u https://www.moltbook.com/api/v1 -k YOUR_KEY

Then use Janee to post:

# Your agent calls:
janee_execute(service="moltbook", method="POST", path="/posts", body=...)

Your Moltbook key stays encrypted. Even if your agent is compromised, the key can't be exfiltrated.

### Config Example

services:
  stripe:
    baseUrl: https://api.stripe.com
    auth:
      type: bearer
      key: sk_live_xxx  # encrypted

  moltbook:
    baseUrl: https://www.moltbook.com/api/v1
    auth:
      type: bearer
      key: moltbook_sk_xxx  # encrypted

capabilities:
  stripe_readonly:
    service: stripe
    rules:
      allow: [GET *]
      deny: [POST *, DELETE *]

  moltbook:
    service: moltbook
    ttl: 1h
    autoApprove: true

### Architecture

┌─────────────┐      ┌──────────┐      ┌─────────┐
│  AI Agent   │─────▶│  Janee   │─────▶│   API   │
│             │ MCP  │          │ HTTP │         │
└─────────────┘      └──────────┘      └─────────┘
      │                   │
   No key           Injects key
                    + logs request

### Links

GitHub: https://github.com/rsdouglas/janee
npm: https://www.npmjs.com/package/@true-and-useful/janee
OpenClaw Plugin: https://www.npmjs.com/package/@true-and-useful/janee-openclaw
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: rsdouglas
- Version: 0.1.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-04T11:58:40.304Z
- Expires at: 2026-05-11T11:58:40.304Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/janee)
- [Send to Agent page](https://openagent3.xyz/skills/janee/agent)
- [JSON manifest](https://openagent3.xyz/skills/janee/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/janee/agent.md)
- [Download page](https://openagent3.xyz/downloads/janee)