iceage-export

iceage-export is a skill for Claude Code, Codex from pomagrenate/ice_age. It costs 73 tokens per session (517 once invoked), scanned A, original, Apache-2.0.

A chat-export tool that reconstructs the visible conversation and saves it as a readable Markdown file. Markdown is a plain-text format that supports headings, lists, links, and code blocks.

In plain words
What is it for?
Use it to export the current chat, choose a filename, or leave code blocks out of the saved file.
Why use it?
It gives you a local record of the conversation without manually copying messages and code.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to export the current chat, choose a filename, or leave code blocks out of the saved file.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pomagrenate/ice_age/iceage-export
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 pomagrenate/ice_age --skill iceage-export
Clone the repo
git clone --depth 1 https://github.com/pomagrenate/ice_age

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 iceage-export

README.md
[![agentmods](https://agentmods.dev/badge/skills/pomagrenate/ice_age/iceage-export/github.svg)](https://agentmods.dev/skills/pomagrenate/ice_age/iceage-export)
Your own site
<a href="https://agentmods.dev/skills/pomagrenate/ice_age/iceage-export"><img src="https://agentmods.dev/badge/skills/pomagrenate/ice_age/iceage-export/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 iceage-export

Your own site · 80×15
<a href="https://agentmods.dev/skills/pomagrenate/ice_age/iceage-export"><img src="https://agentmods.dev/badge/skills/pomagrenate/ice_age/iceage-export.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 73 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 517 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.00073 $0.00517
Opus 5 $0.00036 $0.00259
Sonnet 5 $0.00015 $0.00103
Haiku 4.5 $0.00007 $0.00052

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

Security

Grade A, and why

iceage-export 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 9d 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/iceage-export/SKILL.md · 75 lines

What it actually says

Export current conversation to a markdown file. Reconstruct from visible context.

Invocation

/iceage-export                        → chat-export-YYYY-MM-DD.md (current dir)
/iceage-export <filename>             → exact path/name given
/iceage-export <filename> --no-code   → strip code blocks from output

What to Export

Reconstruct the full visible conversation in order:

  • Every user message — exact wording, no paraphrasing
  • Every assistant response — full content, preserve all code blocks, lists, tables
  • Tool calls — include only if they produced user-visible output (e.g. file reads, search results). Skip internal plumbing (file existence checks, etc.)
  • System context visible to user — skip hidden hook injections

Output Format

# Chat Export — YYYY-MM-DD HH:MM

**Session:** <working directory or project name if known>

---

## User

<exact user message text>

---

## Assistant

<full assistant response>

---

## User

...

Rules:

  • Preserve all code blocks exactly — language tag, indentation, content unchanged
  • Preserve all markdown (headings, bullets, tables, bold, links)
  • Timestamp in filename uses local date: chat-export-2026-04-26.md
  • If file already exists, append _2, _3 etc — never overwrite silently
  • Confirm filename to user after writing: Exported: <path>

What NOT to Include

  • Session hook injections (ICEAGE MODE ACTIVE banners, system reminders)
  • Internal tool calls that weren't user-visible (stat checks, glob searches with no result shown)
  • Your own internal reasoning or <thinking> blocks
  • Duplicate content (don't include both a tool call and its already-rendered output)

Boundaries

One-shot operation. Does not modify conversation. Does not affect iceage mode. "stop iceage-export": cancel and do nothing.

After writing the file, report: Exported: <absolute path> (<N> exchanges)

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. 9d ago First seen · 75 lines · 73 tokens per session scan A 8ca2f5e87384

Subscribe to this mod's changes

iceage-export is a skill published in the GitHub repository pomagrenate/ice_age (2 stars, last pushed 20d ago), licensed Apache-2.0. It adds 73 tokens to every session and 517 once invoked, about $0.0004 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

typescript-providers

Implement, modify, test, or document TypeScript provider packages under ts/packages/providers, including framework adapters for OpenAI, Anthropic, Google, LangChain, Mastra, Vercel, LlamaIndex, Cloudflare, and Claude Agent SDK. Use for provider-specific TS work; do not use for core-only changes.

ComposioHQ/composio · 70 tokens

potpie-source-ingestion

Use when the user explicitly asks to ingest, refresh, or deeply understand a repository, PR, issue, ticket, runbook, incident report, document, or web link into Potpie. The harness performs todo-driven discovery, uses local/GitHub/integration tools and read-only subagents when available, builds evidence-backed…

potpie-ai/potpie · 82 tokens

code-to-diagram

Analyze codebases and automatically generate architecture diagrams, flowcharts, and org charts. Uses AST parsing to map import dependencies for Python, JS/TS, Go, and Java, outputting Mermaid or SVG files. Triggered when users ask to visualize code architecture, understand dependencies, draw a flowchart, or create a…

zebbern/claude-code-guide · 74 tokens

publication-chart-skill

This skill should be used when the user asks for a publication-quality scientific figure or table, wants help choosing the right chart for results, needs a paper-ready pubfig or pubtab workflow, wants a figure + companion table for a results section, wants an Excel sheet turned into publication-ready LaTeX, or wants…

Galaxy-Dawn/claude-scholar · 77 tokens

obsidian-source-ingestion

Use this skill to ingest external materials into the current project-scoped Obsidian KB as source notes under Sources/Papers, Sources/Web, Sources/Docs, Sources/Data, Sources/Interviews, or Sources/Notes.

Galaxy-Dawn/claude-scholar · 51 tokens

memstack-business-scope-of-work

Use this skill when the user says 'scope of work', 'SOW', 'define scope', 'project scope', 'write SOW', 'scope document', or is defining project boundaries, deliverables, and acceptance criteria for a formal engagement. Do NOT use for proposals, contracts, or invoicing.

cwinvestments/memstack · 70 tokens