| Provider | Model Name | SWE Score | Input Cost | Output Cost |
|---|---|---|---|---|
| anthropic | claude-sonnet-4-20250514 | 0.727 | 3 | 15 |
| anthropic | claude-opus-4-20250514 | 0.725 | 15 | 75 |
| anthropic | claude-3-7-sonnet-20250219 | 0.623 | 3 | 15 |
| anthropic | claude-3-5-sonnet-20241022 | 0.49 | 3 | 15 |
TLDR: "Any function that re-detects the tag invites race conditions. Resolve it in the CLI/MCP layer, thread { projectRoot, tag } everywhere else, and keep IO dumb."
"Boundary resolves, context carries, IO obeys."
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| SERIAL="00000000" | |
| echo "Looking for device with serial $SERIAL..." | |
| for d in /sys/bus/usb/devices/*-*; do | |
| if [[ -f "$d/serial" ]]; then | |
| serial=$(<"$d/serial") | |
| if [[ "$serial" = "$SERIAL" ]]; then | |
| device="$(basename $d)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const feedbackMachine = Machine({ | |
| id: 'feedback', | |
| initial: 'question', | |
| states: { | |
| question: { | |
| on: { | |
| CLICK_GOOD: 'thanks', | |
| CLICK_BAD: 'form', | |
| CLOSE: 'closed', | |
| ESC: 'closed' |