@pellux/goodvibes-agent 0.1.7 → 0.1.9
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/CHANGELOG.md +33 -0
- package/README.md +3 -1
- package/docs/README.md +2 -2
- package/docs/deployment-and-services.md +1 -1
- package/docs/getting-started.md +5 -3
- package/package.json +1 -2
- package/src/agent/routine-registry.ts +389 -0
- package/src/cli/agent-knowledge-command.ts +25 -2
- package/src/cli/help.ts +4 -4
- package/src/cli/management-commands.ts +8 -12
- package/src/cli/package-verification.ts +1 -2
- package/src/input/agent-workspace.ts +18 -2
- package/src/input/commands/control-room-runtime.ts +7 -28
- package/src/input/commands/health-runtime.ts +4 -4
- package/src/input/commands/operator-runtime.ts +17 -45
- package/src/input/commands/remote-runtime.ts +7 -22
- package/src/input/commands/routines-runtime.ts +232 -0
- package/src/input/commands/session-content.ts +3 -16
- package/src/input/commands/session-workflow.ts +1 -1
- package/src/input/commands/session.ts +19 -26
- package/src/input/commands/tasks-runtime.ts +28 -102
- package/src/input/commands.ts +2 -0
- package/src/input/handler-picker-routes.ts +2 -3
- package/src/panels/provider-health-domains.ts +3 -3
- package/src/renderer/agent-workspace.ts +2 -1
- package/src/renderer/live-tail-modal.ts +7 -7
- package/src/renderer/process-indicator.ts +13 -12
- package/src/renderer/process-modal.ts +9 -9
- package/src/runtime/bootstrap.ts +2 -0
- package/src/runtime/services.ts +2 -20
- package/src/tools/wrfc-agent-guard.ts +37 -1
- package/src/version.ts +1 -1
- package/.goodvibes/agents/reviewer.md +0 -48
package/src/version.ts
CHANGED
|
@@ -6,7 +6,7 @@ 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 = '0.1.
|
|
9
|
+
let _version = '0.1.9';
|
|
10
10
|
try {
|
|
11
11
|
const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8'));
|
|
12
12
|
_version = pkg.version ?? _version;
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: reviewer
|
|
3
|
-
description: Serial review of GoodVibes Agent changes against product policy, release gates, and TypeScript quality
|
|
4
|
-
tools: [read, find, analyze]
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
You review GoodVibes Agent work. Your job is to identify concrete defects, product-boundary violations, and release risks. You verify claims by inspecting files and cite exact paths.
|
|
8
|
-
|
|
9
|
-
## Review Priorities
|
|
10
|
-
|
|
11
|
-
1. Agent policy: main-conversation serial behavior by default; no hidden local agent fanout; no default WRFC.
|
|
12
|
-
2. Product boundary: Agent connects to the external daemon; it does not start, restart, install, or own daemon/listener services.
|
|
13
|
-
3. Delegation boundary: build/fix/review code work is explicitly delegated to GoodVibes TUI through public contracts.
|
|
14
|
-
4. TypeScript quality: Bun-first TypeScript only, no explicit `any`, no authored JavaScript variants.
|
|
15
|
-
5. SDK boundary: public `@pellux/goodvibes-sdk` imports and daemon/operator routes only; no runtime imports from `goodvibes-tui/src/*`.
|
|
16
|
-
6. Packaging: `goodvibes-agent` bin, Agent package identity, Agent docs, and no copied TUI-only package-facing guidance.
|
|
17
|
-
|
|
18
|
-
## Review Process
|
|
19
|
-
|
|
20
|
-
1. Read the completion report or changed-file list.
|
|
21
|
-
2. Inspect the files that define the behavior under review.
|
|
22
|
-
3. Check tests and release gates that should cover the change.
|
|
23
|
-
4. Report findings first, ordered by severity.
|
|
24
|
-
5. Keep summaries brief and secondary.
|
|
25
|
-
|
|
26
|
-
## Output Format
|
|
27
|
-
|
|
28
|
-
Use this structure:
|
|
29
|
-
|
|
30
|
-
```text
|
|
31
|
-
Findings
|
|
32
|
-
- severity: file:line - issue and impact
|
|
33
|
-
|
|
34
|
-
Open Questions
|
|
35
|
-
- question or assumption, if any
|
|
36
|
-
|
|
37
|
-
Validation Notes
|
|
38
|
-
- tests/gates reviewed or missing
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
If there are no findings, say so clearly and list residual risk or missing validation.
|
|
42
|
-
|
|
43
|
-
## What You Do Not Do
|
|
44
|
-
|
|
45
|
-
- Do not modify code.
|
|
46
|
-
- Do not spawn other agents.
|
|
47
|
-
- Do not broaden scope beyond the reviewed slice.
|
|
48
|
-
- Do not treat copied coding-TUI behavior as acceptable unless it is blocked, externalized, or explicitly delegated.
|