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
7 changes: 6 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ jobs:

release:
needs: test
# Serialise releases: never cancel a publish mid-flight (half-tagged /
# half-pushed Homebrew tap), queue the next one behind it instead.
concurrency:
group: release
cancel-in-progress: false
runs-on: ubuntu-latest
permissions:
contents: write
Expand All @@ -30,7 +35,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: "1.21"
go-version: "1.24"

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: "1.21"
go-version: "1.24"

- name: Run tests
run: go test -v -cover ./...
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Globally search and resume [Claude Code](https://claude.ai/claude-code) conversa
## Features

- Search through all your Claude Code conversations
- See session names (your custom titles or Claude's auto-generated ones) in the list
- Preview conversation context with search term highlighting
- See message counts and hit counts per conversation
- Resume conversations directly from the search interface
Expand All @@ -28,7 +29,7 @@ brew install agentic-utils/tap/ccs

### From source

Requires [Go](https://go.dev/doc/install) 1.21+.
Requires [Go](https://go.dev/doc/install) 1.24+.

```bash
go install github.com/agentic-utils/ccs@latest
Expand Down Expand Up @@ -71,6 +72,7 @@ ccs buyer -- --plan
| `--max-age=N` | 60 | Only search files modified in the last N days (0 = no limit) |
| `--max-size=N` | 1024 | Max file size in MB to include (0 = no limit) |
| `--all` | - | Include everything (same as `--max-age=0 --max-size=0`) |
| `--exclude=a,b` | observer-sessions | Exclude project dirs whose path contains any of these substrings |

### Keybindings

Expand Down
Loading