claude-assess-decide-do-mega-prompt: Skill for Claude Code

.claude/skills/add-reflect/SKILL.md

add-reflect is a skill for Claude Code from dragosroua/claude-assess-decide-do-mega-prompt. It costs 0 tokens per session (777 once invoked), scanned A, original, MIT.

A session-reflection tool that reviews how an ADD-based conversation progressed and saves a summary of its patterns. It uses a separate helper process so the reflection does not fill the main conversation.

In plain words
What is it for?
Use it to review time spent assessing, deciding, and doing; spot how the conversation changed direction; and save insights before ending or after resolving a difficult point.
Why use it?
It helps preserve useful lessons from a session without manually reviewing the whole conversation or crowding the working context.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions subagents.

This is dragosroua/claude-assess-decide-do-mega-prompt's own configuration. It tells Claude Code how to work on claude-assess-decide-do-mega-prompt itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything claude-assess-decide-do-mega-prompt configures →

Reuse

Borrowing it

Nothing to install: this file belongs to dragosroua/claude-assess-decide-do-mega-prompt. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/dragosroua/claude-assess-decide-do-mega-prompt/main/.claude/skills/add-reflect/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/dragosroua/claude-assess-decide-do-mega-prompt

Made for: Claude Code.

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 add-reflect

README.md
[![agentmods](https://agentmods.dev/badge/skills/dragosroua/claude-assess-decide-do-mega-prompt/add-reflect/github.svg)](https://agentmods.dev/skills/dragosroua/claude-assess-decide-do-mega-prompt/add-reflect)
Your own site
<a href="https://agentmods.dev/skills/dragosroua/claude-assess-decide-do-mega-prompt/add-reflect"><img src="https://agentmods.dev/badge/skills/dragosroua/claude-assess-decide-do-mega-prompt/add-reflect/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for add-reflect

Your own site · 80×15
<a href="https://agentmods.dev/skills/dragosroua/claude-assess-decide-do-mega-prompt/add-reflect"><img src="https://agentmods.dev/badge/skills/dragosroua/claude-assess-decide-do-mega-prompt/add-reflect.svg" alt="Reviewed on agentmods" width="80" 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 777 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00000 $0.00777
Opus 5 $0.00000 $0.00388
Sonnet 5 $0.00000 $0.00155
Haiku 4.5 $0.00000 $0.00078

Measured 12d ago against content hash 8bbe9ce17890, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

add-reflect 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 12d 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.

.claude/skills/add-reflect/SKILL.md · 143 lines

How it starts

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

/add-reflect

Subagent-powered skill for session reflection and memory.


description: Reflect on session ADD patterns and save to history without cluttering main context model-invocable: true user-invocable: true context: fork

Purpose

This skill spawns a subagent with forked context to:

  1. Analyze the current session's ADD flow patterns
  2. Generate a reflection summary
  3. Save insights to .add-session-history.md
  4. Return a brief summary to main conversation

The forked context ensures reflection work doesn't pollute the main conversation window.

When to Invoke

User-invoked:

  • User says "/add-reflect" or "reflect on this session"
  • User asks "what patterns have emerged?"
  • User wants to capture session insights before ending

Model-invoked:

  • At significant completion milestones (liveline moments)
  • When session has been particularly rich with realm transitions
  • Before natural conversation endings
  • After resolving a stuck pattern

Reflection Analysis

The subagent should analyze:

Realm Distribution

  • Time spent in each realm (Assess/Decide/Do)
  • Balance assessment
  • Dominant realm for this session

Transition Quality

  • Number and nature of transitions
  • Smooth vs. abrupt transitions
  • Any realm skipping (Assess→Do without Decide)

Pattern Recognition

  • Stuck patterns that emerged
  • How they were resolved (if at all)
  • Healthy flow moments

Key Topics

  • Main subjects explored
  • Decisions made
  • Tasks completed (livelines created)

Imbalances Detected

  • Analysis paralysis episodes
  • Decision avoidance moments
  • Execution shortcuts
  • Perpetual doing without reflection

Output Format

To Session History File (.add-session-history.md)

## Session: {date} {time}

### Summary
{2-3 sentence overview}

### Realm Distribution
- Assess: {percentage/count}
- Decide: {percentage/count}
- Do: {percentage/count}

### Flow Quality
{assessment: Balanced | Assess-heavy | Decide-heavy | Do-heavy | Stuck}

### Key Transitions
- {transition 1 description}
- {transition 2 description}

### Topics Covered
- {topic 1}: {outcome}
- {topic 2}: {outcome}

### Patterns Observed
- {pattern 1}
- {pattern 2}

### Livelines Created
- {completion 1}
- {completion 2}

---

Read the full file on GitHub · 143 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. 12d ago First seen · 143 lines · 0 tokens per session scan A 8bbe9ce17890

Subscribe to this mod's changes

add-reflect is a skill published in the GitHub repository dragosroua/claude-assess-decide-do-mega-prompt (79 stars, last pushed 7mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 777 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

frontmcp-extensibility

Use when extending FrontMCP beyond the core SDK by integrating external npm packages, libraries, or third-party services into providers and tools. Covers VectoriaDB for in-memory semantic and vector search (ML-based embeddings or TF-IDF keyword engines, with persistence) and the tamper-evident, hash-chained skill…

agentfront/frontmcp · 124 tokens

memory-consolidate

A memory-maintenance skill that stores a small number of durable, searchable facts and keeps the main memory file concise.

zhinjs/zhin · 46 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

session_logs

Search and analyse your own conversation history from session files. Use when: user references older conversations, asks what was said before, or needs historical context from past sessions. NOT for: current session messages (already in context), non-session files, or external logs.

ericwang915/PythonClaw · 55 tokens

persona-knowledge

Persistent, incremental, searchable persona knowledge base. Ingests data from Obsidian vaults, chat exports, X/Twitter archives, and more into a MemPalace-backed store with a Karpathy LLM Wiki knowledge layer. Exports training/ directories for persona-model-trainer.

acnlabs/OpenPersona · 62 tokens

persona-secondme-skill

A local-first personal AI double framework that helps users build, govern, and evolve their own digital self with clear.

acnlabs/OpenPersona · 28 tokens