@pellux/goodvibes-agent 1.0.35 → 1.0.36

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.
Files changed (88) hide show
  1. package/CHANGELOG.md +15 -9
  2. package/README.md +8 -7
  3. package/dist/package/{ast-grep-napi.linux-x64-gnu-swtppvy9.node → ast-grep-napi.linux-x64-gnu-mkk8xwww.node} +0 -0
  4. package/dist/package/{ast-grep-napi.linux-x64-musl-ttfcdtap.node → ast-grep-napi.linux-x64-musl-ryqtgdv6.node} +0 -0
  5. package/dist/package/main.js +51504 -49337
  6. package/docs/README.md +6 -5
  7. package/docs/channels-remote-and-api.md +3 -3
  8. package/docs/connected-host.md +3 -3
  9. package/docs/getting-started.md +12 -7
  10. package/docs/knowledge-artifacts-and-multimodal.md +9 -4
  11. package/docs/project-planning.md +3 -3
  12. package/docs/providers-and-routing.md +2 -2
  13. package/docs/release-and-publishing.md +8 -8
  14. package/docs/tools-and-commands.md +31 -18
  15. package/docs/voice-and-live-tts.md +1 -1
  16. package/package.json +1 -1
  17. package/release/live-verification/live-verification.json +3 -3
  18. package/release/live-verification/live-verification.md +2 -4
  19. package/release/release-notes.md +4 -4
  20. package/release/release-readiness.json +46 -46
  21. package/src/agent/harness-control.ts +35 -9
  22. package/src/agent/reminder-schedule-format.ts +2 -5
  23. package/src/agent/reminder-schedule.ts +4 -11
  24. package/src/agent/routine-schedule-format.ts +3 -6
  25. package/src/agent/routine-schedule-promotion.ts +5 -14
  26. package/src/agent/routine-schedule-receipts.ts +4 -9
  27. package/src/cli/agent-knowledge-command.ts +6 -11
  28. package/src/cli/agent-knowledge-format.ts +4 -9
  29. package/src/cli/agent-knowledge-runtime.ts +7 -14
  30. package/src/cli/external-runtime.ts +3 -46
  31. package/src/cli/help.ts +2 -2
  32. package/src/cli/status.ts +6 -7
  33. package/src/input/agent-workspace-categories.ts +23 -23
  34. package/src/input/agent-workspace-channels.ts +3 -3
  35. package/src/input/agent-workspace-operations-command-editors.ts +1 -1
  36. package/src/input/command-registry.ts +1 -1
  37. package/src/input/commands/compat-runtime.ts +1 -1
  38. package/src/input/commands/planning-runtime.ts +1 -1
  39. package/src/input/commands/runtime-services.ts +1 -1
  40. package/src/input/mcp-workspace.ts +1 -1
  41. package/src/input/submission-router.ts +1 -1
  42. package/src/panels/builtin/shared.ts +1 -1
  43. package/src/panels/project-planning-panel.ts +4 -4
  44. package/src/panels/qr-panel.ts +2 -2
  45. package/src/renderer/conversation-overlays.ts +1 -0
  46. package/src/runtime/bootstrap-command-parts.ts +1 -1
  47. package/src/runtime/bootstrap-core.ts +1 -1
  48. package/src/runtime/bootstrap-hook-bridge.ts +1 -1
  49. package/src/runtime/bootstrap-shell.ts +1 -1
  50. package/src/runtime/bootstrap.ts +5 -4
  51. package/src/runtime/context.ts +2 -2
  52. package/src/runtime/index.ts +88 -5
  53. package/src/runtime/store/state.ts +1 -1
  54. package/src/tools/agent-channel-send-tool.ts +1 -1
  55. package/src/tools/agent-harness-channel-metadata.ts +36 -25
  56. package/src/tools/agent-harness-cli-metadata.ts +19 -1
  57. package/src/tools/agent-harness-command-catalog.ts +15 -4
  58. package/src/tools/agent-harness-connected-host-status.ts +7 -6
  59. package/src/tools/agent-harness-delegation-posture.ts +15 -4
  60. package/src/tools/agent-harness-keybinding-metadata.ts +67 -16
  61. package/src/tools/agent-harness-mcp-metadata.ts +11 -3
  62. package/src/tools/agent-harness-media-posture.ts +25 -14
  63. package/src/tools/agent-harness-metadata.ts +97 -6
  64. package/src/tools/agent-harness-mode-catalog.ts +81 -28
  65. package/src/tools/agent-harness-model-routing.ts +18 -3
  66. package/src/tools/agent-harness-model-tool-catalog.ts +85 -7
  67. package/src/tools/agent-harness-notification-metadata.ts +30 -19
  68. package/src/tools/agent-harness-operator-methods.ts +13 -8
  69. package/src/tools/agent-harness-pairing-posture.ts +17 -5
  70. package/src/tools/agent-harness-panel-metadata.ts +10 -4
  71. package/src/tools/agent-harness-provider-account-metadata.ts +46 -35
  72. package/src/tools/agent-harness-release-evidence.ts +31 -3
  73. package/src/tools/agent-harness-release-readiness.ts +30 -0
  74. package/src/tools/agent-harness-security-posture.ts +18 -4
  75. package/src/tools/agent-harness-service-posture.ts +8 -1
  76. package/src/tools/agent-harness-session-metadata.ts +24 -8
  77. package/src/tools/agent-harness-setup-posture.ts +32 -21
  78. package/src/tools/agent-harness-text.ts +6 -0
  79. package/src/tools/agent-harness-tool.ts +26 -34
  80. package/src/tools/agent-harness-ui-surface-metadata.ts +84 -84
  81. package/src/tools/agent-harness-workspace-actions.ts +64 -3
  82. package/src/tools/agent-knowledge-ingest-tool.ts +1 -1
  83. package/src/tools/agent-knowledge-tool.ts +1 -1
  84. package/src/tools/agent-media-generate-tool.ts +2 -2
  85. package/src/tools/agent-notify-tool.ts +1 -1
  86. package/src/tools/agent-reminder-schedule-tool.ts +1 -1
  87. package/src/tools/tool-definition-compaction.ts +35 -8
  88. package/src/version.ts +2 -8
@@ -175,7 +175,7 @@ export function createAgentReminderScheduleTool(
175
175
  },
176
176
  confirm: {
177
177
  type: 'boolean',
178
- description: 'Required true only when the user explicitly asked to create this reminder.',
178
+ description: 'Required true only when user requested reminder.',
179
179
  },
180
180
  explicitUserRequest: {
181
181
  type: 'string',
@@ -1,18 +1,43 @@
1
1
  import type { ToolRegistry } from '@pellux/goodvibes-sdk/platform/tools';
2
2
  import type { ToolDefinition } from '@pellux/goodvibes-sdk/platform/types';
3
3
 
4
- const DEFAULT_TOOL_DESCRIPTION_LIMIT = 120;
4
+ const DEFAULT_TOOL_DESCRIPTION_LIMIT = 56;
5
5
 
6
6
  const TOOL_DESCRIPTION_OVERRIDES: Readonly<Record<string, string>> = {
7
- agent_harness: 'Harness catalog/control. Start with mode:"modes"; inspect settings, commands, UI, status, tools, and confirmed effects.',
7
+ agent: 'Inspect explicit subagent tasks.',
8
+ analyze: 'Analyze code impact, symbols, and project risk.',
9
+ channel: 'Inspect or operate configured channel surfaces.',
10
+ control: 'Inspect commands, panels, and runtime posture.',
11
+ edit: 'Edit files with exact, fuzzy, or regex replacements.',
12
+ exec: 'Run shell commands with timeout and retry.',
13
+ fetch: 'Fetch HTTP URLs with auth and sanitization.',
14
+ find: 'Search files, content, symbols, and project structure.',
15
+ goodvibes_context: 'Inspect current GoodVibes runtime and host harness.',
16
+ goodvibes_settings: 'Inspect/update GoodVibes settings on explicit request.',
17
+ inspect: 'Inspect project structure, APIs, routes, and deps.',
18
+ mcp: 'Inspect MCP servers, tools, schemas, and trust state.',
19
+ packet: 'Manage implementation and execution packets.',
20
+ query: 'Track operator queries, answers, and closure.',
21
+ read: 'Read files, outlines, symbols, and ranges.',
22
+ registry: 'Discover local skills, agents, tools, and templates.',
23
+ remote: 'Manage remote runner pools and artifacts.',
24
+ repl: 'Evaluate bounded JS, TS, Python, SQL, or GraphQL.',
25
+ state: 'Read/update session state and diagnostics.',
26
+ task: 'Manage cross-session tasks and handoffs.',
27
+ team: 'Manage team definitions, roles, and lanes.',
28
+ web_search: 'Search the web through the configured provider.',
29
+ workflow: 'Inspect/control configured workflow automation.',
30
+ worklist: 'Manage durable worklists and checklist items.',
31
+ write: 'Write files with batch, mkdir, backup, and validation.',
32
+ agent_harness: 'Harness catalog: modes, settings, commands, UI, tools.',
8
33
  agent_knowledge: 'Read isolated Agent Knowledge.',
9
- agent_knowledge_ingest: 'Ingest one confirmed source into isolated Agent Knowledge.',
10
- agent_local_registry: 'Inspect or update Agent-local memory, notes, personas, skills, bundles, and routines.',
11
- agent_work_plan: 'Inspect or update the visible Agent-local work plan.',
34
+ agent_knowledge_ingest: 'Ingest confirmed source into Agent Knowledge.',
35
+ agent_local_registry: 'Inspect/update Agent memory, notes, skills, routines.',
36
+ agent_work_plan: 'Inspect/update the visible Agent-local work plan.',
12
37
  agent_operator_briefing: 'Read connected Agent operator state.',
13
38
  agent_operator_action: 'Run one confirmed allowlisted operator action.',
14
39
  agent_reminder_schedule: 'Schedule one confirmed Agent reminder.',
15
- agent_channel_send: 'Send one confirmed message through one configured Agent target.',
40
+ agent_channel_send: 'Send confirmed message to configured Agent target.',
16
41
  agent_notify: 'Send one confirmed plain-text notification.',
17
42
  agent_media_generate: 'Generate one confirmed image or video artifact.',
18
43
  };
@@ -37,8 +62,10 @@ function stripSchemaDescriptions(value: unknown): unknown {
37
62
  }
38
63
 
39
64
  function compactToolDefinition(definition: ToolDefinition): void {
40
- definition.description = TOOL_DESCRIPTION_OVERRIDES[definition.name]
41
- ?? compactText(definition.description, DEFAULT_TOOL_DESCRIPTION_LIMIT);
65
+ definition.description = compactText(
66
+ TOOL_DESCRIPTION_OVERRIDES[definition.name] ?? definition.description,
67
+ DEFAULT_TOOL_DESCRIPTION_LIMIT,
68
+ );
42
69
  definition.parameters = stripSchemaDescriptions(definition.parameters) as Record<string, unknown>;
43
70
  }
44
71
 
package/src/version.ts CHANGED
@@ -6,20 +6,14 @@ import { join } from 'node:path';
6
6
  // The prebuild script updates the fallback value before compilation.
7
7
  // Uses import.meta.dir (Bun) to locate package.json relative to this file,
8
8
  // which is correct regardless of the process working directory.
9
- let _version = '1.0.35';
10
- let _sdkVersion = '0.33.36';
9
+ let _version = '1.0.36';
11
10
  try {
12
11
  const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8')) as {
13
12
  readonly version?: unknown;
14
- readonly dependencies?: Record<string, unknown>;
15
- readonly devDependencies?: Record<string, unknown>;
16
13
  };
17
14
  _version = typeof pkg.version === 'string' ? pkg.version : _version;
18
- const packageSdkVersion = pkg.dependencies?.['@pellux/goodvibes-sdk'] ?? pkg.devDependencies?.['@pellux/goodvibes-sdk'];
19
- _sdkVersion = typeof packageSdkVersion === 'string' ? packageSdkVersion : _sdkVersion;
20
15
  } catch {
21
- // Compiled binary or missing package.json use fallback
16
+ // Compiled binary or missing package.json - use fallback.
22
17
  }
23
18
 
24
19
  export const VERSION = _version;
25
- export const SDK_VERSION = _sdkVersion;