원클릭으로
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