xtrm-tools 0.5.37 → 0.5.39
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/.claude-plugin/plugin.json +1 -1
- package/cli/package.json +1 -1
- package/hooks/beads-memory-gate.mjs +3 -3
- package/hooks/beads-stop-gate.mjs +4 -4
- package/hooks/tsconfig-cache.json +2 -12
- package/package.json +1 -1
- package/plugins/xtrm-tools/.claude-plugin/plugin.json +1 -1
- package/plugins/xtrm-tools/hooks/beads-memory-gate.mjs +3 -3
- package/plugins/xtrm-tools/hooks/beads-stop-gate.mjs +4 -4
- package/plugins/xtrm-tools/hooks/tsconfig-cache.json +2 -12
package/cli/package.json
CHANGED
|
@@ -86,9 +86,9 @@ logEvent({
|
|
|
86
86
|
sessionId,
|
|
87
87
|
layer: 'gate',
|
|
88
88
|
kind: 'gate.memory.triggered',
|
|
89
|
-
outcome: '
|
|
89
|
+
outcome: 'nudge',
|
|
90
90
|
issueId: closedIssueId,
|
|
91
91
|
message: memoryMessage,
|
|
92
92
|
});
|
|
93
|
-
process.
|
|
94
|
-
process.exit(
|
|
93
|
+
process.stdout.write(JSON.stringify({ additionalContext: memoryMessage }) + '\n');
|
|
94
|
+
process.exit(0);
|
|
@@ -31,14 +31,14 @@ withSafeBdContext(() => {
|
|
|
31
31
|
runtime: 'claude',
|
|
32
32
|
sessionId: ctx.sessionId,
|
|
33
33
|
layer: 'gate',
|
|
34
|
-
kind: 'gate.stop.
|
|
35
|
-
outcome: '
|
|
34
|
+
kind: 'gate.stop.nudge',
|
|
35
|
+
outcome: 'nudge',
|
|
36
36
|
issueId: decision.claimed ?? null,
|
|
37
37
|
message,
|
|
38
38
|
extra: { reason_code: decision.reason },
|
|
39
39
|
});
|
|
40
|
-
process.
|
|
41
|
-
process.exit(
|
|
40
|
+
process.stdout.write(JSON.stringify({ additionalContext: message }) + '\n');
|
|
41
|
+
process.exit(0);
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
logEvent({
|
|
@@ -1,14 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"hashes": {
|
|
3
|
-
|
|
4
|
-
},
|
|
5
|
-
"mappings": {
|
|
6
|
-
"src/**/*": {
|
|
7
|
-
"configPath": "/home/dawid/projects/specialists/tsconfig.json",
|
|
8
|
-
"excludes": [
|
|
9
|
-
"node_modules",
|
|
10
|
-
"dist"
|
|
11
|
-
]
|
|
12
|
-
}
|
|
13
|
-
}
|
|
2
|
+
"hashes": {},
|
|
3
|
+
"mappings": {}
|
|
14
4
|
}
|
package/package.json
CHANGED
|
@@ -86,9 +86,9 @@ logEvent({
|
|
|
86
86
|
sessionId,
|
|
87
87
|
layer: 'gate',
|
|
88
88
|
kind: 'gate.memory.triggered',
|
|
89
|
-
outcome: '
|
|
89
|
+
outcome: 'nudge',
|
|
90
90
|
issueId: closedIssueId,
|
|
91
91
|
message: memoryMessage,
|
|
92
92
|
});
|
|
93
|
-
process.
|
|
94
|
-
process.exit(
|
|
93
|
+
process.stdout.write(JSON.stringify({ additionalContext: memoryMessage }) + '\n');
|
|
94
|
+
process.exit(0);
|
|
@@ -31,14 +31,14 @@ withSafeBdContext(() => {
|
|
|
31
31
|
runtime: 'claude',
|
|
32
32
|
sessionId: ctx.sessionId,
|
|
33
33
|
layer: 'gate',
|
|
34
|
-
kind: 'gate.stop.
|
|
35
|
-
outcome: '
|
|
34
|
+
kind: 'gate.stop.nudge',
|
|
35
|
+
outcome: 'nudge',
|
|
36
36
|
issueId: decision.claimed ?? null,
|
|
37
37
|
message,
|
|
38
38
|
extra: { reason_code: decision.reason },
|
|
39
39
|
});
|
|
40
|
-
process.
|
|
41
|
-
process.exit(
|
|
40
|
+
process.stdout.write(JSON.stringify({ additionalContext: message }) + '\n');
|
|
41
|
+
process.exit(0);
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
logEvent({
|
|
@@ -1,14 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"hashes": {
|
|
3
|
-
|
|
4
|
-
},
|
|
5
|
-
"mappings": {
|
|
6
|
-
"src/**/*": {
|
|
7
|
-
"configPath": "/home/dawid/projects/specialists/tsconfig.json",
|
|
8
|
-
"excludes": [
|
|
9
|
-
"node_modules",
|
|
10
|
-
"dist"
|
|
11
|
-
]
|
|
12
|
-
}
|
|
13
|
-
}
|
|
2
|
+
"hashes": {},
|
|
3
|
+
"mappings": {}
|
|
14
4
|
}
|