reflectt-node 0.1.0 → 0.1.2

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.
@@ -0,0 +1,38 @@
1
+ # Incident template
2
+
3
+ ## Summary
4
+ <what happened in one sentence>
5
+
6
+ ## Impact
7
+ - Who/what was affected:
8
+ - Severity:
9
+ - Duration:
10
+
11
+ ## Timeline (PT)
12
+ - <time> —
13
+ - <time> —
14
+
15
+ ## Detection
16
+ - How we found out:
17
+ - Signals/alerts involved:
18
+
19
+ ## Root cause
20
+ - Primary cause:
21
+ - Contributing factors:
22
+
23
+ ## Resolution
24
+ - What fixed it:
25
+ - What we changed:
26
+
27
+ ## Prevention
28
+ - What we’ll do to prevent recurrence:
29
+
30
+ ## Action items
31
+ | Item | Owner | ETA | Status |
32
+ |---|---|---:|---|
33
+ | | | | |
34
+
35
+ ## Links
36
+ - PRs:
37
+ - Logs:
38
+ - Dashboard:
@@ -0,0 +1,35 @@
1
+ # Review packet
2
+
3
+ ## What is this
4
+ A reviewer-friendly packet that makes it possible to approve without context-switching.
5
+
6
+ ## Metadata
7
+ - Task: <task-id>
8
+ - Owner: <@>
9
+ - Reviewer: <@>
10
+ - PR: <https://github.com/...>
11
+ - Commit: <sha>
12
+ - Changed files:
13
+ -
14
+
15
+ ## Summary (1–3 bullets)
16
+ -
17
+ -
18
+
19
+ ## How to verify
20
+ - Checks run:
21
+ - [ ] <e.g. npm test>
22
+ - [ ] <e.g. npm run build>
23
+ - Manual QA steps:
24
+ 1.
25
+ 2.
26
+
27
+ ## Screenshots / proof
28
+ -
29
+
30
+ ## Caveats / known risks
31
+ - none
32
+
33
+ ## Rollout / follow-up
34
+ - Rollout notes:
35
+ - Follow-ups (if any):
@@ -0,0 +1,40 @@
1
+ # Task template
2
+
3
+ ## Title
4
+ <short, specific, verifiable>
5
+
6
+ ## Context
7
+ - Why this matters:
8
+ - Current behavior:
9
+ - Desired behavior:
10
+
11
+ ## Scope
12
+ - In scope:
13
+ - Out of scope:
14
+
15
+ ## Done criteria (verifiable)
16
+ - [ ]
17
+ - [ ]
18
+ - [ ]
19
+
20
+ ## Plan (smallest shippable slice first)
21
+ 1.
22
+ 2.
23
+ 3.
24
+
25
+ ## Artifacts
26
+ - PR: <link>
27
+ - Process artifact(s): <process/...>
28
+ - Screenshots/logs: <link or path>
29
+
30
+ ## Review ask
31
+ - Review type: blocking-only | full
32
+ - What to focus on:
33
+
34
+ ## Risks / caveats
35
+ -
36
+
37
+ ## Owners + ETA
38
+ - Owner: <@>
39
+ - Reviewer: <@>
40
+ - ETA: <e.g. ~2h>
@@ -1,96 +0,0 @@
1
- # reflectt-channel
2
-
3
- OpenClaw channel plugin that connects agents to reflectt-node via SSE (Server-Sent Events).
4
-
5
- ## What it does
6
-
7
- 1. Connects to reflectt-node's `/events` SSE endpoint
8
- 2. Listens for chat messages with @mentions
9
- 3. Routes mentioned agents through OpenClaw's inbound pipeline
10
- 4. Posts agent responses back to reflectt-node via `POST /chat/messages`
11
-
12
- ## Install
13
-
14
- From the reflectt-node repo root:
15
-
16
- ```bash
17
- openclaw plugins install ./plugins/reflectt-channel
18
- ```
19
-
20
- Or from anywhere:
21
-
22
- ```bash
23
- openclaw plugins install /path/to/reflectt-node/plugins/reflectt-channel
24
- ```
25
-
26
- ## Configure
27
-
28
- Add to `~/.openclaw/openclaw.json`. Two config paths are supported:
29
-
30
- **Option 1 — `channels.reflectt` (recommended):**
31
-
32
- ```json
33
- {
34
- "channels": {
35
- "reflectt": {
36
- "enabled": true,
37
- "url": "http://127.0.0.1:4445"
38
- }
39
- }
40
- }
41
- ```
42
-
43
- **Option 2 — `plugins.entries` (general plugin convention):**
44
-
45
- ```json
46
- {
47
- "plugins": {
48
- "entries": {
49
- "reflectt-channel": {
50
- "config": {
51
- "url": "http://127.0.0.1:4445"
52
- }
53
- }
54
- }
55
- }
56
- }
57
- ```
58
-
59
- > **Precedence:** `channels.reflectt` takes priority over `plugins.entries`. If both are set, `channels.reflectt.url` wins.
60
-
61
- > **Default:** If neither is configured, the plugin falls back to `http://127.0.0.1:4445` and logs a warning with the exact config keys to set.
62
-
63
- Or use the CLI shorthand:
64
-
65
- ```bash
66
- openclaw config set channels.reflectt.enabled true
67
- openclaw config set channels.reflectt.url "http://127.0.0.1:4445"
68
- ```
69
-
70
- Then restart the gateway:
71
-
72
- ```bash
73
- openclaw gateway restart
74
- ```
75
-
76
- ## Verify
77
-
78
- ```bash
79
- openclaw plugins list # Should show reflectt-channel
80
- openclaw plugins info reflectt-channel
81
- ```
82
-
83
- ## Message flow
84
-
85
- ```
86
- reflectt-node (SSE /events)
87
- → reflectt-channel plugin detects @mention
88
- → OpenClaw routes to agent session
89
- → Agent responds
90
- → Plugin POSTs to reflectt-node /chat/messages
91
- ```
92
-
93
- ## Requirements
94
-
95
- - OpenClaw gateway running
96
- - reflectt-node running at the configured URL