ワンクリックで
kimi-qa
Answer a MaskOps codebase question using Kimi K2.6 with full project context. Usage: /kimi-qa your question here
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Answer a MaskOps codebase question using Kimi K2.6 with full project context. Usage: /kimi-qa your question here
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Scaffold a new PII pattern end-to-end for MaskOps — new src/patterns/<family> file, full wiring into every aggregator in mod.rs, lib.rs registration, tests, and changelog/roadmap updates. Use when adding support for a new identifier type (a national ID, tax number, health ID, card scheme, etc.).
Run a Kimi K2.6 Rust performance review of the current diff. Use before every PR.
Run a Kimi K2.6 code correctness review of the current diff. Catches logical bugs, edge cases, and API contract violations. Use before every PR alongside /kimi-security and /kimi-optimize.
Run a Kimi K2.6 security and GDPR compliance review of the current diff. Use before every PR.
SOC 職業分類に基づく
| name | kimi-qa |
| description | Answer a MaskOps codebase question using Kimi K2.6 with full project context. Usage: /kimi-qa your question here |
$ARGUMENTS
!find src -name '*.rs' | sort
!git log --oneline -15
Based on the question in $ARGUMENTS, identify the 2–4 most relevant .rs source files. Read them.
Read prompt-template.md. Fill in:
{{QUESTION}} — the question from $ARGUMENTS{{FILE_TREE}} — the file list injected above{{RECENT_CHANGES}} — the git log injected above{{RELEVANT_CODE}} — the source file contents you read in step 1Write the filled brief to /tmp/kimi_qa_brief.md.
Run this command:
kimi --quiet -p "$(cat /tmp/kimi_qa_brief.md)"
Extract every function name, type name, and module path Kimi mentions in its answer. For each one, grep:
grep -rn "SYMBOL" src/
Flag any symbol that returns zero matches as UNVERIFIED.
Present Kimi's answer, then append:
VERIFIED — if all mentioned symbols were confirmed in the codebaseUNVERIFIED symbols: [list] — for any that could not be found