@finleywdx/ai-init 0.1.0 → 0.1.1
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/README.md +1 -1
- package/dist/cli.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/cli.js
CHANGED
|
@@ -214,7 +214,7 @@ async function checkEnv() {
|
|
|
214
214
|
// src/steps/run-speckit.ts
|
|
215
215
|
import pc3 from "picocolors";
|
|
216
216
|
var DEFAULT_INTEGRATIONS = [
|
|
217
|
-
"cursor",
|
|
217
|
+
"cursor-agent",
|
|
218
218
|
"claude",
|
|
219
219
|
"codex",
|
|
220
220
|
"gemini",
|
|
@@ -415,7 +415,7 @@ function main() {
|
|
|
415
415
|
).version(pkg.version, "-v, --version", "\u8F93\u51FA\u7248\u672C\u53F7");
|
|
416
416
|
program.command("init").description("\u5728\u5F53\u524D\u76EE\u5F55\u521D\u59CB\u5316 Finley \u5DE5\u4F5C\u6D41\uFF08\u7F16\u6392 spec-kit + \u94FA\u8BBE\u589E\u91CF\u5C42 + \u5408\u5E76 AGENTS.md\uFF09").option(
|
|
417
417
|
"-i, --integration <names>",
|
|
418
|
-
"\u4EE5\u9017\u53F7\u5206\u9694\u6307\u5B9A\u8981\u5B89\u88C5\u7684 spec-kit integration\uFF08\u9ED8\u8BA4 cursor,claude,codex,gemini,copilot\uFF09"
|
|
418
|
+
"\u4EE5\u9017\u53F7\u5206\u9694\u6307\u5B9A\u8981\u5B89\u88C5\u7684 spec-kit integration\uFF08\u9ED8\u8BA4 cursor-agent,claude,codex,gemini,copilot\uFF09"
|
|
419
419
|
).option("--skip-speckit", "\u8DF3\u8FC7 spec-kit \u7F16\u6392\uFF0C\u4EC5\u94FA\u8BBE Finley \u589E\u91CF\u5C42").option("--no-ignore-agent-tools", "\u4E0D\u5411 specify \u4F20 --ignore-agent-tools\uFF08\u9ED8\u8BA4\u4F1A\u4F20\uFF09").option("--dry-run", "\u53EA\u6253\u5370\u5C06\u6267\u884C\u7684\u64CD\u4F5C\uFF0C\u4E0D\u771F\u6B63\u8C03\u7528 specify\u3001\u4E0D\u5199\u76D8").action(async (opts) => {
|
|
420
420
|
const integrations = typeof opts.integration === "string" ? opts.integration.split(",").map((s) => s.trim()).filter(Boolean) : void 0;
|
|
421
421
|
try {
|