mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 16:02:32 +00:00
Production crash diagnostics measured ~128 `git worktree list` execs/min (9,400 in one 80-minute session, ~16% of wall-clock in git subprocesses): the resolved-worktree scan fans out over every registered repo on a 30s cache TTL, and most registered repos on the affected installs were agent-CLI scratch repos (~/.codex-tmp capsules, vendor imports, skill checkouts) that need no freshness. Classify agent-scratch repo roots with a curated shared matcher and stamp their scan-cache entries with a 5-minute TTL instead of 30s. Orca-driven mutations still bypass the TTL via the per-repo generation bump, so only passive pickup of external changes slows for scratch repos. Expected steady-state reduction on the measured install: ~82% fewer git spawns.
146 lines
5.1 KiB
TypeScript
146 lines
5.1 KiB
TypeScript
import { describe, expect, it } from 'vitest'
|
|
import {
|
|
createAgentScratchWorktreePathMatcher,
|
|
isAgentScratchRepoRootPath,
|
|
isAgentScratchWorktreePath
|
|
} from './agent-scratch-worktrees'
|
|
|
|
describe('isAgentScratchWorktreePath', () => {
|
|
const repoPath = '/Users/dev/app'
|
|
|
|
it('matches Claude Code sub-agent worktrees', () => {
|
|
expect(
|
|
isAgentScratchWorktreePath(
|
|
repoPath,
|
|
'/Users/dev/app/.claude/worktrees/agent-a04ccaaa55ddadb91'
|
|
)
|
|
).toBe(true)
|
|
})
|
|
|
|
it('matches gsd parallel-agent workspaces', () => {
|
|
expect(
|
|
isAgentScratchWorktreePath(repoPath, '/Users/dev/app/.gsd-workspaces/phase-1-subagent-2')
|
|
).toBe(true)
|
|
})
|
|
|
|
it('matches scratch worktrees created from a linked checkout', () => {
|
|
const matchesAgentScratch = createAgentScratchWorktreePathMatcher([
|
|
repoPath,
|
|
'/Users/dev/orca/workspaces/app/feature-x'
|
|
])
|
|
|
|
expect(
|
|
matchesAgentScratch(
|
|
'/Users/dev/orca/workspaces/app/feature-x/.claude/worktrees/agent-a04ccaaa'
|
|
)
|
|
).toBe(true)
|
|
expect(matchesAgentScratch('/Users/dev/other/feature-x/.claude/worktrees/agent-a04ccaaa')).toBe(
|
|
false
|
|
)
|
|
})
|
|
|
|
it('matches Windows path separators and casing', () => {
|
|
expect(
|
|
isAgentScratchWorktreePath(
|
|
'C:\\Users\\dev\\app',
|
|
'c:\\USERS\\dev\\app\\.Claude\\Worktrees\\agent-a04ccaaa'
|
|
)
|
|
).toBe(true)
|
|
})
|
|
|
|
it('matches WSL UNC paths', () => {
|
|
expect(
|
|
isAgentScratchWorktreePath(
|
|
'//wsl$/Ubuntu/home/dev/app',
|
|
'//wsl.localhost/Ubuntu/home/dev/app/.claude/worktrees/agent-a04ccaaa'
|
|
)
|
|
).toBe(true)
|
|
})
|
|
|
|
it('preserves case-sensitive POSIX and WSL tool segments', () => {
|
|
expect(
|
|
isAgentScratchWorktreePath(repoPath, '/Users/dev/app/.Claude/Worktrees/agent-a04ccaaa')
|
|
).toBe(false)
|
|
expect(
|
|
isAgentScratchWorktreePath(
|
|
'//wsl.localhost/Ubuntu/home/dev/app',
|
|
'//wsl.localhost/ubuntu/home/dev/app/.Claude/Worktrees/agent-a04ccaaa'
|
|
)
|
|
).toBe(false)
|
|
})
|
|
|
|
it('requires the tool directory at the repo root', () => {
|
|
expect(
|
|
isAgentScratchWorktreePath(repoPath, '/Users/dev/app/.claude/other/worktrees/agent-1')
|
|
).toBe(false)
|
|
expect(
|
|
isAgentScratchWorktreePath(repoPath, '/Users/dev/app/packages/demo/.claude/worktrees/agent-1')
|
|
).toBe(false)
|
|
expect(isAgentScratchWorktreePath(repoPath, '/Users/dev/app/.gsd-workspaces')).toBe(false)
|
|
})
|
|
|
|
it('does not match undotted claude directories', () => {
|
|
expect(isAgentScratchWorktreePath(repoPath, '/Users/dev/app/claude/worktrees/agent-1')).toBe(
|
|
false
|
|
)
|
|
})
|
|
|
|
it('does not inherit a scratch classification from the repo parent path', () => {
|
|
expect(
|
|
isAgentScratchWorktreePath(
|
|
'/Users/dev/.claude/worktrees/app',
|
|
'/Users/dev/.claude/worktrees/app/manual/feature-x'
|
|
)
|
|
).toBe(false)
|
|
})
|
|
|
|
it('does not match user worktree conventions', () => {
|
|
expect(isAgentScratchWorktreePath(repoPath, '/Users/dev/app/.worktrees/feature-x')).toBe(false)
|
|
expect(
|
|
isAgentScratchWorktreePath('/Users/dev/app', '/Users/dev/.superset/worktrees/app/fix-notes')
|
|
).toBe(false)
|
|
expect(isAgentScratchWorktreePath('/Users/dev/app', '/orca/workspaces/app/feature')).toBe(false)
|
|
})
|
|
})
|
|
|
|
describe('isAgentScratchRepoRootPath', () => {
|
|
it('matches codex scratch capsule repos', () => {
|
|
expect(
|
|
isAgentScratchRepoRootPath('/Users/dev/.codex-tmp/foragent-capsule-b1-repo-zP9Az6')
|
|
).toBe(true)
|
|
expect(isAgentScratchRepoRootPath('/Users/dev/.codex-tmp/rc-fwd-qEXuEq')).toBe(true)
|
|
})
|
|
|
|
it('matches codex vendor imports and claude skills containers', () => {
|
|
expect(isAgentScratchRepoRootPath('/Users/dev/.codex/vendor_imports/skills')).toBe(true)
|
|
expect(isAgentScratchRepoRootPath('/Users/dev/.claude/skills/obsidian-second-brain')).toBe(true)
|
|
})
|
|
|
|
it('matches a repo registered at the scratch container itself', () => {
|
|
expect(isAgentScratchRepoRootPath('/Users/dev/.codex-tmp')).toBe(true)
|
|
expect(isAgentScratchRepoRootPath('/Users/dev/.codex/vendor_imports')).toBe(true)
|
|
})
|
|
|
|
it('matches scratch worktree containers used as repo roots', () => {
|
|
expect(isAgentScratchRepoRootPath('/Users/dev/app/.claude/worktrees/agent-a04ccaaa')).toBe(true)
|
|
expect(isAgentScratchRepoRootPath('/Users/dev/app/.gsd-workspaces/phase-1')).toBe(true)
|
|
})
|
|
|
|
it('matches Windows separators and casing', () => {
|
|
expect(isAgentScratchRepoRootPath('C:\\Users\\Dev\\.codex-tmp\\Capsule-X')).toBe(true)
|
|
expect(isAgentScratchRepoRootPath('C:\\Users\\Dev\\.Claude\\Skills\\foo')).toBe(true)
|
|
})
|
|
|
|
it('does not match ordinary user repos', () => {
|
|
expect(isAgentScratchRepoRootPath('/Users/dev/projects/app')).toBe(false)
|
|
expect(isAgentScratchRepoRootPath('/Users/dev/codex-tmp/app')).toBe(false)
|
|
expect(isAgentScratchRepoRootPath('/Users/dev/.codex/checkouts/app')).toBe(false)
|
|
expect(isAgentScratchRepoRootPath('/Users/dev/skills/.claude-app')).toBe(false)
|
|
})
|
|
|
|
it('does not match partial multi-segment markers', () => {
|
|
expect(isAgentScratchRepoRootPath('/Users/dev/.claude/config')).toBe(false)
|
|
expect(isAgentScratchRepoRootPath('/Users/dev/vendor_imports/app')).toBe(false)
|
|
})
|
|
})
|