dreaming-consolidator
Read the auto-memory graph (~/.claude/projects/*/memory/*.md), find cross-session patterns, and write a digest. The skill never mutates memory — output goes to a fresh file the user reads. The cron-driven version is the daily-brief-sdk dream-digest workflow, which writes to a separate dedicated directory.
What this skill does
# Dreaming Consolidator
Read-only consolidator across the auto-memory graph. The agent walks every memory file under `~/.claude/projects/*/memory/`, identifies cross-session patterns (recurring frictions, repeated user corrections, project facts that span multiple sessions), and writes a digest naming at least three patterns with citations.
## When to Use
- You suspect there's signal in the auto-memory graph you haven't surfaced (recurring corrections, project-spanning preferences, drifting goals)
- A weekly review that doesn't need to be on a cron
- After a long stretch of work — the memory graph has accumulated and could use a synthesis pass
## When NOT to Use
- The cron-driven weekly digest — that's the `daily-brief-sdk` `dream-digest` workflow, which writes to `~/.claude/cook-and-brief/dream-digest/weekly-YYYY-MM-DD.html` and emails it. Don't duplicate that pipeline.
- Confidential synthesis intended to feed back into auto-memory — this skill **never** writes into `~/.claude/projects/*/memory/` (that path is reserved for factual auto-memory; speculative synthesis would poison every future session).
## How to Run
1. Create the marker file with the agent's PID:
```bash
mkdir -p ~/.claude/cooking
PID=$$
START_EPOCH=$(ps -p $PID -o lstart= | sed 's/^ *//;s/ *$//')
printf '{"start_epoch": "%s"}' "$START_EPOCH" > ~/.claude/cooking/active-$PID
```
2. Tell Claude: "Run dreaming-consolidator in cook mode. Output target: `<some-path-outside-memory>`."
3. The agent reads every `.md` file under `~/.claude/projects/*/memory/`, takes notes on patterns observed across files, and writes a digest naming at least 3 patterns.
4. The output file path **must not** be under `~/.claude/projects/*/memory/`. A safe default is `~/Documents/dreaming-digests/<YYYY-MM-DD>.md` or wherever the user nominated.
5. The skill **must** remove the marker file in a `finally`-equivalent path.
## Pattern requirements
A "pattern" is any observation that:
- Is supported by ≥2 memory entries from ≥2 different sessions/dates
- Names a concrete subject (a tool, a workflow, a frustration, a preference) — not "the user uses Claude a lot"
- Cites the supporting memory files inline (e.g., `feedback_hook_schema.md`, `project_settings_architecture.md`)
The digest should name **at least 3** patterns. If fewer than 3 emerge, write what you found and explicitly note "memory graph too sparse to find 3 cross-session patterns."
## TERMINATION
Stop when ALL of these are true:
- A digest file has been written outside the auto-memory directory tree
- The digest names ≥3 cross-session patterns OR explicitly notes that fewer than 3 were found
- Each pattern cites the memory files supporting it
- The marker file is removed
When termination triggers:
```bash
rm -f ~/.claude/cooking/active-$PID ~/.claude/cooking/iter-$PID
```
If iteration 10 hits without finishing, write a partial digest (what was found so far + which files weren't fully read) to the output path and exit. Do not loop past 10.
## Anti-patterns
- **Don't** write the digest into `~/.claude/projects/*/memory/`. Speculative synthesis must not poison factual auto-memory.
- **Don't** use the existing memory `MEMORY.md` index file as a write target. It's an index, not a deliverable.
- **Don't** invent patterns that aren't supported by ≥2 memory files. If you can only cite one, that's an observation, not a cross-session pattern.
- **Don't** copy memory contents verbatim into the digest. Synthesise, don't transcribe.
## Verification
The output file exists at the nominated path and is **not** under `~/.claude/projects/*/memory/`. The mtime of every file under `~/.claude/projects/*/memory/` is unchanged after the run (run `stat` before and after). The digest contains ≥3 patterns each with ≥2 file citations, OR an explicit "fewer than 3 patterns found" note.
## Cron-driven version
For a scheduled, emailed weekly digest, install the `daily-brief-sdk` `dream-digest` workflow. That workflow writes to `~/.claude/cook-and-brief/dream-digest/weekly-YYYY-MM-DD.html`, sends an email, appends a JSONL telemetry row, and is fully separate from this skill. Use this skill for ad-hoc consolidation; use the SDK workflow for the scheduled run.
## Related
- Stop hook: `hooks/cooking/stop-hook.sh`
- Status command: `/cook-status`
- Sibling skills: `test-fix-loop`, `investigation-loop`, `cross-repo-refactor`
- Cron-driven digest: `packages/daily-brief-sdk/src/workflows/dream-digest.ts`
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.