osborn 0.9.209 → 0.9.210

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.
@@ -198,6 +198,7 @@ export const NAMED_AGENTS = {
198
198
  'finding patterns, reading multiple files, searching for examples.',
199
199
  'Returns structured findings — does NOT make decisions or edit files.',
200
200
  'Use this for ANY task that needs more than 2 tool calls to gather information.',
201
+ 'GROUNDED: has WebSearch + WebFetch — can search the web and fetch URLs.',
201
202
  ].join(' '),
202
203
  tools: ['Read', 'Glob', 'Grep', 'Bash', 'WebSearch', 'WebFetch', 'Task'],
203
204
  model: 'sonnet',
@@ -245,9 +246,10 @@ export const NAMED_AGENTS = {
245
246
  'tradeoff evaluation, generating implementation plans, understanding hard problems.',
246
247
  'Slow but thorough — only use for genuinely complex problems that need careful thought.',
247
248
  'Does NOT edit files — returns a clear plan for the writer agent to execute.',
249
+ 'GROUNDED: has WebSearch + WebFetch — can verify facts against live sources.',
248
250
  ].join(' '),
249
251
  tools: ['Read', 'Glob', 'Grep', 'WebSearch', 'WebFetch'],
250
- model: 'sonnet',
252
+ model: 'opus',
251
253
  prompt: [
252
254
  'You are Osborn\'s reasoning agent — the "smart model" seat for hard tradeoffs, architecture decisions, and vetting research.',
253
255
  '',
@@ -298,9 +300,10 @@ export const NAMED_AGENTS = {
298
300
  'Handles ALL file operations: code, config, docs, scripts, data files.',
299
301
  'VERIFY-FIRST workflow: checks assumptions before making changes, runs tests after.',
300
302
  'If anything is unclear, asks the main agent for clarification before touching files.',
303
+ 'NOT GROUNDED: no WebSearch/WebFetch — do NOT dispatch tasks that require live web research.',
301
304
  ].join(' '),
302
305
  tools: ['Read', 'Write', 'Edit', 'MultiEdit', 'Bash', 'Glob', 'Grep', 'NotebookRead', 'NotebookEdit'],
303
- model: 'sonnet',
306
+ model: 'opus',
304
307
  prompt: [
305
308
  'You are Osborn\'s writer agent. You execute file changes with a verify-first approach.',
306
309
  '',
@@ -350,6 +353,7 @@ export const NAMED_AGENTS = {
350
353
  'Test-runner agent (Sonnet). Use for: running test suites, executing builds, interpreting',
351
354
  'CI failures, checking compilation errors, verifying that a change did not break anything.',
352
355
  'Returns structured pass/fail results with exact output — does NOT edit files.',
356
+ 'NOT GROUNDED: no WebSearch/WebFetch — file system and bash execution only.',
353
357
  ].join(' '),
354
358
  tools: ['Bash', 'Read', 'Glob', 'Grep', 'Write', 'Edit'],
355
359
  model: 'sonnet',
@@ -443,6 +447,7 @@ export const NAMED_AGENTS = {
443
447
  'ordered sequence of atomic writer-safe steps. Returns a self-contained brief the writer',
444
448
  'can execute without further clarification. Slow but thorough — only use for genuinely',
445
449
  'complex multi-file changes or when the approach is uncertain.',
450
+ 'GROUNDED (search only): has WebSearch — can look things up but cannot fetch arbitrary URLs.',
446
451
  ].join(' '),
447
452
  tools: ['Read', 'Glob', 'Grep', 'WebSearch'],
448
453
  model: 'sonnet',
@@ -496,6 +501,7 @@ export const NAMED_AGENTS = {
496
501
  'writer completes a change, the reviewer reads the diff, checks correctness, spec/requirement',
497
502
  'adherence, obvious bugs, and security issues, then tags each finding BLOCKER/MAJOR/MINOR/NIT',
498
503
  'and returns an ACCEPT or REJECT verdict with specific, actionable feedback. May write documentation files (.md etc.) only.',
504
+ 'NOT GROUNDED: no WebSearch/WebFetch — reviews are based on code and local context only.',
499
505
  ].join(' '),
500
506
  tools: ['Read', 'Glob', 'Grep', 'Bash', 'Write', 'Edit'],
501
507
  model: 'sonnet',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "osborn",
3
- "version": "0.9.209",
3
+ "version": "0.9.210",
4
4
  "description": "Voice AI coding assistant - local agent that connects to Osborn frontend",
5
5
  "type": "module",
6
6
  "bin": {