openlore-housekeeping

openlore-housekeeping is a skill for Claude Code, Codex from aakarim/OpenLore. It costs 48 tokens per session (706 once invoked), scanned A, original, MIT.

A maintenance procedure for an OpenLore knowledge base, a shared documentation system. It checks documents, links, inbox items, and missing coverage.

In plain words
What is it for?
Use it to flag stale documents, broken internal links, old unpublished inbox items, and skills that the knowledge base does not cover.
Why use it?
It helps find outdated or incomplete team knowledge before it becomes difficult to trust or use.

Skill for Claude CodeCodex

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

Good fit Use it to flag stale documents, broken internal links, old unpublished inbox…

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

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 openlore-housekeeping

README.md
[![agentmods](https://agentmods.dev/badge/skills/aakarim/openlore/openlore-housekeeping.svg)](https://agentmods.dev/skills/aakarim/openlore/openlore-housekeeping)
Your own site
<a href="https://agentmods.dev/skills/aakarim/openlore/openlore-housekeeping"><img src="https://agentmods.dev/badge/skills/aakarim/openlore/openlore-housekeeping.svg" alt="Measured on agentmods" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 706 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.00048 $0.00706
Opus 5 $0.00024 $0.00353
Sonnet 5 $0.00010 $0.00141
Haiku 4.5 $0.00005 $0.00071

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

Security

Grade A, and why

openlore-housekeeping 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 7d 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.

assets/skills/agents/shellm/openlore-housekeeping/SKILL.md · 86 lines

How it starts

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

OpenLore Housekeeping

Keep a shared knowledge base healthy. Run each check below, collect findings, and publish one report. Requires the openlore skill (server access via $OPENLORE_SSH).

1. Find stale documents

Documents carry frontmatter. Use lore meta to list paths with dates, then flag old ones:

ssh $OPENLORE_SSH "lore meta /docs | jq -r 'select(.updated != null) | [.updated, .path] | @tsv' | sort" 

Flag anything older than the agreed threshold (default: 90 days). Also flag documents with no frontmatter date at all:

ssh $OPENLORE_SSH "lore meta /docs | jq -r 'select(.updated == null) | .path'"

Extract relative Markdown links and check each target exists:

ssh $OPENLORE_SSH "grep -rho ']([^)h][^)]*)' /docs | tr -d ']()' | sort -u" 

For each path, test it: ssh $OPENLORE_SSH "test -e /docs/<target> || echo missing: <target>".

3. Check the publish inboxes

Items published into an inbox wait for a human to move them into the docset. List what is waiting and how old it is:

ssh $OPENLORE_SSH "find / -type f | grep '/inbox/' | xargs -I{} stat {}"

Flag inbox items older than 7 days: they are stuck and need a human decision.

4. Check trajectory freshness

If the server has a /trajectories docset, confirm recent agent runs are being synced:

ssh $OPENLORE_SSH "ls -t /trajectories | head -5"

Compare with local ~/.headlong/trajectories/. Sync any completed run that is missing (see the openlore skill for the sync procedure).

5. Check skill coverage

If the server hosts a skills collection, verify every skill directory has a SKILL.md:

ssh $OPENLORE_SSH "ls -1 /skills | while read -r d; do test -e /skills/\$d/SKILL.md || echo missing: \$d; done"

6. Publish the report

Write one Markdown report with a section per check and only actionable findings. Publish it; the inbox keeps reports out of the docset until a human accepts them:

Read the full file on GitHub · 86 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. 7d ago First seen · 86 lines · 48 tokens per session scan A 2653fe7f9fd2

Subscribe to this mod's changes

openlore-housekeeping is a skill published in the GitHub repository aakarim/OpenLore (88 stars, last pushed 2d ago), licensed MIT. It adds 48 tokens to every session and 706 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.