一键导入
sentinel-dismiss
Dismiss a draft Sentinel rule and prevent re-proposal
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Dismiss a draft Sentinel rule and prevent re-proposal
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
View or update Sentinel configuration
Scaffold Sentinel config and rules directory in the current repository, installing prerequisites if needed
Create or edit a Sentinel rule through guided conversation
Show Sentinel telemetry stats — rule performance, latency, violations, and hottest targets
List pending draft Sentinel rules with provenance
Scan documentation files for conventions and generate draft Sentinel rules
| name | sentinel-dismiss |
| description | Dismiss a draft Sentinel rule and prevent re-proposal |
| user-invocable | true |
Dismiss a draft rule and add it to the blocklist so Scribe won't re-propose it.
The user provides the draft rule ID as an argument: /sentinel-dismiss <id>
Look for .claude/sentinel/drafts/<id>.draft.yaml
Read the draft YAML and show a brief summary:
Confirm: "Dismiss this draft? Scribe won't propose rules with the same scope and trigger again."
Add to blocklist by running:
from sentinel_scribe import add_dismissal
# Extract scope (first pattern) and trigger from the draft
add_dismissal(scribe_dir, scope, trigger, statement)
Or equivalently, append to .sentinel/scribe/dismissed.jsonl:
{"scope": "<first scope pattern>", "trigger": "<trigger>", "statement_hash": "<hash>", "dismissed_at": "<iso timestamp>"}
Delete drafts/<id>.draft.yaml
Confirm: "Draft <id> dismissed. Scribe won't re-propose rules for this scope and trigger."
After dismissing the draft, suggest to the user:
/sentinel-drafts — review remaining pending drafts/sentinel-rule — create a rule manually if the dismissed draft was close but needed a different approach