ワンクリックで
add-rule
Use when user wants to Guided workflow for adding or editing a custom item rule in items_rules.json
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when user wants to Guided workflow for adding or editing a custom item rule in items_rules.json
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when user wants to Run the Arc Raiders AutoScrapper validation stack after edits. Use for linting, typing, tests, workflow checks, and broader repo validation.
Use when user wants to Update Metaforge snapshots and bundled default rules
Use when user wants to Validate OCR changes against failure corpus before shipping
Add a new OCR regression fixture from an ocr_debug image. Use when a scan misidentified an item and you want to lock in the correct result as a test case.
Use when user wants to Run full validation, push branch, and open a PR with appropriate context notes
Workflow for safely adding, removing, or renaming persisted config fields in config.py. Use whenever editing dataclass fields in src/autoscrapper/config.py. Covers incrementing CONFIG_VERSION, writing a migration function, and validating the round-trip.
| name | add-rule |
| description | Use when user wants to Guided workflow for adding or editing a custom item rule in items_rules.json |
| disable-model-invocation | true |
To add or change a rule for an item:
Find the rules file:
# Default location (if no custom file configured):
ls src/autoscrapper/items/items_rules.default.json
# Custom file (set in settings - this takes precedence):
# Check Settings → Rules File Path in the TUI
Rule format:
{ "item_name": "Arc Alloy", "action": "sell" }
Valid actions: `keep`, `sell`, `recycle`
Do not edit items_rules.default.json - it is overwritten by the update script. Add custom rules to your custom rules file (configured in Settings).
Validate after adding: uv run autoscrapper scan --dry-run Check logs for the item - confirm the correct action appears.
`````text