orchestrate

orchestrate is a skill for Claude Code, Codex from blas0/UnseveredMemory. It costs 0 tokens per session (1,218 once invoked), scanned A, original, MIT.

A workflow guide for coding agents that use persistent memory across sessions. It separates changing session notes from stable project architecture and explains when to read and update each one.

In plain words
What is it for?
Use it when maintaining a project across multiple sessions, recording decisions, updating unfinished-work notes, or preserving reusable architecture patterns.
Why use it?
Without shared context, a new session may repeat work or miss earlier decisions. The guide helps the agent resume work with the project's current state and established patterns.

Skill for Claude CodeCodex

Part of the unsevered-memory plugin — 1 skill, 1 command, 1 agent shipped together

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/blas0/unseveredmemory/orchestrate
Any agent
npx skills add blas0/UnseveredMemory --skill orchestrate
Clone the repo
git clone --depth 1 https://github.com/blas0/UnseveredMemory

Made for: Claude Code, Codex.

Or install unsevered-memory, the plugin that ships this one along with the rest of its 1 skill, 1 command, 1 agent.

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 orchestrate

README.md
[![agentmods](https://agentmods.dev/badge/skills/blas0/unseveredmemory/orchestrate.svg)](https://agentmods.dev/skills/blas0/unseveredmemory/orchestrate)
Your own site
<a href="https://agentmods.dev/skills/blas0/unseveredmemory/orchestrate"><img src="https://agentmods.dev/badge/skills/blas0/unseveredmemory/orchestrate.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,218 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.00000 $0.01218
Opus 5 $0.00000 $0.00609
Sonnet 5 $0.00000 $0.00244
Haiku 4.5 $0.00000 $0.00122

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

Security

Grade A, and why

orchestrate 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 4d 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.

skills/orchestrate/SKILL.md · 230 lines

How it starts

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

Unsevered Memory - Workflow Skill

You are operating with persistent memory. This skill defines how to maintain context across sessions.

Memory Architecture

Two Sources of Truth

Location Type Purpose Update Frequency
.claude/memory/ Dynamic Session state, decisions Every session
.ai/ Static Architecture, patterns When patterns emerge

File Purposes

File Content When to Update
context.md Current state, next steps End of session
scratchpad.md Live session operations During session
decisions.md Architectural choices When decisions made
.ai/core/ Tech stack, architecture When they change
.ai/patterns/ Reusable solutions After 3+ uses

Session Workflow

On Session Start

  1. Memory hook automatically loads context.md
  2. Review the current state and task
  3. Check scratchpad.md for unfinished work
  4. Reference .ai/ for patterns and architecture

During Session

Write to scratchpad.md as you work:

## Session: 2024-01-15 14:30

### Operations
- [14:31] Read context.md - last session worked on auth
- [14:32] User asked to fix login bug
- [14:35] Found issue in validateToken() at src/auth.ts:142
- [14:40] Fixed: was comparing wrong field

### Findings
- Token validation was checking user.id instead of user.uid
- Only affects users created after migration

### Decisions
- Keep backward compatibility by checking both fields

### Blockers
(none)

### Next Steps
- Add regression test for token validation

Update .ai/ when patterns emerge:

After implementing the same solution 3+ times, add it to .ai/patterns/.

On Session End

  1. Hook archives scratchpad to sessions/YYYY-MM-DD.md
  2. Update context.md with:
    • What was accomplished
    • Current state
    • Next steps
  3. Append architectural decisions to decisions.md

Live Documentation Updates

Read the full file on GitHub · 230 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. 4d ago First seen · 230 lines · 0 tokens per session scan A ed75627ae16b

Subscribe to this mod's changes

orchestrate is a skill published in the GitHub repository blas0/UnseveredMemory (49 stars, last pushed 8mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,218 tokens. 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-30.

Related

Other skills, from other repositories

throughline

Use when the user asks to use Throughline from Codex, continue or restore Throughline memory, export read-only handoff context for a local launcher, prepare a new Codex thread handoff, summarize a captured Codex session, or check whether the Throughline Codex Stop hook captured the current session. Hide long…

kitepon/Throughline · 75 tokens

establishing-project-context

Use when the user asks to establish shared project language, or project work exposes a conflicting, renamed, or deprecated domain term that needs active semantic modeling. Routine small tasks stay on the fast path.

GanyuanRan/Aegis · 45 tokens

echo

Use when the user references past sessions, asks 'what did we do', 'do you remember', 'last session', 'recall', or 'continue from'.

cwinvestments/memstack · 35 tokens

durable-session-state

Persist plans, scope decisions, evidence, and reviewer/critic verdicts to durable files during long or multi-phase tasks so work survives context compaction, session resumes, and handoffs. Use for swarm-mode tasks, before context grows large, when recording approval gates, and when resuming after compaction or a…

ZaxbyHub/opencode-swarm · 70 tokens

mnemos

Task-scoped memory lifecycle — typed MnemoGraph prevents lossy context compaction by treating facts/decisions/code-refs/handoffs as distinct node types with per-type eviction policies.

alinaqi/maggy · 40 tokens

wiki-sync

Synthesize a single source note into the vault's wiki/ folder — read the source, find or create the right wiki entry, write it back with proper frontmatter and source links. Used by Lumina's background wiki manager when a note changes.

blueberrycongee/Lumina-Note · 53 tokens