diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..a67a979 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,5 @@ +# Agent Instructions + +- Follow the repository's established engineering practices and keep changes scoped to the task. +- After completing work, check CI status and ensure CI checks pass before handing off. +- For local validation, prefer the same checks used by CI: `make lint`, `make test`, and `make test-integration`. diff --git a/internal/engine/workspace_state.go b/internal/engine/workspace_state.go index 08c632a..654be1f 100644 --- a/internal/engine/workspace_state.go +++ b/internal/engine/workspace_state.go @@ -57,15 +57,6 @@ func (e *Engine) workspaceStateStores() []state.StateStore { return stores } -// workspacesDirs returns workspace directory paths for scanning (both scopes). -func (e *Engine) workspacesDirs() []string { - var dirs []string - for _, source := range e.workspaceStateSources() { - dirs = append(dirs, source.dir) - } - return dirs -} - func (e *Engine) forEachWorkspaceState(fn func(workspaceID string, ws *state.WorkspaceState) error) error { seen := make(map[string]bool)