Give question files scannable slugs (Q-NNN-short-slug.md)#7
Merged
Conversation
Question files move from Q-NNN.md to Q-NNN-short-slug.md, matching the scannable naming that log entries already use. The Q-NNN prefix keeps files ID-sorted and greppable by number; the slug is for human scanning. The id: frontmatter field stays the authoritative ID (the dashboard keys off it, not the filename), so nothing downstream breaks. Skills: - capture: create questions with a log-style slug; next-ID sed regex made slug-tolerant, still filename-based. - resolve: find the file by globbing Q-NNN-*.md (with a Q-NNN.md legacy fallback) instead of opening a fixed name; examples updated. - ask: layout diagram updated (its Q-*.md globs already worked). - supersede: unchanged; it never references question files. Specs/docs updated to match: AGENTS.md, CLAUDE.md, README.md. Migrate this repo's own tracked questions Q-001..Q-007 to slugged names (git mv, no frontmatter change). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Question files move from
Q-NNN.mdtoQ-NNN-short-slug.md, matching the scannable naming that log entries already use. TheQ-NNNprefix keeps files ID-sorted and greppable by number; the slug is for human scanning. Theid:frontmatter field stays the authoritative ID (the dashboard keys off it, not the filename), so nothing downstream breaks.Skills
sedregex made slug-tolerant, still filename-based.Q-NNN-*.md(with aQ-NNN.mdlegacy fallback) instead of opening a fixed name; examples updated.Q-*.mdglobs already worked unchanged).Docs
AGENTS.md,CLAUDE.md, andREADME.mdupdated to match.Migration
This repo's own tracked questions
Q-001..Q-007renamed to slugged names (git mv, no frontmatter change). Existing legacyQ-NNN.mdfiles elsewhere keep working via the resolve fallback and the slug-tolerant next-ID regex.Not included
Untracked WIP left out of this branch: the
packages/wherefore-dashboard/skill/template copies (synced in the working tree, to be committed with that bundle), the untrackedQ-008question, and the in-progress plan/roadmap docs.🤖 Generated with Claude Code