GENesis-AGI: Skill for Claude Code

.claude/skills/shelve/SKILL.md

shelve is a skill for Claude Code from WingedGuardian/GENesis-AGI. It costs 27 tokens per session (430 once invoked), scanned A, original, MIT.

A session-bookmarking skill that saves the current coding-agent session so it can be found and resumed later.

In plain words
What is it for?
Use it to shelve a session, add tags such as a feature name or priority, and record a brief resume note.
Why use it?
It prevents unfinished work from becoming difficult to recover and lets you attach tags or a short context note for later reference.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths.

This is WingedGuardian/GENesis-AGI's own configuration. It tells Claude Code how to work on GENesis-AGI 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 GENesis-AGI configures →

Reuse

Borrowing it

Nothing to install: this file belongs to WingedGuardian/GENesis-AGI. 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/WingedGuardian/GENesis-AGI/main/.claude/skills/shelve/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/WingedGuardian/GENesis-AGI

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 shelve

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/wingedguardian/genesis-agi/shelve"><img src="https://agentmods.dev/badge/skills/wingedguardian/genesis-agi/shelve.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 430 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00027 $0.00430
Opus 5 $0.00014 $0.00215
Sonnet 5 $0.00005 $0.00086
Haiku 4.5 $0.00003 $0.00043

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

Security

Grade A, and why

shelve 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 10d 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/shelve/SKILL.md · 48 lines

What it actually says

Shelve Session

Create a bookmark for the current session so you can return to it later.

This skill wraps the bookmark_shelve MCP tool (mcp__genesis-memory__bookmark_shelve). The legacy command at .claude/commands/shelve.md is superseded by this skill (skills take precedence over commands when names collide).

Arguments

The user may provide optional arguments after /shelve:

  • /shelve — shelve with no tags
  • /shelve auth-refactor, critical — shelve with tags "auth-refactor" and "critical"
  • /shelve auth-refactor | fixing the OAuth flow — tags before |, context note after

Steps

  1. Get the full session ID. The Clock context line shows a truncated session ID (e.g., Session: 802a856e). To get the full UUID, list the session directories and match the prefix:

    ls ~/.genesis/sessions/ | grep "^<prefix>"
    

    If no match is found, tell the user the session context isn't available.

  2. Parse arguments. Split on | if present:

    • Before |: comma-separated tags
    • After |: context note (trim whitespace)
    • If no |: treat everything as comma-separated tags
  3. Call bookmark_shelve MCP tool (mcp__genesis-memory__bookmark_shelve) with:

    • session_id: the full UUID from step 1
    • tags: comma-separated tag string (or empty)
    • context: the context note (or empty)
  4. Confirm. Show the user the bookmark ID and the resume command: claude --resume <full_session_id>

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. 10d ago First seen · 48 lines · 27 tokens per session scan A a1c74873bff8

Subscribe to this mod's changes

shelve is a skill published in the GitHub repository WingedGuardian/GENesis-AGI (96 stars, last pushed today), licensed MIT. It adds 27 tokens to every session and 430 once invoked, about $0.0001 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-30.