hindsight-cloud

hindsight-cloud is a skill for Claude Code, Codex from Holetron-lab/fleet-memory. It costs 39 tokens per session (1,478 once invoked), scanned D, a copy of hindsight-cloud, MIT.

A shared online memory system for coding agents that stores team knowledge, project conventions, and lessons from completed tasks.

In plain words
What is it for?
Use it to save project decisions and working practices, then retrieve relevant context before starting new work.
Why use it?
It helps the agent recall useful context across tasks and lets the whole team benefit from stored knowledge.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/holetron-lab/fleet-memory/hindsight-cloud
Any agent
npx skills add Holetron-lab/fleet-memory --skill hindsight-cloud
Clone the repo
git clone --depth 1 https://github.com/Holetron-lab/fleet-memory

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for hindsight-cloud

README.md
[![agentmods](https://agentmods.dev/badge/skills/holetron-lab/fleet-memory/hindsight-cloud.svg)](https://agentmods.dev/skills/holetron-lab/fleet-memory/hindsight-cloud)
Your own site
<a href="https://agentmods.dev/skills/holetron-lab/fleet-memory/hindsight-cloud"><img src="https://agentmods.dev/badge/skills/holetron-lab/fleet-memory/hindsight-cloud.svg" alt="Measured on agentmods" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,478 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 3 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00039 $0.01478
Opus 5 $0.00019 $0.00739
Sonnet 5 $0.00008 $0.00296
Haiku 4.5 $0.00004 $0.00148

Measured 3d ago against content hash 9c5238859de5, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade D, and why

hindsight-cloud scanned grade D with 3 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

chmod 600 ~/.hindsight/config

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

curl -fsSL https://hindsight.vectorize.io/get-cli | bash

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -fsSL https://hindsight.vectorize.io/get-cli | bash
Origin

This is a copy

100% identical to hindsight-cloud — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/hindsight-cloud/SKILL.md · 150 lines

How it starts

The opening of the file, as written. The whole thing — 150 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Hindsight Memory Skill (Cloud)

You have persistent memory via Hindsight Cloud. This memory bank is shared with the team, so knowledge stored here benefits everyone working on this codebase.

Proactively store team knowledge and recall context to provide better assistance.

Setup Check (First-Time Only)

Before using memory commands, verify the Hindsight CLI is configured:

cat ~/.hindsight/config

If the file doesn't exist or is missing credentials, help the user set it up:

  1. Install the CLI (if hindsight command not found):

    curl -fsSL https://hindsight.vectorize.io/get-cli | bash
    
  2. Create the config file - ask the user for their API Key (get it from https://ui.hindsight.vectorize.io):

    mkdir -p ~/.hindsight
    cat > ~/.hindsight/config << 'EOF'
    api_url = "https://api.hindsight.vectorize.io"
    api_key = "<user's API key>"
    EOF
    chmod 600 ~/.hindsight/config
    
  3. Get the bank ID - ask the user for their team's bank ID (e.g., team-myproject)

After setup, use the bank ID in all commands below.

How Hindsight Works

When you call retain, Hindsight does not store the string as-is. The server runs an internal pipeline that:

  1. Extracts structured facts from the content using an LLM
  2. Identifies entities (people, tools, concepts) and links related facts
  3. Builds temporal and causal relationships between facts
  4. Generates embeddings for semantic search

This means you should pass rich, full-context content — the server is better at extracting what matters than a pre-summarized string. Your job is to decide when to store, not what to extract.

Commands

Replace <bank-id> with the user's actual bank ID (e.g., team-frontend).

Store a memory

Use memory retain to store what you learn. Pass full context — raw observations, session notes, or detailed descriptions:

hindsight memory retain <bank-id> "The project uses ESLint configured with the Airbnb rule set and Prettier for formatting. Auto-fix on save is enabled in the editor config."
hindsight memory retain <bank-id> "Ran the test suite with NODE_ENV=test. Tests pass. Without NODE_ENV=test, the suite fails with a missing config error." --context procedures
hindsight memory retain <bank-id> "Build failed on Node 18 with error 'ERR_UNSUPPORTED_ESM_URL_SCHEME'. Switched to Node 20 and build succeeded." --context learnings
hindsight memory retain <bank-id> "Alice reviewed the PR and asked for verbose commit messages that explain the motivation, not just what changed." --context preferences

Read the full file on GitHub · 150 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 150 lines · 39 tokens per session scan D 9c5238859de5

Subscribe to this mod's changes

hindsight-cloud is a skill published in the GitHub repository Holetron-lab/fleet-memory (0 stars, last pushed 6d ago), licensed MIT. It adds 39 tokens to every session and 1,478 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it D with 3 findings (asks for root, downloads and executes remote code, makes network calls). It is 100% identical to hindsight-cloud, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

code-cleanup-audit

Audit a repository for architectural decay, AI-generated code smells, stale compatibility paths, dead abstractions, boundary violations, and cleanup candidates without modifying files. Use when the user asks to review code quality, find bad code, inspect AI-generated code, identify refactoring or cleanup…

pqpo/pragma · 78 tokens

author-pragma-dsl

Create and update validated pragma/v5 Expert, ExpertTeam, Flow, Evaluation, and Automation resources. Use when a user asks Pragma to create, change, configure, test, evaluate, or repair an Expert, team, Flow, Run Dry suite, schedule, trigger, or Automation in the current Pragma project.

pqpo/pragma · 70 tokens

claude-code-review

Delegate code review of current uncommitted repository changes to Claude Code with claude -p, wait up to 10 minutes, then independently verify each finding and fix real issues. Use when the user asks to have Claude Code review a diff, audit uncommitted changes, perform CR/code review, or turn Claude Code review…

pqpo/pragma · 76 tokens

portable-bundle-review

检查并解释 portable Pragma bundle 的内容、依赖和环境绑定。.

pqpo/pragma · 21 tokens

pragma-code-review

按正确性、架构边界、风险和验证四个维度审查代码。.

pqpo/pragma · 24 tokens

wolbarg-coordination

Coordinate with other Cursor agents via Wolbarg — but ONLY after wolbarg init. Brief the workspace, claim scopes, record findings/dead-ends, update work items, and hand off. Use when working in parallel with other agents, resuming prior agent work, avoiding duplicate exploration, or sharing decisions across sessions.

wolbarg/cursor · 72 tokens