mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 16:02:32 +00:00
* fix(quality): clear safe existing lint findings * fix(quality): keep lint cleanup allocation-free * fix(quality): enforce performance-safe baseline * test(terminal): drain deferred confirmation cleanup
143 lines
4.8 KiB
TypeScript
143 lines
4.8 KiB
TypeScript
import { specPaths, type CommandSpec } from './command-spec'
|
|
|
|
// Why: rank the live registry so typo recovery cannot drift from accepted paths.
|
|
|
|
const SUGGESTION_THRESHOLD = 3
|
|
const MAX_SUGGESTIONS = 3
|
|
|
|
// Why: a close typo of a destructive verb (`remov`→`remove`) still signals that
|
|
// intent, but `move` (distance 2 from `remove`) does not — keep this at 1 so
|
|
// genuine recovery works while unrelated verbs stay locked out. #6303
|
|
const DESTRUCTIVE_INTENT_THRESHOLD = 1
|
|
|
|
function finalToken(path: string[]): string {
|
|
return path.at(-1) ?? ''
|
|
}
|
|
|
|
// Why: destructiveness is declared on the spec (single source of truth); the
|
|
// intent verbs are the final tokens of every destructive path/alias so the guard
|
|
// tracks the registry instead of a hand-maintained list.
|
|
function destructiveVerbs(specs: CommandSpec[]): Set<string> {
|
|
const verbs = new Set<string>()
|
|
for (const spec of specs) {
|
|
if (spec.destructive) {
|
|
for (const path of specPaths(spec)) {
|
|
verbs.add(finalToken(path))
|
|
}
|
|
}
|
|
}
|
|
return verbs
|
|
}
|
|
|
|
// Why: deletion is irreversible and suggestions flow into agents' recovery
|
|
// channel (--json nextSteps), so only unlock destructive candidates when the
|
|
// input token is itself a near-miss of a destructive verb. #6303
|
|
function intendsDestruction(inputToken: string, verbs: Set<string>): boolean {
|
|
for (const verb of verbs) {
|
|
if (levenshtein(inputToken, verb) <= DESTRUCTIVE_INTENT_THRESHOLD) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
export type CommandErrorData = {
|
|
suggestions: string[]
|
|
nextSteps: string[]
|
|
}
|
|
|
|
export function levenshtein(a: string, b: string): number {
|
|
const m = a.length
|
|
const n = b.length
|
|
if (m === 0) {
|
|
return n
|
|
}
|
|
if (n === 0) {
|
|
return m
|
|
}
|
|
let prev = Array.from({ length: n + 1 }, (_, index) => index)
|
|
let curr = Array.from({ length: n + 1 }, () => 0)
|
|
for (let i = 1; i <= m; i += 1) {
|
|
curr[0] = i
|
|
for (let j = 1; j <= n; j += 1) {
|
|
const cost = a[i - 1] === b[j - 1] ? 0 : 1
|
|
curr[j] = Math.min(prev[j] + 1, curr[j - 1] + 1, prev[j - 1] + cost)
|
|
}
|
|
const swap = prev
|
|
prev = curr
|
|
curr = swap
|
|
}
|
|
return prev[n]
|
|
}
|
|
|
|
// Why: one bounded near-match ranking keeps command and flag recovery consistent.
|
|
function rankByDistance(scored: { label: string; distance: number }[]): string[] {
|
|
return scored
|
|
.filter((entry) => entry.distance > 0 && entry.distance <= SUGGESTION_THRESHOLD)
|
|
.sort((a, b) => a.distance - b.distance || a.label.localeCompare(b.label))
|
|
.slice(0, MAX_SUGGESTIONS)
|
|
.map((entry) => entry.label)
|
|
}
|
|
|
|
// Why: same-depth matching avoids suggesting parent groups or unrelated commands.
|
|
export function suggestCommands(specs: CommandSpec[], commandPath: string[]): string[] {
|
|
const input = commandPath.join(' ')
|
|
// Why: only surface destructive commands when the user actually reached for one;
|
|
// otherwise a benign typo could recover into an irreversible action. #6303
|
|
const allowDestructive = intendsDestruction(finalToken(commandPath), destructiveVerbs(specs))
|
|
const seen = new Set<string>()
|
|
const scored: { label: string; distance: number }[] = []
|
|
for (const spec of specs) {
|
|
if (spec.destructive && !allowDestructive) {
|
|
continue
|
|
}
|
|
const candidates = specPaths(spec).map((path) =>
|
|
commandPath.length === 1 ? path.slice(0, 1) : path
|
|
)
|
|
for (const candidate of candidates) {
|
|
if (candidate.length !== commandPath.length) {
|
|
continue
|
|
}
|
|
const joined = candidate.join(' ')
|
|
if (seen.has(joined)) {
|
|
continue
|
|
}
|
|
seen.add(joined)
|
|
scored.push({ label: joined, distance: levenshtein(input, joined) })
|
|
}
|
|
}
|
|
return rankByDistance(scored)
|
|
}
|
|
|
|
export function unknownCommandData(specs: CommandSpec[], commandPath: string[]): CommandErrorData {
|
|
const suggestions = suggestCommands(specs, commandPath)
|
|
const nextSteps = suggestions.length
|
|
? [`Did you mean: ${suggestions.map((path) => `orca ${path}`).join(', ')}`]
|
|
: []
|
|
return { suggestions, nextSteps }
|
|
}
|
|
|
|
export type FlagErrorData = {
|
|
validFlags: string[]
|
|
suggestions: string[]
|
|
nextSteps: string[]
|
|
}
|
|
|
|
function suggestFlags(flag: string, validFlags: string[]): string[] {
|
|
return rankByDistance(
|
|
validFlags.map((candidate) => ({ label: candidate, distance: levenshtein(flag, candidate) }))
|
|
)
|
|
}
|
|
|
|
// Why: include the accepted set so agents can recover without another help call.
|
|
export function unknownFlagData(flag: string, validFlags: string[]): FlagErrorData {
|
|
const sortedValid = [...validFlags].sort((a, b) => a.localeCompare(b))
|
|
const suggestions = suggestFlags(flag, sortedValid)
|
|
const nextSteps: string[] = []
|
|
if (suggestions.length > 0) {
|
|
nextSteps.push(`Did you mean: ${suggestions.map((name) => `--${name}`).join(', ')}`)
|
|
}
|
|
nextSteps.push(`Valid flags: ${sortedValid.map((name) => `--${name}`).join(', ')}`)
|
|
return { validFlags: sortedValid, suggestions, nextSteps }
|
|
}
|