veto_pattern_store
Recognize and persist coding patterns by category and name, boosting confidence each time a pattern is re-observed to support codebase-wide learning.
Instructions
Stores or updates a coding pattern observed in the codebase. Patterns are keyed by category.pattern-name and confidence increases with repeated observation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| confidence | No | Confidence score 0.0–1.0 (default 1.0). Increases automatically on repeated observation. | |
| pattern_key | Yes | Pattern identifier in category.pattern-name format. Example: "code.async-pattern" or "naming.variable-case". | |
| pattern_val | Yes | The observed pattern value. Example: "async/await with try/catch, no raw Promise chains". |