life-memory-media-ingestion

life-memory-media-ingestion is a skill for Claude Code, Codex from 234194027-cpu/aion-memory-nexus. It costs 39 tokens per session (959 once invoked), scanned A, original, MIT.

A guide for sending links and files into Life Memory as reviewable source records. It supports images, spreadsheets, PDFs, documents, audio, and video.

In plain words
What is it for?
Use it to submit URLs or uploaded media, create source records, extract their contents, and inspect their review status through MCP.
Why use it?
It keeps incoming material separate from confirmed facts until the system can extract and review evidence from it.

Skill for Claude CodeCodex

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

Good fit Use it to submit URLs or uploaded media, create source records, extract their contents, and inspect their review status through MCP.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/234194027-cpu/aion-memory-nexus/life-memory-media-ingestion
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 234194027-cpu/aion-memory-nexus --skill life-memory-media-ingestion
Clone the repo
git clone --depth 1 https://github.com/234194027-cpu/aion-memory-nexus

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 life-memory-media-ingestion

README.md
[![agentmods](https://agentmods.dev/badge/skills/234194027-cpu/aion-memory-nexus/life-memory-media-ingestion/github.svg)](https://agentmods.dev/skills/234194027-cpu/aion-memory-nexus/life-memory-media-ingestion)
Your own site
<a href="https://agentmods.dev/skills/234194027-cpu/aion-memory-nexus/life-memory-media-ingestion"><img src="https://agentmods.dev/badge/skills/234194027-cpu/aion-memory-nexus/life-memory-media-ingestion/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 life-memory-media-ingestion

Your own site · 80×15
<a href="https://agentmods.dev/skills/234194027-cpu/aion-memory-nexus/life-memory-media-ingestion"><img src="https://agentmods.dev/badge/skills/234194027-cpu/aion-memory-nexus/life-memory-media-ingestion.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 959 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.00039 $0.00959
Opus 5 $0.00019 $0.00479
Sonnet 5 $0.00008 $0.00192
Haiku 4.5 $0.00004 $0.00096

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

Security

Grade A, and why

life-memory-media-ingestion 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 11d 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/life-memory-media-ingestion/SKILL.md · 131 lines

How it starts

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

Life Memory Media Ingestion

Use this skill when an agent needs to submit a URL, file, image, spreadsheet, PDF, document, audio, or video into the Life Memory System.

The rule is simple: media is a source artifact first, not a permanent fact. Create a media artifact, let the system extract source evidence, then inspect the artifact and governance status.

Required MCP Tools

Confirm these tools exist before submitting media:

  • memory_create_link_artifact
  • memory_upload_media_base64
  • memory_list_media_artifacts
  • memory_get_media_artifact
  • memory_extract_media_artifact

If any tool is missing, call memory_map if available, refresh the MCP connection, and report that the client is connected to an older Life Memory MCP server.

Use memory_create_link_artifact for public http or https links.

Required fields:

  • url: the public URL.
  • source_channel: use mcp unless the caller has a more specific channel.

Optional fields:

  • source_text: short context from the user or task.
  • extract: default true.
  • sync: default false.

Do not fetch the URL yourself and paste the webpage into memory_after_end. The system handles SSRF checks, extraction, failure status, and RawEvent/work-case evidence creation.

Example:

{
  "url": "https://example.com/article",
  "source_text": "User asked me to preserve this article as a note source.",
  "source_channel": "mcp",
  "extract": true,
  "sync": false
}

File Workflow

Use memory_upload_media_base64 for files, images, spreadsheets, documents, audio, and video.

Required fields:

  • filename: original filename or a safe descriptive name.
  • content_base64: base64 file bytes.

Recommended fields:

  • mime_type: explicit MIME type when known.
  • media_type: one of image, spreadsheet, pdf, document, audio, video, or file.
  • source_channel: use mcp.
  • extract: default true.
  • sync: default false.

Example:

{
  "filename": "meeting-notes.csv",
  "mime_type": "text/csv",
  "media_type": "spreadsheet",
  "source_channel": "mcp",
  "content_base64": "<base64>",
  "extract": true,
  "sync": false
}

Read the full file on GitHub · 131 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 131 lines · 39 tokens per session scan A 8972f044606d

Subscribe to this mod's changes

life-memory-media-ingestion is a skill published in the GitHub repository 234194027-cpu/aion-memory-nexus (0 stars, last pushed 1mo ago), licensed MIT. It adds 39 tokens to every session and 959 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-08-31.