General
PromptBeginner5 minmarkdown
Untitled Skill
193
Draft a Conventional Commits message for the staged changes and commit.
Loading actions...
Main instructions and any bundled files for this skill.
TypeScript and ESLint rules that MUST be followed when creating, modifying, or reviewing any file under apps/frontend/, including .ts, .tsx, .js, and .jsx files. Also apply when discussing frontend li...
risks
Review the staged changes with git diff --cached and any unstaged changes
with git diff.
Then:
type: feat, fix, docs, refactor, test, chore, build, ci, perf.scope (the module): ingestion, retrieval, topics, graph, app, eval.git commit -m "type(scope): description" (use a heredoc for a body).Rules:
Co-Authored-By trailer — commits are attributed to the
human author only.feat(retrieval): add BM25 index build and searchfix(graph): skip outlier topic -1 in belongs_to edgesIf nothing is staged, run git status and suggest what to stage based on the
recent work. After committing, show git log -1 --oneline.