fluxflow-cli 3.0.16 → 3.0.18
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/.puppeteerrc.cjs +13 -0
- package/dist/fluxflow.js +1 -1
- package/flux-flow.cjs +16 -0
- package/package.json +4 -2
package/.puppeteerrc.cjs
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
const { join } = require('path');
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @type {import("puppeteer").Configuration}
|
|
5
|
+
*/
|
|
6
|
+
module.exports = {
|
|
7
|
+
// Pin the precise version of Chrome you need
|
|
8
|
+
chrome: {
|
|
9
|
+
version: '148.0.7778.178',
|
|
10
|
+
},
|
|
11
|
+
// Use the home directory for the browser cache to keep the project folder clean
|
|
12
|
+
cacheDirectory: join(require('os').homedir(), '.cache', 'puppeteer'),
|
|
13
|
+
};
|
package/dist/fluxflow.js
CHANGED
|
@@ -3702,7 +3702,7 @@ var init_TerminalBox = __esm({
|
|
|
3702
3702
|
return resultLines.join("\n");
|
|
3703
3703
|
};
|
|
3704
3704
|
const cleanOutput = processPTY(output).replace(/\n{3,}/g, "\n\n");
|
|
3705
|
-
const rawLines = isPty ? cleanOutput ? cleanOutput.split("\n") : [] : cleanOutput ? wrapText(cleanOutput, columns - 6) : [];
|
|
3705
|
+
const rawLines = isPty ? cleanOutput ? cleanOutput.split("\n") : [] : cleanOutput ? wrapText(cleanOutput, columns - 6).split("\n") : [];
|
|
3706
3706
|
const [isExpanded, setIsExpanded] = useState3(false);
|
|
3707
3707
|
useInput2((input, key) => {
|
|
3708
3708
|
if (isFocused && key.ctrl && (input === "o" || input === "")) {
|
package/flux-flow.cjs
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
const { spawn } = require('child_process');
|
|
3
|
+
const path = require('path');
|
|
4
|
+
|
|
5
|
+
// Resolve paths relative to this absolute CJS root
|
|
6
|
+
const CLI_PATH = path.join(__dirname, 'src', 'cli.jsx');
|
|
7
|
+
const TSX_PATH = path.join(__dirname, 'node_modules', '.bin', 'tsx' + (process.platform === 'win32' ? '.cmd' : ''));
|
|
8
|
+
|
|
9
|
+
const flux = spawn(TSX_PATH, [CLI_PATH], {
|
|
10
|
+
stdio: 'inherit',
|
|
11
|
+
shell: true
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
flux.on('exit', (code) => {
|
|
15
|
+
process.exit(code || 0);
|
|
16
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fluxflow-cli",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.18",
|
|
4
4
|
"date": "2026-07-04",
|
|
5
5
|
"description": "A High-Fidelity Agentic CLI with Sub-Agents for the Flux Era.",
|
|
6
6
|
"keywords": [
|
|
@@ -29,7 +29,9 @@
|
|
|
29
29
|
"ARCHITECTURE.md",
|
|
30
30
|
"TOOLS.md",
|
|
31
31
|
"UI_FEATURES.md",
|
|
32
|
-
"cat.txt"
|
|
32
|
+
"cat.txt",
|
|
33
|
+
".puppeteerrc.cjs",
|
|
34
|
+
"flux-flow.cjs"
|
|
33
35
|
],
|
|
34
36
|
"type": "module",
|
|
35
37
|
"bin": {
|