session-wrap

session-wrap is a skill for Claude Code, Codex from mattmre/EVOKORE-MCP-PUBLIC. It costs 35 tokens per session (747 once invoked), scanned A, original, MIT.

A session handoff checklist for finishing coding work and preserving the information needed for the next session.

In plain words
What is it for?
It is for checking in code, preparing pull requests, updating session logs and next-session notes, and recording useful project learnings.
Why use it?
It reduces lost context by recording the work, preparing follow-up notes, and documenting lessons learned.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions CLAUDE.md.

Good fit It is for checking in code, preparing pull requests, updating session logs and next-session notes, and recording useful project learnings.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mattmre/evokore-mcp-public/session-wrap
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.

Any agent
npx skills add mattmre/EVOKORE-MCP-PUBLIC --skill session-wrap
Clone the repo
git clone --depth 1 https://github.com/mattmre/EVOKORE-MCP-PUBLIC

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 session-wrap

README.md
[![agentmods](https://agentmods.dev/badge/skills/mattmre/evokore-mcp-public/session-wrap/github.svg)](https://agentmods.dev/skills/mattmre/evokore-mcp-public/session-wrap)
Your own site
<a href="https://agentmods.dev/skills/mattmre/evokore-mcp-public/session-wrap"><img src="https://agentmods.dev/badge/skills/mattmre/evokore-mcp-public/session-wrap/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 session-wrap

Your own site · 80×15
<a href="https://agentmods.dev/skills/mattmre/evokore-mcp-public/session-wrap"><img src="https://agentmods.dev/badge/skills/mattmre/evokore-mcp-public/session-wrap.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 747 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.00035 $0.00747
Opus 5 $0.00017 $0.00374
Sonnet 5 $0.00007 $0.00149
Haiku 4.5 $0.00003 $0.00075

Measured 7d ago against content hash c7c3b0287c5a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

session-wrap 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 7d 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/GENERAL CODING WORKFLOWS/session-wrap/SKILL.md · 74 lines

How it starts

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

Session Wrap

This skill wraps up the current coding session, ensuring no context is lost and the handoff to the next session is seamless.

Workflow

  1. Commit and PR: Create a PR for any work not already committed to a PR. If you need to use git, ensure you confirm the repo and completion.
  2. Log Session: Update the session log (docs/session-logs or similar). Ensure you have per-session documentation for all previous sessions for this repo. Use agentic orchestration to explore and update as needed.
  3. Prepare Next Session: Update next-session.md and prepare for the next session. Keep in mind there may have been another session running that just completed; incorporate its handoff points if applicable.
  4. Update Claude Learnings: Use agentic orchestration to explore the session logs. Update CLAUDE.md with any information from the agents that might be pertinent to future sessions, especially repetitive errors and noticed problems that affect progress. We want to make sure future sessions improve upon previous ones. Update CLAUDE.md once findings are prepared.
  5. Finalize: Confirm completion once all the logs and PRs are updated.

Evidence-First Handoff Protocol

Adapted from Agent33's evidence capture framework. Every session wrap must include verifiable evidence so the next session can trust previous work without re-running it.

Minimum Evidence Requirements Per Session

Every session wrap must capture at minimum:

  1. Commands run: Exact CLI commands with their output summaries and exit codes
  2. Test results: Test suite name, pass/fail counts, and coverage (if available)
  3. Diff summary: Files changed with lines added/removed and rationale for each
  4. Review outcomes: Reviewer feedback, required issues, and approval status (if applicable)

Evidence Capture Format

Use this template in the session log to record evidence:

## Session Evidence

### Commands Run
| Command | Output Summary | Exit Code |
|---------|---------------|-----------|
| `npm test` | 24 passed, 0 failed | 0 |
| `npm run lint` | No errors | 0 |

### Full Output (if non-trivial)
<paste full output for audit trail>

### Diff Summary
| Files Changed | Lines Added | Lines Removed | Rationale |
|---------------|-------------|---------------|-----------|
| `src/parser.ts` | +15 | -3 | Added error handling for malformed input |
| `tests/parser.test.ts` | +20 | -0 | Added test for edge case |

### Test Results
- Test suite: unit tests
- Outcome: 24 passed, 0 failed
- Coverage: 87% lines
- Notes: All acceptance criteria covered

### Evidence Checklist
- [ ] Commands recorded with exact CLI
- [ ] Outputs captured (summary + full if non-trivial)
- [ ] Diff summary documented
- [ ] Tests recorded with pass/fail count
- [ ] Review outcomes captured (if applicable)
- [ ] Artifacts linked (logs, reports, screenshots)

Read the full file on GitHub · 74 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. 7d ago First seen · 74 lines · 35 tokens per session scan A c7c3b0287c5a

Subscribe to this mod's changes

session-wrap is a skill published in the GitHub repository mattmre/EVOKORE-MCP-PUBLIC (3 stars, last pushed 3mo ago), licensed MIT. It adds 35 tokens to every session and 747 once invoked, about $0.0002 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-09-03.