flowviant 0.28.2 → 0.28.3
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/bin/lib/claude.mjs +3 -7
- package/package.json +1 -1
package/bin/lib/claude.mjs
CHANGED
|
@@ -320,9 +320,9 @@ const shortPath = (p, cwd) => {
|
|
|
320
320
|
};
|
|
321
321
|
|
|
322
322
|
// Turn one Claude tool_use into a compact activity {kind, label}, or null for
|
|
323
|
-
// tools not worth surfacing. `kind:'read'` is what the file counter counts;
|
|
324
|
-
//
|
|
325
|
-
// exactly which files Claude is touching (daemon console + app cover).
|
|
323
|
+
// tools not worth surfacing. `kind:'read'` is what the file counter counts; a
|
|
324
|
+
// Write/Edit of a vault page is the "writing" signal. Used by wiki turns to
|
|
325
|
+
// stream exactly which files Claude is touching (daemon console + app cover).
|
|
326
326
|
export function humanizeToolUse(name, input = {}, cwd = '') {
|
|
327
327
|
switch (name) {
|
|
328
328
|
case 'Read':
|
|
@@ -348,10 +348,6 @@ export function humanizeToolUse(name, input = {}, cwd = '') {
|
|
|
348
348
|
case 'Bash':
|
|
349
349
|
return { kind: 'bash', label: `$ ${String(input.command ?? '').replace(/\s+/g, ' ').slice(0, 60)}` };
|
|
350
350
|
default:
|
|
351
|
-
if (typeof name !== 'string') return null;
|
|
352
|
-
if (name.includes('emit_wiki_node')) return { kind: 'write', label: `+ node ${input.id ?? ''}` };
|
|
353
|
-
if (name.includes('finish_wiki_generation')) return { kind: 'write', label: 'finalize wiki' };
|
|
354
|
-
if (name.includes('list_wiki_nodes')) return { kind: 'mcp', label: 'list wiki nodes' };
|
|
355
351
|
return null; // other tools: silent
|
|
356
352
|
}
|
|
357
353
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flowviant",
|
|
3
|
-
"version": "0.28.
|
|
3
|
+
"version": "0.28.3",
|
|
4
4
|
"description": "Run your own Claude Code as headless build agents for Flowviant — on your own credentials. Claims dispatched work, opens PRs, captures review evidence, and routes questions back to you.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|