graduate-insights

graduate-insights is a skill for Claude Code from Abilityai/cornelius. It costs 31 tokens per session (1,893 once invoked), scanned A, original, MIT.

A review process for moving useful notes from temporary holding areas into a permanent knowledge-base collection, using Zettelkasten principles—a method of keeping small, connected notes. It presents candidates for human approval and maintains their links.

In plain words
What is it for?
Use it to review candidate notes, select valuable insights, move them into permanent storage, and preserve the knowledge graph's connections.
Why use it?
Insights can pile up in inboxes, research folders, or AI-generated areas without becoming part of the organised knowledge base. This process helps decide which notes are worth keeping permanently.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths; mentions CLAUDE.md; names the AskUserQuestion tool.

Good fit Use it to review candidate notes, select valuable insights, move them into permanent storage, and preserve the knowledge graph's connections.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/abilityai/cornelius/graduate-insights
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 Abilityai/cornelius --skill graduate-insights
Clone the repo
git clone --depth 1 https://github.com/Abilityai/cornelius

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 graduate-insights

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/abilityai/cornelius/graduate-insights"><img src="https://agentmods.dev/badge/skills/abilityai/cornelius/graduate-insights.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,893 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 warn 7 Sept 2026
SkillSpector: 2 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Rogue Agent · line 221
    Skill modifies its own code, configuration, or behavior at runtime. Self-modification enables an agent to escalate privileges, disable safety constraints, or install persistent backdoors.
    Fix: Prevent the skill from modifying its own code, SKILL.md, or configuration files. Treat skill files as read-only at runtime.
  • medium Agent Snooping · line 224
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
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.00031 $0.01893
Opus 5 $0.00015 $0.00946
Sonnet 5 $0.00006 $0.00379
Haiku 4.5 $0.00003 $0.00189

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

Security

Grade A, and why

graduate-insights 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/graduate-insights/SKILL.md · 226 lines

How it starts

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

Graduate Insights

Review candidate notes from holding areas and promote valuable ones to permanent note status following Zettelkasten principles.

Purpose

The knowledge base accumulates insights in multiple holding areas:

  • AI Extracted Notes/ - Personal insights from conversations (177 notes)
  • Document Insights/ - Research findings from external sources (1,608 notes across 89 sessions)
  • Books/ - Per-book scopes (the gems mined from each ingested book; the _book.md hub is a navigation note, not a candidate)
  • 00-Inbox/ - Raw captures and staging notes (27 notes)

Without periodic graduation, these insights remain unintegrated. This skill provides a structured review process to:

  1. Surface high-value candidates based on retrieval frequency and age
  2. Present each for human judgment (the essential step)
  3. Graduate worthy notes to 02-Permanent/ with proper formatting
  4. Maintain knowledge graph integrity

State Dependencies

Source Location Read Write
Q-values resources/local-brain-search/data/q_values.json Yes No
AI Extracted Brain/AI Extracted Notes/ Yes Move
Document Insights Brain/Document Insights/*/ Yes Move
Book scopes Brain/Books/*/ Yes Move
Inbox Brain/00-Inbox/ Yes Move
Permanent Notes Brain/02-Permanent/ No Yes
Changelog Brain/CHANGELOG.md Yes Yes

Process

Step 1: Load State and Find Candidates

# Get Q-values for retrieval frequency signals
cat resources/local-brain-search/data/q_values.json

Find candidate notes prioritized by:

  1. Q-value > 0 - Notes that have been retrieved and used
  2. Age > 14 days - Notes that have had time to prove value
  3. Has connections - Notes with wiki-links to permanent notes

Collect up to 5 candidates per session from:

  • Brain/AI Extracted Notes/*.md
  • Brain/Document Insights/**/*.md (exclude CHANGELOG files)
  • Brain/Books/**/*.md (exclude _book.md hubs and CHANGELOG files)
  • Brain/00-Inbox/*.md

Read the full file on GitHub · 226 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. 10d ago First seen · 226 lines · 31 tokens per session scan A e36bbf9328c0

Subscribe to this mod's changes

graduate-insights is a skill published in the GitHub repository Abilityai/cornelius (107 stars, last pushed 17d ago), licensed MIT. It adds 31 tokens to every session and 1,893 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-30.

Related

Other skills, from other repositories

media-ingest

Ingest video, audio, PDF, book, screenshot, and GitHub repo content into the brain. Multi-format handling with entity extraction and backlink propagation. Covers video-ingest, youtube-ingest, and book-ingest subtypes.

garrytan/gbrain · 52 tokens

mem0-oss-to-platform

Plan and then execute a migration of a project from the mem0 open-source / self-hosted SDK (the local Memory class) to the mem0 Platform / hosted / managed SDK (the MemoryClient class). Use this whenever a developer wants to move, switch, or migrate their mem0 usage off OSS/self-hosted to the hosted API — e.g.…

mem0ai/mem0 · 273 tokens

Cortex

Operate Cortex, the LifeOS memory system — the typed Knowledge Archive (People, Companies, Ideas, Research with typed related: links) plus recall of prior work sessions, ISAs, and conversations. Search, add, harvest, develop, ingest, distill, graph-navigate, recall. USE WHEN cortex, knowledge, knowledge base, search…

danielmiessler/LifeOS · 196 tokens

memory

Use when the user asks to remember, recall, forget, update, search, or inspect durable OpenSquilla memory, including profile facts in USER.md and long-term notes in MEMORY.md or memory//.md.

opensquilla/opensquilla · 44 tokens

ha-data-stores

Map of Hope Agent's local data stores and safe read-only query workflow. Use when the user asks where Hope Agent stores data, wants to inspect sessions/messages/memory/logs/background jobs/knowledge indexes/settings, asks the model to query local app data, or debugging requires checking persisted state. Trigger…

shiwenwen/hope-agent · 115 tokens

shellm

Reference for the shellm system — recursive LLM shell, identity management, memory, skills, trajectory, and all CLI tools. Use when working on shellm itself, debugging agent behavior, or understanding how the pieces fit together.

laude-institute/headlong · 49 tokens