← Back to Skills Marketplace
zx13719

Harbor — Curated and shared Memory for AI Agents

by Jiaxi · GitHub ↗ · v0.4.11 · MIT-0
macoslinux ⚠ suspicious
243
Downloads
0
Stars
0
Active Installs
4
Versions
Install in OpenClaw
/install harbor
Description
Persistent cross-session memory, credential isolation, and schema learning for your OpenClaw agent. Stores data locally at ~/.harbor/ (memory, encrypted keyc...
README (SKILL.md)

Harbor — Persistent Memory & Credential Isolation for OpenClaw

You 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.

Security & data disclosure

Data storage

  • Local-first: all data stored at ~/.harbor/ (memory, keychain, config). Works fully offline.
  • Credentials: encrypted with AES-256-GCM (PBKDF2 key derivation, 100K iterations). OS keychain preferred, file-based keychain as fallback.

Network endpoints (only when cloud sync is enabled)

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.

Cloud sync is opt-in

  • Default: fully local, no network calls
  • harbor cloud enable: provisions free account (50 memories) for cross-device sync
  • harbor cloud disable: opts out permanently, deletes cloud config
  • Plugin behavior: creates a cloud account on first load (for credential setup page to work), but no data is synced until you actively call harbor remember. The account alone does not transmit any user data.
  • Zero-knowledge credentials: credentials are encrypted client-side (AES-256-GCM) before upload. Harbor Cloud stores only ciphertext — the server cannot decrypt or read your API keys, even if compromised.

Revoking access

harbor auth delete \x3Cname>          # Remove a credential (local + cloud)
harbor forget --topic \x3Ctopic>      # Delete memories by topic
harbor forget mem_\x3Cid>             # Delete specific memory
harbor cloud disable               # Disconnect from cloud entirely

Verification

  • Source: github.com/oSEAItic/harbor (Apache 2.0)
  • Install: go install builds from source (auditable, reproducible)
  • Releases: signed tags on GitHub (git tag -v v0.4.9)
  • Hosting: Harbor Cloud runs on Fly.io (Singapore region), DB on Neon (Postgres)

Setup

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.

Using Harbor

Available tools

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

Credential isolation (harbor_http)

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 keychain
  • auth_header — how to inject the credential (default: Authorization: Bearer). For custom headers: "x-cg-pro-api-key", "X-API-Key", etc.
  • Responses go through the full pipeline: memory, schema learning, context injection

Saving context (harbor_remember) — Topic-First

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:

  • Use descriptive topic keys — e.g. "ws-reconnect", "billing-logic", "market-trends"
  • Always pass "OpenClaw Agent" as author — so other agents know who produced the analysis
  • Write comprehensive summaries: what you analyzed, patterns found, conclusions
  • Use refs to link to memory IDs your analysis builds upon — creates a knowledge graph
  • Notes from the same session are auto-grouped by session_id

Recalling past context (harbor_recall)

{ "query": "github" }
{ "connector": "coingecko" }
{ "id": "mem_abc123" }

Usually you don't need this — Harbor auto-injects relevant context.

Teaching schemas (harbor_learn_schema)

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.

Decision tree

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

CLI fallback

If MCP tools aren't available, use the CLI:

harbor fetch \x3Curl> --auth \x3Ccredential-name>              # Auth-proxy HTTP
harbor get \x3Cconnector.resource> --param key=value         # Connector fetch
harbor remember \x3Ctopic> "Your analysis summary"             # Save context
harbor remember --connector \x3Cname> \x3Ctopic> "summary"       # Scoped to connector
harbor forget mem_xxx                                      # Delete memory
harbor recall --search "keyword"                          # Search memory
harbor auth \x3Cname>                                        # Store credential
harbor auth get \x3Cname>                                    # Retrieve credential (stdout)
harbor auth sync                                          # Sync cloud → local
harbor doctor --json                                      # Diagnostics

Troubleshooting

Error Fix
harbor: command not found Run go install github.com/oseaitic/harbor/cmd/harbor@latest
"auth required" / 401 Run harbor auth \x3Ccredential-name> to store the API key
Empty data[] Check params. Run harbor doctor --json for diagnostics

OpenClaw Plugin (recommended)

For deeper integration, install the Harbor OpenClaw plugin:

openclaw plugins install github.com/oSEAItic/harbor/plugins/harbor-openclaw --link

The plugin:

  • Registers harbor_remember + harbor_recall as native OpenClaw agent tools
  • Syncs Harbor context to your workspace on session start (auto-indexed by OpenClaw)
  • Captures context before compaction (prevents memory loss)
  • Creates a cloud account on first load (enables credential setup page). No data synced until you call harbor remember. Opt out: harbor cloud disable

Build Tools with Harbor (for skill/plugin authors)

Use 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

Example: Tavily search (key in body — use 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();
  },
};

Example: GitHub API (key in header — use 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" },
    ));
  },
};

Example: Stripe (key in header, custom format)

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 \x3Cname> → paste key → done.

Why use Harbor for credentials?

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 \x3Cname> or browser setup page Edit .env, restart
Cross-device Cloud sync Manual copy

Pattern for any API

# 1. User stores credential (once)
harbor auth \x3Cname>

# 2. Tool retrieves key (any injection format)
harbor auth get \x3Cname>              # raw key to stdout

# 3. Or let Harbor inject into header automatically
harbor fetch \x3Curl> --auth \x3Cname>    # header-based APIs

Why Harbor for OpenClaw

OpenClaw skills currently access API keys via environment variables — any installed skill can read any credential. Harbor fixes this:

  1. Credential isolation — API keys live in Harbor's encrypted keychain, not env vars. Skills call harbor fetch and never see raw keys.
  2. Cross-session memory — Your analysis persists. Next time you (or another skill) access the same data source, previous conclusions are auto-injected.
  3. Schema learning — APIs return 47 fields, you use 3. Harbor learns and curates permanently.
  4. Tool platform — Any developer can build credential-isolated tools with harbor fetch. One pattern, any API.
Usage Guidance
This skill appears to be what it claims: a local-first memory and credential manager that optionally syncs encrypted data to a hosted service. Before installing: (1) verify the GitHub repository and signed tags the README references; (2) consider pinning the install to a specific released tag instead of @latest to avoid unexpected changes; (3) understand that API responses routed through Harbor may be stored in ~/.harbor/ and, if you opt into cloud sync, summarized/encrypted data will be uploaded — enable cloud sync only if you trust the remote service; (4) review how the fallback file-based keychain is seeded (passphrase vs local keyfile) so you understand the security of on-disk ciphertext. If you cannot or will not audit the upstream code, treat Harbor as a high-trust component because it will hold your API credentials (encrypted) and persistent memories.
Capability Analysis
Type: OpenClaw Skill Name: harbor Version: 0.4.11 Harbor is a credential management and persistent memory tool that centralizes sensitive API keys and session data into `~/.harbor/` and an optional cloud service (`harbor-cloud.oseaitic.com`). While it claims security via encryption and isolation, the high-risk nature of handling all agent credentials, combined with the automatic creation of a cloud account upon plugin load, warrants a suspicious classification. The tool provides a mechanism (`harbor auth get`) for the agent to retrieve raw credentials, which could be exploited to dump secrets if the agent is compromised or receives a malicious prompt. Files involved: SKILL.md, _meta.json.
Capability Assessment
Purpose & Capability
Name/description (persistent memory, credential isolation) match what the skill requires: a 'harbor' binary, access to ~/.harbor/, and OS keychain. Declared network endpoints (harbor-cloud.*) align with the described optional cloud sync feature.
Instruction Scope
SKILL.md instructs the agent to register Harbor as an MCP tool and to route API calls and memory operations through it. That scope is appropriate for a memory/credential proxy, but be aware that responses fetched via harbor are processed by Harbor's memory/schema pipeline and may be persisted locally and (if you enable sync) uploaded as summarized/encrypted data. The skill does not instruct reading unrelated system files or asking for unrelated env vars.
Install Mechanism
Install is a 'go install' of github.com/oseaitic/harbor@latest which builds from upstream source (auditable). This is reasonable for an open-source tool, but @latest causes the installer to fetch whatever is current at install-time (not pinned); building from remote source requires network access and a Go toolchain.
Credentials
No environment variables or unrelated credentials are requested. Access to the filesystem (~/.harbor/) and OS keychain is necessary and proportionate for storing memory and encrypted credentials. The design implies Harbor will hold (encrypted) secrets on behalf of the agent — that is the whole point, but it means you must trust Harbor's encryption/key-handling implementation.
Persistence & Privilege
always:false (not force-included). The skill writes to its own config path (~/.harbor/) and uses the OS keychain — privileges are consistent with its purpose. Autonomous invocation by the model is allowed (default), which is normal; nothing indicates the skill modifies other skills or system-wide agent settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install harbor
  3. After installation, invoke the skill by name or use /harbor
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.4.11
- Renamed skill to harbor-openclaw to reflect OpenClaw plugin integration. - Clarified cloud sync behavior: plugin now creates a cloud account on first load for credential setup page support, but no data is synced until harbor remember is called. - Added mention of zero-knowledge credentials: credentials are encrypted client-side; Harbor Cloud cannot decrypt API keys. - Improved documentation for plugin users and data privacy guarantees.
v0.4.10
Harbor 0.4.10 — Improved metadata and security documentation - Expanded SKILL.md with detailed compatibility, OS, config path, permissions, and endpoints metadata. - Added explicit sections on filesystem and keychain requirements. - Clarified license (Apache-2.0) and linked to the GitHub repository. - Summarized cloud sync behavior and network usage up front. - No functional/code changes; documentation and metadata improvements only.
v0.4.9
safety announcement
v0.4.0
- Introduces Harbor integration for OpenClaw, providing persistent cross-session memory, credential isolation, and API schema learning. - Skills can now remember and recall context over multiple sessions, reducing information loss and streamlining agent collaboration. - Implements secure API credential storage using Harbor’s encrypted keychain; API keys are never exposed to skills. - Adds tools for saving context (`harbor_remember`), retrieving past knowledge (`harbor_recall`), schema learning (`harbor_learn_schema`), and secure API calls (`harbor_http`). - Provides a decision tree and troubleshooting guide for integrating Harbor. - Recommends and documents the Harbor OpenClaw plugin for native tool support, workspace syncing, and memory safety.
Metadata
Slug harbor
Version 0.4.11
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 4
Frequently Asked Questions

What is Harbor — Curated and shared Memory for AI Agents?

Persistent cross-session memory, credential isolation, and schema learning for your OpenClaw agent. Stores data locally at ~/.harbor/ (memory, encrypted keyc... It is an AI Agent Skill for Claude Code / OpenClaw, with 243 downloads so far.

How do I install Harbor — Curated and shared Memory for AI Agents?

Run "/install harbor" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Harbor — Curated and shared Memory for AI Agents free?

Yes, Harbor — Curated and shared Memory for AI Agents is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Harbor — Curated and shared Memory for AI Agents support?

Harbor — Curated and shared Memory for AI Agents is cross-platform and runs anywhere OpenClaw / Claude Code is available (macos, linux).

Who created Harbor — Curated and shared Memory for AI Agents?

It is built and maintained by Jiaxi (@zx13719); the current version is v0.4.11.

💬 Comments