doomsday

doomsday is a skill for Claude Code, Codex from sivang/sivan-claude-plugins. It costs 55 tokens per session (579 once invoked), scanned A, original, MIT.

A session-shutdown checklist for preserving project files, documentation, current status, and handoff information.

In plain words
What is it for?
Use it to save discussed changes, update README.md and project status files, record work in progress, and prepare a handoff.
Why use it?
It helps ensure that unfinished work, recent changes, and important context are recorded before a session ends.

Skill for Claude CodeCodex

Part of the session-workflow plugin — 2 skills, 2 commands 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/sivang/sivan-claude-plugins/doomsday
Any agent
npx skills add sivang/sivan-claude-plugins --skill doomsday
Clone the repo
git clone --depth 1 https://github.com/sivang/sivan-claude-plugins

Made for: Claude Code, Codex.

Or install session-workflow, the plugin that ships this one along with the rest of its 2 skills, 2 commands.

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 doomsday

README.md
[![agentmods](https://agentmods.dev/badge/skills/sivang/sivan-claude-plugins/doomsday.svg)](https://agentmods.dev/skills/sivang/sivan-claude-plugins/doomsday)
Your own site
<a href="https://agentmods.dev/skills/sivang/sivan-claude-plugins/doomsday"><img src="https://agentmods.dev/badge/skills/sivang/sivan-claude-plugins/doomsday.svg" alt="Measured on agentmods" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 579 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.1 $0.00055 $0.00579
Opus 5 $0.00028 $0.00290
Sonnet 5 $0.00011 $0.00116
Haiku 4.5 $0.00006 $0.00058

Measured 5d ago against content hash 770dfc827760, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

doomsday 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.

session-workflow/skills/doomsday/SKILL.md · 60 lines

How it starts

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

End of Session Shutdown Protocol (Doomsday Prep)

Role: Paranoid Lead Architect and Project Manager.

Objective: Secure project state, update all documentation, and prepare a comprehensive handoff. Treat this as if the server is about to be wiped and rebuild must happen from these files alone.

Phase 1: Execution & File Integrity

  1. Force Save: Ensure every code block, text buffer, or conceptual change discussed is written to its respective file. Leave nothing in "memory" only.
  2. File Creation: If new files were discussed but not generated, generate them now.

Phase 2: Documentation Synchronization

Update the following .md files immediately. Create them if they do not exist:

A. Update README.md

  • Reflect the current state of the application
  • Update installation or usage instructions if dependencies changed
  • Add a "Recent Changes" section summarizing this session's work

B. Update/Create PROJECT_STATUS.md

  • Current Phase: Where exactly are we? (Dev, Testing, Refactoring)
  • Completed: Bullet points of everything achieved this session
  • In Progress: What is half-baked? (Mark clearly to avoid deploying broken code)
  • Blockers: Any bugs or issues that couldn't be solved today

C. Update User/Dev Docs

  • If API endpoints changed, update API documentation
  • If UI logic changed, update user guides

Phase 3: The Brain Dump (Context Preservation)

Create SESSION_HANDOFF_[DATE].md (or append to CHANGELOG.md). Include:

  1. The "Why": Briefly explain why specific architectural decisions were made today
  2. The "Gotchas": Note weird bugs or workarounds that might be forgotten
  3. Next Actions: Strictly prioritized list of exactly what to do first next session

Phase 4: Version Control Prep

  1. Generate a comprehensive Git Commit Message formatted as:
    • feat/fix/chore: [Summary]
    • [Bulleted list of detailed changes]
  2. Do NOT run the commit command unless instructed, but provide exact commands to stage and commit safely.

Read the full file on GitHub · 60 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 · 60 lines · 55 tokens per session scan A 770dfc827760

Subscribe to this mod's changes

doomsday is a skill published in the GitHub repository sivang/sivan-claude-plugins (1 stars, last pushed 7mo ago), licensed MIT. It adds 55 tokens to every session and 579 once invoked, about $0.0003 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

fleet

Parallel campaign orchestrator. Runs multiple campaigns in coordinated waves within a single session. Spawns 2-3 agents per wave in isolated worktrees, collects discoveries, shares context between waves. Use when work decomposes into 3+ independent streams that can run simultaneously.

SethGammon/Citadel · 56 tokens

daemon

Continuous autonomous operation mode. Keeps campaigns running 24/7 by chaining Claude Code sessions via RemoteTrigger. Each session picks up from the campaign's continuation state, works until context runs low or the phase completes, then schedules the next session. Auto-stops on campaign completion or budget…

SethGammon/Citadel · 69 tokens

improve

Autonomous quality improvement loop. Scores a target against a rubric, selects the highest-leverage axis, attacks it, verifies, documents, and loops. No pre-planning between iterations — each loop re-scores from scratch.

SethGammon/Citadel · 48 tokens

setup

First-run experience for the harness. Three modes: Recommended (guided, 3 min), Full Tour (guided + skill walkthrough, 8 min), and Express (zero questions, 30 sec). Installs hooks first, detects stack, configures harness.json, runs a live demo on real code, and prints a reference card.

SethGammon/Citadel · 69 tokens

evolve

Research-driven multi-cycle improvement director. Forms causal hypotheses about why scores are low, validates them with scout agents before attacking, dispatches axis-parallel fleet attacks, extracts transferable patterns, and runs indefinitely within a budget envelope. Accumulates a persistent belief model and…

SethGammon/Citadel · 60 tokens

research

Focused research investigations. Converts questions into structured findings with confidence levels and source citations. Single agent by default; with --parallel (or when the question decomposes into 3+ independent angles) it spawns scout agents whose findings are compressed into a unified brief. Does not make…

SethGammon/Citadel · 67 tokens