coding-friend-cli 1.30.0 → 1.31.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.
|
@@ -407,6 +407,10 @@ async function editAutoApprove(globalCfg, localCfg) {
|
|
|
407
407
|
log,
|
|
408
408
|
(message) => confirm({ message, default: true })
|
|
409
409
|
);
|
|
410
|
+
log.dim(
|
|
411
|
+
"Tip: Fine-tune with autoApproveAllowExtra / autoApproveIgnore in config.json"
|
|
412
|
+
);
|
|
413
|
+
log.dim("Docs: https://cf.dinhanhthi.com/docs/reference/auto-approve/");
|
|
410
414
|
}
|
|
411
415
|
}
|
|
412
416
|
async function editStatusline() {
|
|
@@ -587,7 +591,7 @@ async function editPermissions() {
|
|
|
587
591
|
)
|
|
588
592
|
});
|
|
589
593
|
if (choice === BACK) return;
|
|
590
|
-
const { permissionCommand } = await import("./permission-
|
|
594
|
+
const { permissionCommand } = await import("./permission-EIOCPY2C.js");
|
|
591
595
|
switch (choice) {
|
|
592
596
|
case "interactive":
|
|
593
597
|
await permissionCommand({});
|
package/dist/index.js
CHANGED
|
@@ -30,11 +30,11 @@ program.command("enable").description("Re-enable the Coding Friend plugin").opti
|
|
|
30
30
|
await enableCommand(opts);
|
|
31
31
|
});
|
|
32
32
|
program.command("init").description("Initialize coding-friend in current project").action(async () => {
|
|
33
|
-
const { initCommand } = await import("./init-
|
|
33
|
+
const { initCommand } = await import("./init-RGLJY6YH.js");
|
|
34
34
|
await initCommand();
|
|
35
35
|
});
|
|
36
36
|
program.command("config").description("Manage Coding Friend configuration").action(async () => {
|
|
37
|
-
const { configCommand } = await import("./config-
|
|
37
|
+
const { configCommand } = await import("./config-NJE6PLDZ.js");
|
|
38
38
|
await configCommand();
|
|
39
39
|
});
|
|
40
40
|
program.command("host").description("Build and serve learning docs as a static website").argument("[path]", "path to docs folder").option("-p, --port <port>", "port number", "3333").action(async (path, opts) => {
|
|
@@ -49,7 +49,7 @@ program.command("permission").description("Manage Claude Code permission rules f
|
|
|
49
49
|
"--project",
|
|
50
50
|
"Save to project-level settings (.claude/settings.local.json)"
|
|
51
51
|
).action(async (opts) => {
|
|
52
|
-
const { permissionCommand } = await import("./permission-
|
|
52
|
+
const { permissionCommand } = await import("./permission-EIOCPY2C.js");
|
|
53
53
|
await permissionCommand(opts);
|
|
54
54
|
});
|
|
55
55
|
program.command("statusline").description("Setup coding-friend statusline in Claude Code").action(async () => {
|
|
@@ -850,6 +850,12 @@ async function initMenu(gitAvailable) {
|
|
|
850
850
|
log,
|
|
851
851
|
(message) => confirm({ message, default: true })
|
|
852
852
|
);
|
|
853
|
+
log.dim(
|
|
854
|
+
"Tip: Fine-tune with autoApproveAllowExtra / autoApproveIgnore in config.json"
|
|
855
|
+
);
|
|
856
|
+
log.dim(
|
|
857
|
+
"Docs: https://cf.dinhanhthi.com/docs/reference/auto-approve/"
|
|
858
|
+
);
|
|
853
859
|
}
|
|
854
860
|
break;
|
|
855
861
|
}
|
|
@@ -205,6 +205,10 @@ async function autoApproveFlow() {
|
|
|
205
205
|
log,
|
|
206
206
|
(message) => confirm({ message, default: true })
|
|
207
207
|
);
|
|
208
|
+
log.dim(
|
|
209
|
+
"Tip: Fine-tune with autoApproveAllowExtra / autoApproveIgnore in config.json"
|
|
210
|
+
);
|
|
211
|
+
log.dim("Docs: https://cf.dinhanhthi.com/docs/reference/auto-approve/");
|
|
208
212
|
}
|
|
209
213
|
}
|
|
210
214
|
async function permissionCommand(opts) {
|