@karmaniverous/jeeves-watcher-openclaw 0.14.6 → 0.14.8
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/content/agents-section.md +1 -1
- package/content/skill.md +1 -1
- package/content/tools-platform.md +34 -4
- package/dist/cli.js +9279 -297
- package/dist/index.js +9278 -388
- package/openclaw.plugin.json +1 -1
- package/package.json +2 -2
|
@@ -37,7 +37,7 @@ Periodic checks (email, calendar, mentions) belong in jeeves-runner scripts, not
|
|
|
37
37
|
## Platform Surface Conventions
|
|
38
38
|
|
|
39
39
|
**Slack:**
|
|
40
|
-
-
|
|
40
|
+
- Never initiate a threaded reply. Only reply within a thread started by a human.
|
|
41
41
|
- Use `<#C…>` for channel references
|
|
42
42
|
|
|
43
43
|
**Table formatting:** On channels that do not support Markdown tables (Slack, Discord, WhatsApp, IRC), use code-block tables with aligned columns. Markdown tables are only safe in contexts that render them (GitHub, jeeves-server, files).
|
package/content/skill.md
CHANGED
|
@@ -62,7 +62,7 @@ Managed blocks are stationary after initial insertion. Cleanup detection uses Ja
|
|
|
62
62
|
|
|
63
63
|
`jeeves.config.json` at workspace root provides shared defaults:
|
|
64
64
|
- Precedence: CLI flags → env vars → file → defaults
|
|
65
|
-
- Namespaced: `core.*` (workspace, configRoot, gatewayUrl) and `memory.*` (budget, warningThreshold
|
|
65
|
+
- Namespaced: `core.*` (workspace, configRoot, gatewayUrl, devRepos) and `memory.*` (budget, warningThreshold)
|
|
66
66
|
- Inspect with `jeeves config [jsonpath]`
|
|
67
67
|
|
|
68
68
|
## HEARTBEAT Protocol
|
|
@@ -44,8 +44,8 @@ Never manually edit `~/.openclaw/extensions/`. Always use the CLI commands above
|
|
|
44
44
|
|
|
45
45
|
### Reference Templates
|
|
46
46
|
|
|
47
|
-
|
|
48
|
-
Reference templates are available at `
|
|
47
|
+
{{#if templatePath}}
|
|
48
|
+
Reference templates are available at `{{templatePath}}`:
|
|
49
49
|
|
|
50
50
|
| Template | Purpose |
|
|
51
51
|
|----------|---------|
|
|
@@ -53,6 +53,36 @@ Reference templates are available at `__TEMPLATE_PATH__`:
|
|
|
53
53
|
| `spec-to-code-guide.md` | The spec-to-code development practice — 7-stage iterative process, convergence loops, release gates |
|
|
54
54
|
|
|
55
55
|
Read these templates when creating new specs, onboarding to new projects, or when asked about the development process.
|
|
56
|
-
|
|
56
|
+
{{else}}
|
|
57
57
|
> Reference templates not yet installed. Run `npx @karmaniverous/jeeves install` to seed templates.
|
|
58
|
-
|
|
58
|
+
{{/if}}
|
|
59
|
+
|
|
60
|
+
### Post-Upgrade Maintenance
|
|
61
|
+
|
|
62
|
+
After updating OpenClaw (`npm install -g openclaw@latest` or equivalent), reinstall all Jeeves component plugins to repair install state:
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
npx @karmaniverous/jeeves install
|
|
66
|
+
npx @karmaniverous/jeeves-runner-openclaw install
|
|
67
|
+
npx @karmaniverous/jeeves-watcher-openclaw install
|
|
68
|
+
npx @karmaniverous/jeeves-server-openclaw install
|
|
69
|
+
npx @karmaniverous/jeeves-meta-openclaw install
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
Then restart the gateway. Plugin installers copy dist files and patch config; reinstalling after an OpenClaw update ensures the extensions directory stays consistent.
|
|
73
|
+
|
|
74
|
+
### Source Code Preference
|
|
75
|
+
|
|
76
|
+
{{#if devRepos}}
|
|
77
|
+
When investigating, debugging, or analyzing Jeeves components, always read TypeScript source from dev repos — never compiled `dist/` from the global npm install. Dev repos:
|
|
78
|
+
|
|
79
|
+
| Component | Dev Repo |
|
|
80
|
+
|-----------|----------|
|
|
81
|
+
{{#each devRepos}}
|
|
82
|
+
| {{@key}} | `{{this}}` |
|
|
83
|
+
{{/each}}
|
|
84
|
+
|
|
85
|
+
Built code is minified, harder to reason about, and wastes context. Always `git pull` before analysis.
|
|
86
|
+
{{else}}
|
|
87
|
+
> Dev repo paths not configured. Add `core.devRepos` to `jeeves.config.json` to enable source code preference guidance.
|
|
88
|
+
{{/if}}
|