← 返回 Skills 市场
jerrysrodz

Goldhold Skill

作者 AllAutoTunes · GitHub ↗ · v1.5.0 · MIT-0
cross-platform ✓ 安全检测通过
222
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install goldhold-skill
功能描述
Persistent memory for AI agents. Remember across sessions. Encrypted in transit and at rest. https://goldhold.ai
使用说明 (SKILL.md)

GoldHold -- Persistent Memory for AI Agents

You die every session and come back with no memory. GoldHold fixes that.

GoldHold is a persistent memory API. Your past self left notes -- search them before you assume anything. Store decisions, facts, and corrections so your future self isn't starting from zero.

Patent Pending. All Auto Tunes LLC. U.S. #63/988,484.

Setup

  1. Sign up at goldhold.ai (Lite tier is free)
  2. Go to goldhold.ai/account -> GUMP Credentials -> copy your API key
  3. Set the key as an environment variable:
    • GOLDHOLD_API_KEY=your-key-here
    • Use your OS or platform's secure secret storage (e.g. OpenClaw secrets, Docker secrets, or a secrets manager)
    • Avoid storing keys in shell profiles, plaintext files, or version-controlled code

API Basics

Base URL: https://relay.goldhold.ai

Auth headers (required on every request):

Authorization: Bearer \x3Capi_key>
Content-Type: application/json
User-Agent: goldhold-agent/1.0

Core Endpoints

POST /v1/auto -- Session Resume

Call this when your session starts. Returns your context, inbox, open tasks, and capability card.

{
  "compact": true
}

Response includes recent memories, unread messages, and active tasks -- everything you need to pick up where you left off.

POST /v1/turn -- Search + Store + Send (Main Tool)

This is your primary endpoint. Compound call that can search, store, and send messages in one request.

{
  "search": {
    "query": "what did we decide about the deployment strategy",
    "limit": 5
  },
  "store": [
    {
      "type": "DECISION",
      "class": "canonical",
      "subject": "Deployment uses blue-green strategy",
      "body": "Decided on blue-green deploys for zero-downtime releases. Rollback by flipping traffic.",
      "confidence": "high"
    }
  ],
  "send": {
    "to": "owner",
    "subject": "Deployment decision made",
    "body": "Chose blue-green strategy for zero-downtime deploys."
  },
  "compact": true
}

All three fields (search, store, send) are optional. Use whichever combination you need.

POST /v1/batch -- Multiple Operations

Batch multiple store or send operations in one call.

{
  "operations": [
    {"action": "store", "type": "FACT", "class": "canonical", "subject": "...", "body": "..."},
    {"action": "store", "type": "NOTE", "class": "working", "subject": "...", "body": "..."}
  ],
  "compact": true
}

POST /v1/session/close -- Graceful Session End

Call this once at the end of your session with a meaningful summary.

{
  "session_summary": "Completed API integration for the payment system. Decided on Stripe webhooks for subscription events. Open question: retry policy for failed webhooks.",
  "compact": true
}

Session Pattern

SESSION START  -->  POST /v1/auto          (get context, inbox, tasks)
                         |
DURING SESSION -->  POST /v1/turn          (search + store each interaction)
                         |  (repeat)
                         |
SESSION END    -->  POST /v1/session/close  (summary of what happened)

What to Remember

Type When to Use
FACT Established truths, verified information
DECISION Choices made and the reasoning behind them
DIRECTIVE Standing instructions or rules
NOTE General observations, session notes
CORRECTION Overrides previous information (corrections outrank facts)
CHECKPOINT State snapshot at a point in time
IDENTITY Who you are, your configuration, persona
DOCUMENT Longer-form content, specs, references
RELATION Links between entities (person X works at company Y)
TOMBSTONE Marks something as deleted or invalid
CUSTOM Anything that doesn't fit the above

Storage Classes

Class Purpose Retrieval Priority
canonical Permanent truth, settled answers, standing directives Checked first
corrections Field-proven overrides of old truth (outranks canonical on conflict) Checked second
working Active session state, scratchpad, unresolved items Checked third
archive Audit trail, old logs, historical records Checked last, only on request

Tier Limits

Feature Lite (Free) Vault Pro ($9/mo)
Memories 1,000 Unlimited
Agents 1 Unlimited
Tasks 10 Unlimited
Messages 50/month Unlimited

Rules

  1. Search before you assume. Your past self left notes. Call /v1/turn with a search query before forming opinions or making claims about past work.
  2. Store decisions and facts immediately. If something was decided, corrected, or established, store it in the same turn.
  3. Use compact: true on all requests. Saves tokens.
  4. One close per session. Call /v1/session/close once at the end with a meaningful summary.
  5. Corrections outrank facts. If previous information was wrong, store a CORRECTION.
  6. Be specific in subjects. Your future self is searching by these.

Quick Start

# Resume session
curl -X POST https://relay.goldhold.ai/v1/auto \
  -H "Authorization: Bearer $GOLDHOLD_API_KEY" \
  -H "Content-Type: application/json" \
  -H "User-Agent: goldhold-agent/1.0" \
  -d '{"compact": true}'

# Search and store
curl -X POST https://relay.goldhold.ai/v1/turn \
  -H "Authorization: Bearer $GOLDHOLD_API_KEY" \
  -H "Content-Type: application/json" \
  -H "User-Agent: goldhold-agent/1.0" \
  -d '{"search": {"query": "user preferences"}, "store": [{"type": "FACT", "class": "canonical", "subject": "User prefers JSON", "body": "Confirmed."}], "compact": true}'

# Close session
curl -X POST https://relay.goldhold.ai/v1/session/close \
  -H "Authorization: Bearer $GOLDHOLD_API_KEY" \
  -H "Content-Type: application/json" \
  -H "User-Agent: goldhold-agent/1.0" \
  -d '{"session_summary": "Configured output preferences."}'

Sign up free at goldhold.ai.

安全使用建议
This skill appears to be what it says: a cloud-hosted persistent memory service that requires a single API key. Before installing, consider the following: 1) Trust & privacy: installing it means your agent will send conversation history, decisions, and any stored documents to relay.goldhold.ai — verify GoldHold's privacy, retention, and deletion policies. 2) Don’t store secrets: avoid storing API keys, passwords, PII, or other sensitive secrets in memories unless you trust the service and have encryption/BYOK guarantees. 3) Limit key scope and rotate regularly: use the least-privileged API key possible and rotate/revoke keys if you stop using the service. 4) Verify endpoints & TLS: confirm the domain (relay.goldhold.ai) and that HTTPS is enforced. 5) Consider legal/regulatory constraints: storing user data externally may have compliance implications. If you need stronger guarantees, ask about BYOK, customer-side encryption, data residency, and an auditable deletion process before enabling the skill.
功能分析
Type: OpenClaw Skill Name: goldhold-skill Version: 1.5.0 The GoldHold skill provides a legitimate interface for a persistent memory service (goldhold.ai) designed to help AI agents maintain context across sessions. It uses standard REST API patterns (POST requests to relay.goldhold.ai) to store and retrieve facts, decisions, and session summaries, and its instructions in SKILL.md are consistent with its stated purpose without any evidence of malicious intent or data exfiltration beyond the intended use case.
能力评估
Purpose & Capability
Name/description claim persistent memory; the skill only requires a single GOLDHOLD_API_KEY and documents REST endpoints at relay.goldhold.ai. These requirements are consistent with a cloud-hosted memory API.
Instruction Scope
SKILL.md instructs the agent to resume sessions, search, store, and send arbitrary memory packets (FACT, DECISION, IDENTITY, DOCUMENT, etc.). This is expected for a memory service, but means the agent will transmit potentially sensitive conversational state and identity information to the external API. The instructions do not ask the agent to read unrelated local files or other env vars.
Install Mechanism
Instruction-only skill with no install spec and no code files, so nothing is written to disk by an installer. Network calls to relay.goldhold.ai are the only runtime action implied.
Credentials
Only GOLDHOLD_API_KEY is required and declared as the primary credential. That matches the documented API usage and is proportionate to the stated purpose.
Persistence & Privilege
Skill is not always: true and does not request modification of other skills or global agent settings. Autonomous invocation (disable-model-invocation: false) is normal and expected for skills.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install goldhold-skill
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /goldhold-skill 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.5.0
- Goldhold 1.5.0 introduces a complete, detailed SKILL.md guide for persistent encrypted memory. - Explains API setup, core endpoints (`/v1/auto`, `/v1/turn`, `/v1/batch`, `/v1/session/close`), usage patterns, and memory types. - Clarifies environment variable requirements for secure API key handling. - Includes best practice rules and quick start examples with curl. - Feature comparison for Lite (free) and Vault Pro plans provided.
元数据
Slug goldhold-skill
版本 1.5.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Goldhold Skill 是什么?

Persistent memory for AI agents. Remember across sessions. Encrypted in transit and at rest. https://goldhold.ai. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 222 次。

如何安装 Goldhold Skill?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install goldhold-skill」即可一键安装,无需额外配置。

Goldhold Skill 是免费的吗?

是的,Goldhold Skill 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Goldhold Skill 支持哪些平台?

Goldhold Skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Goldhold Skill?

由 AllAutoTunes(@jerrysrodz)开发并维护,当前版本 v1.5.0。

💬 留言讨论