Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
@@ -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`.
9 changes: 0 additions & 9 deletions internal/engine/workspace_state.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
Loading