Skip to content

chore: rebrand plugin SDK from Silo to Prairie - #1

Merged
cursor[bot] merged 1 commit into
mainfrom
cursor/rebrand-silo-to-prairie-b9a3
Jul 26, 2026
Merged

chore: rebrand plugin SDK from Silo to Prairie#1
cursor[bot] merged 1 commit into
mainfrom
cursor/rebrand-silo-to-prairie-b9a3

Conversation

@JonahMMay

Copy link
Copy Markdown

Summary

Completes the Silo → Prairie rebrand for the public plugin SDK: Go module path, protobuf package, manifest field, handshake constants, docs, and examples.

Changes

  • Module: github.com/prairie-server/prairie-plugin-sdk
  • Proto package: prairie.plugin.v1 (was silo.plugin.v1)
  • Manifest field: prairie_api_version (was silo_api_version)
  • Handshake / plugin set names updated to Prairie identifiers
  • Examples, docs, and CI GOPRIVATE paths updated
  • Regenerated protobuf Go output under pkg/pluginproto/prairie/plugin/v1/

Test plan

  • go test ./...

Follow-ups

Consumers (prairie-server, first-party plugins, prairie-plugins catalog) need matching updates to import paths, plugin IDs, and prairie_api_version.

Open in Web Open in Cursor 

Rename the Go module to github.com/prairie-server/prairie-plugin-sdk,
move proto/silo to proto/prairie with package prairie.plugin.v1, rename
silo_api_version to prairie_api_version, regenerate pluginproto under
pkg/pluginproto/prairie/plugin/v1, and update imports, examples, docs,
workflows, and handshake constants to Prairie branding.

Co-authored-by: Jonah May <JonahMMay@users.noreply.github.com>
@coderabbitai

coderabbitai Bot commented Jul 26, 2026

Copy link
Copy Markdown

Warning

Review limit reached

@cursor[bot], you've reached your PR review limit, so we couldn't start this review.

Next review available in: 22 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 480ecfd6-1740-44bc-9711-984a8b1a1263

📥 Commits

Reviewing files that changed from the base of the PR and between 9bb5165 and 3c6de05.

⛔ Files ignored due to path filters (24)
  • pkg/pluginproto/prairie/plugin/v1/auth_provider.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/auth_provider_grpc.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/common.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/common_grpc.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/event_consumer.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/event_consumer_grpc.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/http_routes.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/http_routes_grpc.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/marker_provider.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/marker_provider_grpc.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/media_analyzer.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/media_analyzer_grpc.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/metadata_provider.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/metadata_provider_grpc.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/request_router.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/request_router_grpc.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/runtime_host.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/runtime_host_grpc.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/scan_source.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/scan_source_grpc.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/scheduled_task.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/scheduled_task_grpc.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/watch_sync_provider.pb.go is excluded by !**/*.pb.go
  • pkg/pluginproto/prairie/plugin/v1/watch_sync_provider_grpc.pb.go is excluded by !**/*.pb.go
📒 Files selected for processing (55)
  • .github/workflows/release.yml
  • README.md
  • docs/compatibility.md
  • docs/runtime-host.md
  • examples/hello-runtime-host/main.go
  • examples/hello-runtime-host/manifest.json
  • examples/hello-scheduled-task/README.md
  • examples/hello-scheduled-task/main.go
  • examples/hello-scheduled-task/manifest.json
  • go.mod
  • pkg/pluginproto/prairie/plugin/v1/metadata_provider_test.go
  • pkg/pluginproto/prairie/plugin/v1/watch_sync_provider_test.go
  • pkg/pluginsdk/capability/capability.go
  • pkg/pluginsdk/config/config.go
  • pkg/pluginsdk/config/config_test.go
  • pkg/pluginsdk/convert/convert.go
  • pkg/pluginsdk/convert/convert_test.go
  • pkg/pluginsdk/convert/watch_sync_provider_test.go
  • pkg/pluginsdk/httpclient/httpclient.go
  • pkg/pluginsdk/manifest/admin_form_rich_test.go
  • pkg/pluginsdk/manifest/checksum.go
  • pkg/pluginsdk/manifest/checksum_test.go
  • pkg/pluginsdk/manifest/manifest.go
  • pkg/pluginsdk/manifest/manifest_oauth_fields_test.go
  • pkg/pluginsdk/manifest/manifest_test.go
  • pkg/pluginsdk/manifest/marker_provider_test.go
  • pkg/pluginsdk/manifest/presentation_test.go
  • pkg/pluginsdk/manifest/scan_source_test.go
  • pkg/pluginsdk/manifest/watch_sync_provider_test.go
  • pkg/pluginsdk/runtime/image_resolver_test.go
  • pkg/pluginsdk/runtime/marker_provider_test.go
  • pkg/pluginsdk/runtime/runtime.go
  • pkg/pluginsdk/runtime/runtime_test.go
  • pkg/pluginsdk/runtime/scan_source_test.go
  • pkg/pluginsdk/runtime/serve_manifest.go
  • pkg/pluginsdk/runtime/serve_manifest_test.go
  • pkg/pluginsdk/runtime/watch_sync_provider_test.go
  • pkg/pluginsdk/runtimedefault/runtime.go
  • pkg/pluginsdk/runtimehost/client.go
  • pkg/pluginsdk/runtimehost/client_test.go
  • pkg/pluginsdk/runtimehost/discovery.go
  • pkg/pluginsdk/runtimehost/events.go
  • pkg/pluginsdk/runtimehost/host_info.go
  • proto/prairie/plugin/v1/auth_provider.proto
  • proto/prairie/plugin/v1/common.proto
  • proto/prairie/plugin/v1/event_consumer.proto
  • proto/prairie/plugin/v1/http_routes.proto
  • proto/prairie/plugin/v1/marker_provider.proto
  • proto/prairie/plugin/v1/media_analyzer.proto
  • proto/prairie/plugin/v1/metadata_provider.proto
  • proto/prairie/plugin/v1/request_router.proto
  • proto/prairie/plugin/v1/runtime_host.proto
  • proto/prairie/plugin/v1/scan_source.proto
  • proto/prairie/plugin/v1/scheduled_task.proto
  • proto/prairie/plugin/v1/watch_sync_provider.proto
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch cursor/rebrand-silo-to-prairie-b9a3

Comment @coderabbitai help to get the list of available commands.

@cursor
cursor Bot deleted the cursor/rebrand-silo-to-prairie-b9a3 branch July 26, 2026 22:50
@cursor
cursor Bot restored the cursor/rebrand-silo-to-prairie-b9a3 branch July 26, 2026 22:50
@cursor
cursor Bot marked this pull request as ready for review July 26, 2026 22:52
@cursor
cursor Bot merged commit 1dfb0ae into main Jul 26, 2026
2 checks passed
@cursor
cursor Bot deleted the cursor/rebrand-silo-to-prairie-b9a3 branch July 26, 2026 22:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants