@qlucent/fishi 0.16.1 → 0.16.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.
Files changed (2) hide show
  1. package/dist/index.js +3 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1271,10 +1271,11 @@ async function initCommand(description, options) {
1271
1271
  const report = generateBrownfieldReport(brownfieldAnalysis);
1272
1272
  fs3.writeFileSync(reportPath, report, "utf-8");
1273
1273
  }
1274
+ const dockerNow = sandboxMode === "docker" || detectDocker();
1274
1275
  const sandboxYaml = `
1275
1276
  sandbox:
1276
1277
  mode: ${sandboxMode}
1277
- docker_available: ${dockerAvailable}
1278
+ docker_available: ${dockerNow}
1278
1279
  `;
1279
1280
  const fishiYamlPath = path3.join(targetDir, ".fishi", "fishi.yaml");
1280
1281
  if (fs3.existsSync(fishiYamlPath)) {
@@ -2778,7 +2779,7 @@ async function upgradeCommand() {
2778
2779
  var program = new Command();
2779
2780
  program.name("fishi").description(
2780
2781
  chalk15.cyan("\u{1F41F} FISHI") + " \u2014 AI-Powered Software Delivery Pipeline\n Autonomous AI development with human governance"
2781
- ).version("0.16.1");
2782
+ ).version("0.16.3");
2782
2783
  program.command("init").description("Initialize FISHI in the current directory").argument("[description]", "Project description (skip wizard with zero-config)").option("-l, --language <lang>", "Primary language (e.g., typescript, python)").option("-f, --framework <framework>", "Framework (e.g., nextjs, express, django)").option(
2783
2784
  "-c, --cost-mode <mode>",
2784
2785
  "Cost mode: performance | balanced | economy",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qlucent/fishi",
3
- "version": "0.16.1",
3
+ "version": "0.16.3",
4
4
  "description": "FISHI — Your AI Dev Team That Actually Ships. Autonomous agent framework for Claude Code.",
5
5
  "license": "MIT",
6
6
  "type": "module",