opencode-raven 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -2
- package/mcp-guidance.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -75,11 +75,11 @@ Created automatically on first toggle. Edit manually or use `/raven` commands:
|
|
|
75
75
|
| Field | Default | Description |
|
|
76
76
|
|-------|---------|-------------|
|
|
77
77
|
| `enabled` | `true` | Whether search tool interception is active |
|
|
78
|
-
| `model` | *(
|
|
78
|
+
| `model` | *(built-in default)* | Override Raven's model without editing package files |
|
|
79
79
|
|
|
80
80
|
### MCP servers
|
|
81
81
|
|
|
82
|
-
All three MCPs work without API keys.
|
|
82
|
+
All three MCPs work without API keys. Add keys for higher rate limits:
|
|
83
83
|
|
|
84
84
|
| MCP | URL | API key |
|
|
85
85
|
|-----|-----|---------|
|
|
@@ -149,6 +149,8 @@ To disable an MCP entirely:
|
|
|
149
149
|
|
|
150
150
|
## Agent capabilities
|
|
151
151
|
|
|
152
|
+
Raven itself has access to these tools (blocked for other agents by the plugin):
|
|
153
|
+
|
|
152
154
|
| Tool / MCP | Purpose |
|
|
153
155
|
|------------|---------|
|
|
154
156
|
| `read`, `glob`, `grep`, `list` | Local codebase inspection |
|
package/mcp-guidance.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
## MCP usage guidance — delegate to Raven (subagent_type="raven") for these:
|
|
2
2
|
|
|
3
|
-
- Context7
|
|
4
|
-
- Exa AI
|
|
5
|
-
- Grep.app
|
|
3
|
+
- **Context7** — library/framework/SDK/API docs. Prefer over memory when docs may be version-specific or recently changed.
|
|
4
|
+
- **Exa AI** — live web search, news, company/product research, webpages, tool comparisons. Use when answers depend on recent updates, pricing, releases, or online sources.
|
|
5
|
+
- **Grep.app** — public GitHub code examples, real-world usage patterns, config examples. Use when docs are unclear or implementation examples would help.
|
|
6
6
|
|
|
7
7
|
## Built-in search tools (grep, glob, search-like bash) are blocked and routed to Raven automatically.
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-raven",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Search-first subagent for opencode — intercepts search tools and routes them to a dedicated @raven agent with Context7, Exa AI, and Grep.app MCPs",
|
|
5
5
|
"main": "./index.ts",
|
|
6
6
|
"exports": {
|