Code Storage now supports repository search in the API and dashboard.
The repository list endpoint accepts an optional q parameter that filters results by a
case-insensitive substring match against the repository URL. You can search by the repo name portion
you remember, like sdk-docs, or paste a full path, like pierre/sdk-docs.
curl -X GET \
-H "Authorization: Bearer $ORG_READ_TOKEN" \
"https://code.storage/api/v1/repos?q=sdk-docs&limit=5"Search uses the same org:read authorization as listing repositories, keeps cursor pagination, and
still returns the full repository list when q is omitted.
The dashboard now uses the same search path in the repository explorer. Type a few characters, pick a matching repository URL, and jump straight into its file tree without scrolling through the full repo list.
We also tightened the empty-repository state while wiring this up. A repo with no commits now shows as empty so you can push the first commit, while a real missing repository or ref still returns a not-found state.