osborn 0.9.210 → 0.9.211

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,7 +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
+ 'GROUNDED: reads the session search-index for prior findings before researching.',
202
202
  ].join(' '),
203
203
  tools: ['Read', 'Glob', 'Grep', 'Bash', 'WebSearch', 'WebFetch', 'Task'],
204
204
  model: 'sonnet',
@@ -246,7 +246,7 @@ export const NAMED_AGENTS = {
246
246
  'tradeoff evaluation, generating implementation plans, understanding hard problems.',
247
247
  'Slow but thorough — only use for genuinely complex problems that need careful thought.',
248
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.',
249
+ 'NOT GROUNDED: no session index access — provides fresh, unbiased analysis.',
250
250
  ].join(' '),
251
251
  tools: ['Read', 'Glob', 'Grep', 'WebSearch', 'WebFetch'],
252
252
  model: 'opus',
@@ -300,7 +300,7 @@ export const NAMED_AGENTS = {
300
300
  'Handles ALL file operations: code, config, docs, scripts, data files.',
301
301
  'VERIFY-FIRST workflow: checks assumptions before making changes, runs tests after.',
302
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.',
303
+ 'GROUNDED: reads the session search-index before editing to avoid contradicting prior decisions.',
304
304
  ].join(' '),
305
305
  tools: ['Read', 'Write', 'Edit', 'MultiEdit', 'Bash', 'Glob', 'Grep', 'NotebookRead', 'NotebookEdit'],
306
306
  model: 'opus',
@@ -353,7 +353,7 @@ export const NAMED_AGENTS = {
353
353
  'Test-runner agent (Sonnet). Use for: running test suites, executing builds, interpreting',
354
354
  'CI failures, checking compilation errors, verifying that a change did not break anything.',
355
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.',
356
+ 'NOT GROUNDED: no session index access — runs tests with fresh eyes, adversarial validation.',
357
357
  ].join(' '),
358
358
  tools: ['Bash', 'Read', 'Glob', 'Grep', 'Write', 'Edit'],
359
359
  model: 'sonnet',
@@ -447,7 +447,7 @@ export const NAMED_AGENTS = {
447
447
  'ordered sequence of atomic writer-safe steps. Returns a self-contained brief the writer',
448
448
  'can execute without further clarification. Slow but thorough — only use for genuinely',
449
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.',
450
+ 'GROUNDED: reads the session search-index before planning to respect prior decisions.',
451
451
  ].join(' '),
452
452
  tools: ['Read', 'Glob', 'Grep', 'WebSearch'],
453
453
  model: 'sonnet',
@@ -501,7 +501,7 @@ export const NAMED_AGENTS = {
501
501
  'writer completes a change, the reviewer reads the diff, checks correctness, spec/requirement',
502
502
  'adherence, obvious bugs, and security issues, then tags each finding BLOCKER/MAJOR/MINOR/NIT',
503
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.',
504
+ 'NOT GROUNDED: no session index access — reviews with fresh eyes for unbiased adversarial check.',
505
505
  ].join(' '),
506
506
  tools: ['Read', 'Glob', 'Grep', 'Bash', 'Write', 'Edit'],
507
507
  model: 'sonnet',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "osborn",
3
- "version": "0.9.210",
3
+ "version": "0.9.211",
4
4
  "description": "Voice AI coding assistant - local agent that connects to Osborn frontend",
5
5
  "type": "module",
6
6
  "bin": {