@trybeai/plugin
v0.1.7
Published
Make any OData service agent-ready — intelligent tooling for SAP and enterprise OData APIs.
Readme
trybe plugin for Claude Code
Make any OData service agent-ready — intelligent tooling, composed operations, domain knowledge.
Installation
Install via the Claude Code plugin marketplace, then run /trybe:setup to configure your first OData service.
You will be asked for:
- A short service key (e.g.
salesorder) - The OData base URL
- Auth method (API key env var, bearer token env var, or none)
Configuration is saved to ~/.claude/trybe/config.json. Secrets stay in env vars — only the env var name is stored.
Usage
Direct tool use (recommended for exploratory work):
salesorder_list_entity_sets → see what's available
salesorder_use_entity → activate a specific entity's toolsExplicit query (end-to-end, routes automatically across services):
/trybe:query How many open sales orders were created this month?Config format
~/.claude/trybe/config.json:
{
"services": {
"salesorder": {
"label": "SAP Sales Order",
"baseUrl": "https://...",
"apiKeyEnvVar": "SAP_API_KEY"
}
}
}Commands
| Command | What it does |
|---|---|
| /trybe:setup | Configure a service and warm its intelligence cache |
| /trybe:query <question> | Route a question across configured services and return an answer |
