@qlucent/fishi 0.2.0 → 0.3.0
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/dist/index.js +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1136,7 +1136,8 @@ async function initCommand(description, options) {
|
|
|
1136
1136
|
projectType: detection.type,
|
|
1137
1137
|
brownfieldAnalysis: brownfieldData,
|
|
1138
1138
|
resolutions,
|
|
1139
|
-
docsReadmeExists: conflictResult?.docsReadmeExists
|
|
1139
|
+
docsReadmeExists: conflictResult?.docsReadmeExists,
|
|
1140
|
+
rootClaudeMdExists: conflictResult?.rootClaudeMdExists
|
|
1140
1141
|
});
|
|
1141
1142
|
if (brownfieldAnalysis) {
|
|
1142
1143
|
const reportPath = path3.join(targetDir, ".fishi", "memory", "brownfield-analysis.md");
|
|
@@ -1652,7 +1653,7 @@ async function validateCommand() {
|
|
|
1652
1653
|
var program = new Command();
|
|
1653
1654
|
program.name("fishi").description(
|
|
1654
1655
|
chalk6.cyan("\u{1F41F} FISHI") + " \u2014 Your AI Dev Team That Actually Ships\n Autonomous agent framework for Claude Code"
|
|
1655
|
-
).version("0.
|
|
1656
|
+
).version("0.3.0");
|
|
1656
1657
|
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(
|
|
1657
1658
|
"-c, --cost-mode <mode>",
|
|
1658
1659
|
"Cost mode: performance | balanced | economy",
|