proposal-filing

proposal-filing is a skill for Claude Code, Codex from Jessinra/Lorekeeper. It costs 41 tokens per session (1,159 once invoked), scanned A, original, Apache-2.0.

A workflow for filing a Lorekeeper proposal ticket as a Markdown file and GitHub issue, then committing and pushing it. Lorekeeper is the project this process is designed for.

In plain words
What is it for?
Use it to create a numbered proposal, fill in its required details, publish the matching GitHub issue, and send the changes to the repository.
Why use it?
It standardizes new feature, bug, research, and product-idea submissions and avoids duplicate ticket numbers.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/jessinra/lorekeeper/proposal-filing
Any agent
npx skills add Jessinra/Lorekeeper --skill proposal-filing
Clone the repo
git clone --depth 1 https://github.com/Jessinra/Lorekeeper

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 proposal-filing

README.md
[![agentmods](https://agentmods.dev/badge/skills/jessinra/lorekeeper/proposal-filing.svg)](https://agentmods.dev/skills/jessinra/lorekeeper/proposal-filing)
Your own site
<a href="https://agentmods.dev/skills/jessinra/lorekeeper/proposal-filing"><img src="https://agentmods.dev/badge/skills/jessinra/lorekeeper/proposal-filing.svg" alt="Measured on agentmods" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,159 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00041 $0.01159
Opus 5 $0.00020 $0.00580
Sonnet 5 $0.00008 $0.00232
Haiku 4.5 $0.00004 $0.00116

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

Security

Grade A, and why

proposal-filing 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 5d 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.

.hermes/skills/proposal-filing/SKILL.md · 137 lines

How it starts

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

Proposal Filing

Create a new Lorekeeper proposal ticket end-to-end.

Prerequisites

  • Working directory: ~/Code/lorekeeper/
  • Git identity: git config user.name and user.email must be set

Steps

1. Get the next ticket number

Always use the GitHub Issues-based script — this works from any git state (no need to pull latest):

cd ~/Code/lorekeeper
./scripts/next-ticket-number.sh -m

This queries GitHub Issues for the highest existing LKPR-N and returns the next one, e.g. LKPR-43. Also available as machine-parseable:

./scripts/next-ticket-number.sh  # just "LKPR-43"

Do NOT rely on the local git state — you may not have the latest main branch, leading to duplicate ticket numbers.

2. Create the markdown file

cp backlogs/TEMPLATE.md backlogs/LKPR-N-<short-slug>.md

Fill in frontmatter:

---
id: LKPR-N
title: Short descriptive title
type: feature # feature | bug | enhancement | research | chore
status: S:proposal
priority: P2:medium # P0:critical | P1:high | P2:medium | P3:low
sprint: ~
rice_score: ~
filed_by: Diana # whoever is filing
filed_date: YYYY-MM-DD
github_issue: ~ # fill after step 3
---

Required body sections: Problem, Solution, Acceptance Criteria, Affected Files (Backend + Dashboard or _none_), Dependencies.

3. Create the GitHub issue

gh issue create \
  --title "LKPR-N: <title>" \
  --label "S:Proposal,P2: medium" \
  --body "$(cat backlogs/LKPR-N-<slug>.md)" \
  --repo Jessinra/Lorekeeper

Important: GitHub label format has a space between colon and value (e.g. P2: medium, not P2:medium).

4. Add GitHub issue number to frontmatter

After creating the issue, add its number to the frontmatter. The pre-commit hook validates this field — it must be the numeric ID, not the full URL:

github_issue: 211 # number only, not "https://github.com/..."

Then run Prettier — the pre-commit hook checks formatting and will reject unformatted files:

Read the full file on GitHub · 137 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. 5d ago First seen · 137 lines · 41 tokens per session scan A 6dde08022a28

Subscribe to this mod's changes

proposal-filing is a skill published in the GitHub repository Jessinra/Lorekeeper (4 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 41 tokens to every session and 1,159 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.

Related

Other skills, from other repositories

commit

Atomic git commit with conventional message. Use when the user says "commit", "save my changes", "commit this", or wants to create a git commit. Stages specific files, writes a conventional commit message with body explaining non-obvious decisions. Never uses git add -A.

congchuanling-dot/Cohort · 59 tokens

workspace-git

Git operations scoped to SwarmWS: status, diff, commit, log, search, stash, and branch management. Provides structured output for the agent to reason about workspace changes. TRIGGER: "git status", "commit changes", "what changed", "git log". NOT FOR: github-research use cases.

xg-gh-25/SwarmAI · 70 tokens

commitlore-commits

Use when about to make a git commit and there is decision context worth recording — a constraint that shaped the change, an alternative that was tried and dropped, a warning for whoever touches this next. Drives the CommitLore capture pipeline, which drafts a record from the session transcript and the staged diff…

MongLong0214/commitlore · 235 tokens

commitlore-setup

Use when a git repository needs CommitLore wired up for the first time, or when its hook/notes configuration looks broken. Runs the diagnostic, installs the commit-msg validation hook, fixes the notes fetch refspec so records survive a clone or fetch, and builds the local record index. Trigger phrases include "set up…

MongLong0214/commitlore · 129 tokens

commitlore-commits

Capture a decision record from verified session and diff evidence before a commit.

MongLong0214/commitlore · 21 tokens

commit

Handles git branches, commits, and pull requests for VichuFlow following Conventional Commits v1.0.0. Use this skill whenever the user asks to commit, create a commit, stage changes, create a PR, open a pull request, push changes, or create a branch — e.g. "/commit", "commit this", "make a PR", "push my changes"…

corteshvictor/vichu-flow · 103 tokens