coding-friend-cli 1.38.1 → 1.38.2
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
CHANGED
|
@@ -65,7 +65,7 @@ program.command("init").description("Initialize coding-friend in current project
|
|
|
65
65
|
"--trust-project",
|
|
66
66
|
"For Codex, mark the current project trusted in ~/.codex/config.toml"
|
|
67
67
|
).action(async (opts) => {
|
|
68
|
-
const { initCommand } = await import("./init-
|
|
68
|
+
const { initCommand } = await import("./init-EMBQJNTT.js");
|
|
69
69
|
await initCommand(opts);
|
|
70
70
|
});
|
|
71
71
|
program.command("config").description("Manage Coding Friend configuration").action(async () => {
|
|
@@ -1214,7 +1214,7 @@ async function initCommand(opts = {}) {
|
|
|
1214
1214
|
console.log();
|
|
1215
1215
|
log.congrats("Setup complete!");
|
|
1216
1216
|
log.dim(
|
|
1217
|
-
"Available commands: /cf-ask, /cf-plan, /cf-design, /cf-fix, /cf-commit, /cf-review, /cf-review-out, /cf-review-in, /cf-ship, /cf-optimize, /cf-scan, /cf-remember, /cf-learn, /cf-teach, /cf-research, /cf-session, /cf-warm, /cf-help"
|
|
1217
|
+
"Available commands: /cf-ask, /cf-plan, /cf-design, /cf-fix, /cf-commit, /cf-review, /cf-review-out, /cf-review-in, /cf-ship, /cf-optimize, /cf-scan, /cf-remember, /cf-learn, /cf-teach, /cf-research, /cf-session, /cf-warm, /cf-checkpoint, /cf-checkpoint-from, /cf-help"
|
|
1218
1218
|
);
|
|
1219
1219
|
}
|
|
1220
1220
|
function initCodexCommand(opts) {
|
|
@@ -1292,7 +1292,7 @@ Use Coding Friend skills with Codex's $skill syntax.
|
|
|
1292
1292
|
|
|
1293
1293
|
## Skills
|
|
1294
1294
|
|
|
1295
|
-
$cf-ask, $cf-plan, $cf-review, $cf-review-out, $cf-review-in, $cf-commit, $cf-design, $cf-ship, $cf-fix, $cf-optimize, $cf-scan, $cf-remember, $cf-learn, $cf-teach, $cf-research, $cf-session, $cf-warm, $cf-help
|
|
1295
|
+
$cf-ask, $cf-plan, $cf-review, $cf-review-out, $cf-review-in, $cf-commit, $cf-design, $cf-ship, $cf-fix, $cf-optimize, $cf-scan, $cf-remember, $cf-learn, $cf-teach, $cf-research, $cf-session, $cf-warm, $cf-checkpoint, $cf-checkpoint-from, $cf-help
|
|
1296
1296
|
`;
|
|
1297
1297
|
}
|
|
1298
1298
|
function ensureGitignoreEntry(entry) {
|