obto-memory

obto-memory is a skill for Claude Code, Codex from obto-inc/platform. It costs 75 tokens per session (560 once invoked), scanned A, original, Apache-2.0.

A memory guide for OBTO, a platform that stores information so agents can recall it across conversations and restarts.

In plain words
What is it for?
Remembering app architecture, known issues, preferences, and recent decisions between agent sessions.
Why use it?
It explains when to recall prior decisions and how to keep memories scoped to an application or conversation.

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/obto-inc/platform/obto-memory
Any agent
npx skills add obto-inc/platform --skill obto-memory
Clone the repo
git clone --depth 1 https://github.com/obto-inc/platform

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 obto-memory

README.md
[![agentmods](https://agentmods.dev/badge/skills/obto-inc/platform/obto-memory.svg)](https://agentmods.dev/skills/obto-inc/platform/obto-memory)
Your own site
<a href="https://agentmods.dev/skills/obto-inc/platform/obto-memory"><img src="https://agentmods.dev/badge/skills/obto-inc/platform/obto-memory.svg" alt="Measured on agentmods" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 560 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found 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.00075 $0.00560
Opus 5 $0.00037 $0.00280
Sonnet 5 $0.00015 $0.00112
Haiku 4.5 $0.00007 $0.00056

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

Security

Grade A, and why

obto-memory scanned grade A with 0 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 5d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/obto-codex/skills/obto-memory/SKILL.md · 38 lines

How it starts

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

OBTO Memory Discipline (obto_remember / obto_recall)

Memories are backed by Hindsight (vector-embedded) and survive session resets and pod reboots. Used well, they remove the "agent forgets everything between conversations" blocker for autonomous work.

Recall before work

Call obto_recall before making decisions or starting work on anything you may have notes about — app architecture, known quirks, prior decisions. It is fail-soft: if the store is unavailable it returns {ok:true, returned:0} rather than blocking.

Two scoping modes — pick one per call

App-scoped (default for interactive/frontier-model agents): pass appName + domain. Memory is long-lived, scoped to (user, app, domain). Use for durable knowledge ABOUT an app: architecture, conventions, gotchas, preferences.

Conversation-scoped (for API-built small-model agents): pass conversationId (a UUID you generate, stable for the conversation). Memory becomes the conversation's external working memory — write active app/domain and recent decisions at the start of each turn, read them back to drive tool calls. This is the platform's answer to maintaining context under the stateless contract (see obto://guide/quickstart Rule 0.5).

Write discipline

  • Supply a stable key for facts that should be updated in place — same (key, scope) overwrites. Omit key only for append-style notes.
  • Write facts worth re-reading: decisions and why, non-obvious constraints, verified procedures. Do not store transient state (use obto_set_property for config keys), secrets, or anything needing strong consistency.
  • Keep entries self-contained — recall is similarity-based, so an entry should make sense without surrounding context. Convert relative dates to absolute.
  • Verify the returned mode / projectKey matches the scope you intended.

Effective autonomous pattern

  1. Turn start: obto_recall(query=<task topic>, appName, domain).
  2. Do the work.
  3. Turn end: obto_remember anything a future session would need — keyed, scoped, dated.

Read the full file on GitHub · 38 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. 5d ago First seen · 38 lines · 75 tokens per session scan A e06c4fe2e08c

Subscribe to this mod's changes

obto-memory is a skill published in the GitHub repository obto-inc/platform (1 stars, last pushed 2d ago), licensed Apache-2.0. It adds 75 tokens to every session and 560 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

memory-audit-pattern-extraction

模式提取与失效解药分析。当发现多条记忆在讲同一个教训,或发现自己在一而再再而三地犯同样的错误时使用。.

Dataojitori/nocturne_memory · 48 tokens

init-workspace-documentation

Skill "init-workspace-documentation" from griddynamics/rosetta, covering agent memory.md, agent memory, preventive rules, what worked and what failed.

griddynamics/rosetta · 10 tokens

memorix-mini-skills

Use when durable project knowledge, gotchas, workflows, or repeated fixes should become reusable agent guidance instead of ordinary memory.

AVIDS2/memorix · 30 tokens

memorix-sessions

Use when resuming work, preparing handoff context, binding an HTTP control-plane project, or deciding whether sessionstart is useful.

AVIDS2/memorix · 31 tokens

frontmcp-testing

Use for anything about testing FrontMCP servers: writing or running unit, integration, and E2E tests and reaching the 95%+ coverage bar. Covers Jest setup and coverage gating; unit-testing a ToolContext execute() with mock context, inputs, and Zod schema validation; testing resources and prompts; in-memory testing via…

agentfront/frontmcp · 175 tokens

cortex-profile

View and manage your cognitive profile — how you think, work patterns, blind spots, and cross-domain connections. Use when the user says 'show my profile', 'how do I work', 'what are my patterns', 'cognitive style', 'blind spots', 'methodology', or at the start of a session to load context. Also use 'rebuild profile'…

cdeust/Cortex · 98 tokens