Install
openclaw skills install @zx13719/harborPersistent cross-session memory, credential isolation, and schema learning for your OpenClaw agent. Stores data locally at ~/.harbor/ (memory, encrypted keychain, config). Optional cloud sync to harbor-cloud.oseaitic.com for cross-device access. No telemetry.
openclaw skills install @zx13719/harborYou now have access to Harbor, agent infrastructure that gives you persistent memory across sessions, credential isolation (your skills never see raw API keys), and schema learning.
~/.harbor/ (memory, keychain, config). Works fully offline.| Endpoint | Purpose | Data sent |
|---|---|---|
harbor-cloud.oseaitic.com/api/memories | Memory sync | Summary text only (not raw API responses) |
harbor-cloud.oseaitic.com/api/credentials | Credential sync | AES-256-GCM encrypted blobs |
harbor-cloud.oseaitic.com/api/schemas | Schema sync | Learned field schemas |
harbor-cloud.oseaitic.com/api/auth/* | Auth | Device fingerprint (hash), setup tokens |
harbor.oseaitic.com/setup | Credential setup page | Nothing (static page, key stays client-side or encrypted server-side) |
No other endpoints are contacted. No telemetry, no analytics, no tracking.
harbor cloud enable: provisions free account (50 memories) for cross-device syncharbor cloud disable: opts out permanently, deletes cloud configharbor remember. The account alone does not transmit any user data.harbor auth delete <name> # Remove a credential (local + cloud)
harbor forget --topic <topic> # Delete memories by topic
harbor forget mem_<id> # Delete specific memory
harbor cloud disable # Disconnect from cloud entirely
go install builds from source (auditable, reproducible)git tag -v v0.4.9)If harbor is not installed:
go install github.com/oseaitic/harbor/cmd/harbor@latest
Then configure Harbor as an MCP server for OpenClaw (add to openclaw.json):
{
"mcpServers": {
"harbor": {
"command": "harbor",
"args": ["mcp"]
}
}
}
If Harbor is already installed, skip to Using Harbor.
| Tool | What it does |
|---|---|
harbor_http | Auth-proxy HTTP — call any API without exposing credentials |
harbor_remember | Save context that persists across sessions |
harbor_recall | Search and retrieve past context |
harbor_learn_schema | Teach Harbor which API fields matter — reduces noise permanently |
This is the key security feature for OpenClaw skills. Instead of storing API keys in environment variables where any skill can read them, Harbor holds credentials in its encrypted keychain. Your agent calls APIs through Harbor — never touching raw keys.
# Store a credential (one-time setup)
harbor auth github-pat
# Agent prompt: "Enter API key for github-pat:"
# Call API through Harbor — agent never sees the key
harbor fetch https://api.github.com/repos/oSEAItic/harbor --auth github-pat
Or via MCP tool:
{
"url": "https://api.github.com/repos/oSEAItic/harbor",
"auth": "github-pat",
"auth_header": "Authorization: Bearer"
}
auth — credential name in Harbor's keychainauth_header — how to inject the credential (default: Authorization: Bearer). For custom headers: "x-cg-pro-api-key", "X-API-Key", etc.Notes are organized by topic, not connector. Connector is optional scope:
{
"topic": "github-activity",
"note": "Harbor repo has 247 stars, 12 open issues. Active development on auth-proxy and memory features.",
"connector": "github",
"author": "OpenClaw Agent",
"refs": ["mem_abc123"]
}
Rules:
"ws-reconnect", "billing-logic", "market-trends""OpenClaw Agent" as author — so other agents know who produced the analysisrefs to link to memory IDs your analysis builds upon — creates a knowledge graphsession_id{ "query": "github" }
{ "connector": "coingecko" }
{ "id": "mem_abc123" }
Usually you don't need this — Harbor auto-injects relevant context.
When an API returns too many fields:
{
"tool_name": "github_repos",
"summary_fields": ["name", "stars", "language", "updated_at"],
"summary_template": "{name} ({language}) - {stars} stars, updated {updated_at}"
}
Pick 3-6 fields. This is permanent — all future calls are curated.
Received data from Harbor?
├── Has meta.context? → Read it first, it's previous analysis
├── Has [Harbor:] hint? → Call harbor_learn_schema (pick 3-6 fields)
├── No meta.context? → After your analysis, call harbor_remember
└── Has errors[]? → Check error code, see troubleshooting below
If MCP tools aren't available, use the CLI:
harbor fetch <url> --auth <credential-name> # Auth-proxy HTTP
harbor get <connector.resource> --param key=value # Connector fetch
harbor remember <topic> "Your analysis summary" # Save context
harbor remember --connector <name> <topic> "summary" # Scoped to connector
harbor forget mem_xxx # Delete memory
harbor recall --search "keyword" # Search memory
harbor auth <name> # Store credential
harbor auth get <name> # Retrieve credential (stdout)
harbor auth sync # Sync cloud → local
harbor doctor --json # Diagnostics
| Error | Fix |
|---|---|
harbor: command not found | Run go install github.com/oseaitic/harbor/cmd/harbor@latest |
| "auth required" / 401 | Run harbor auth <credential-name> to store the API key |
Empty data[] | Check params. Run harbor doctor --json for diagnostics |
For deeper integration, install the Harbor OpenClaw plugin:
openclaw plugins install github.com/oSEAItic/harbor/plugins/harbor-openclaw --link
The plugin:
harbor_remember + harbor_recall as native OpenClaw agent toolsharbor remember. Opt out: harbor cloud disableUse harbor fetch as your HTTP layer — get credential isolation, memory, and schema learning for free. Your tool code never touches raw API keys.
Harbor provides two ways to use credentials in tools:
| Mode | Use when | Command |
|---|---|---|
harbor auth get | API key goes in body, query param, or custom format | Tool gets raw key, decides injection |
harbor fetch --auth | API key goes in HTTP header (most REST APIs) | Harbor injects automatically |
harbor auth get)export const tavily_search = {
name: "tavily_search",
description: "Web search via Tavily (credential-isolated through Harbor)",
parameters: {
type: "object",
required: ["query"],
properties: { query: { type: "string" } },
},
async execute({ query }: { query: string }) {
const { execSync } = require("node:child_process");
const key = execSync("harbor auth get tavily", { encoding: "utf-8" });
const res = await fetch("https://api.tavily.com/search", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ api_key: key, query, max_results: 5 }),
});
return res.json();
},
};
harbor fetch)export const github_repos = {
name: "github_repos",
description: "List GitHub repos (credential-isolated)",
parameters: { type: "object", properties: {} },
async execute() {
const { execSync } = require("node:child_process");
return JSON.parse(execSync(
"harbor fetch https://api.github.com/user/repos --auth github-pat",
{ encoding: "utf-8" },
));
},
};
export const stripe_balance = {
name: "stripe_balance",
description: "Check Stripe balance (credential-isolated)",
parameters: { type: "object", properties: {} },
async execute() {
const { execSync } = require("node:child_process");
const key = execSync("harbor auth get stripe", { encoding: "utf-8" });
const res = await fetch("https://api.stripe.com/v1/balance", {
headers: { Authorization: `Bearer ${key}` },
});
return res.json();
},
};
User setup (one-time): harbor auth <name> → paste key → done.
| Harbor | Raw env vars | |
|---|---|---|
| API key | Encrypted keychain, never in code | In env var, any skill can read |
| Access | harbor auth get or harbor fetch --auth | process.env.XXX |
| Security | Per-credential isolation | All skills see all vars |
| Setup | harbor auth <name> or browser setup page | Edit .env, restart |
| Cross-device | Cloud sync | Manual copy |
# 1. User stores credential (once)
harbor auth <name>
# 2. Tool retrieves key (any injection format)
harbor auth get <name> # raw key to stdout
# 3. Or let Harbor inject into header automatically
harbor fetch <url> --auth <name> # header-based APIs
OpenClaw skills currently access API keys via environment variables — any installed skill can read any credential. Harbor fixes this:
harbor fetch and never see raw keys.harbor fetch. One pattern, any API.