(command)
| 99 | } |
| 100 | |
| 101 | function looksLikeVerificationCommand(command) { |
| 102 | return /\b(test|tests|lint|build|typecheck|type-check|check|verify|validate|pytest|jest|vitest|cargo test|npm test|pnpm test|yarn test|go test|mvn test|gradle test|tsc|eslint|ruff)\b/i.test( |
| 103 | command |
| 104 | ); |
| 105 | } |
| 106 | |
| 107 | function buildTaskThreadName(prompt) { |
| 108 | const excerpt = shorten(prompt, 56); |
no outgoing calls
no test coverage detected