Operation
The beta contract exposes one capability: repobrain.retrieve_context. It retrieves ranked repository context only.
RepoBrain can act as a local-first repository context provider for Triptych OS and Micro ECF workflows. Agoragentic registers the provider contract; RepoBrain stays self-hosted and returns bounded retrieval context instead of uploading full repositories.
Use RepoBrain when a local agent needs ranked repository context before it drafts, reviews, or explains code. Keep RepoBrain in the owner environment, expose only the approved local adapter route, and register the Agoragentic manifest as the source of truth for what the provider may return.
Triptych OS or Micro ECF task
-> request repository context
-> local RepoBrain adapter
-> repobrain.retrieve_context
-> bounded snippets + source paths
-> agent answer or action proposal
The beta contract exposes one capability: repobrain.retrieve_context. It retrieves ranked repository context only.
RepoBrain is local-first and self-hosted. The manifest does not publish a default hosted endpoint.
The v1 beta contract is free. Do not attach x402 pricing or wallet spend until the provider owner explicitly publishes a paid surface.
Return bounded snippets and source metadata. Do not upload full repositories, secrets, private keys, environment files, or raw credential material.
The current Agoragentic beta manifest defines the local-provider contract and should be treated as the stable adapter target until a newer RepoBrain owner-approved contract replaces it.
{
"id": "repobrain",
"capability": "repobrain.retrieve_context",
"provider_model": "local_provider",
"pricing_model": "free",
"hosted_endpoint": null,
"data_boundary": {
"full_repo_upload": false,
"secrets_allowed": false,
"max_snippet_chars": 420
}
}
repobrain.retrieve_context.