runtrim 0.1.19 → 0.1.20
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-cli/runtrim.cjs +4 -1
- package/dist-cli/runtrim.js +4 -1
- package/package.json +1 -1
package/dist-cli/runtrim.cjs
CHANGED
|
@@ -8820,6 +8820,9 @@ program.command("start").description("Guided RunTrim onboarding and daily loop")
|
|
|
8820
8820
|
console.log(chalk.white(" runtrim mcp config --print"));
|
|
8821
8821
|
console.log(chalk.white(" runtrim mcp start"));
|
|
8822
8822
|
console.log("");
|
|
8823
|
+
console.log(DIM(" Check readiness"));
|
|
8824
|
+
console.log(chalk.white(" runtrim doctor"));
|
|
8825
|
+
console.log("");
|
|
8823
8826
|
console.log(DIM(" Adapters"));
|
|
8824
8827
|
console.log(chalk.white(" runtrim adapters"));
|
|
8825
8828
|
console.log(chalk.white(" runtrim adapters status"));
|
|
@@ -8901,7 +8904,7 @@ program.command("start").description("Guided RunTrim onboarding and daily loop")
|
|
|
8901
8904
|
console.log("");
|
|
8902
8905
|
}
|
|
8903
8906
|
});
|
|
8904
|
-
program.command("doctor").description("Check project
|
|
8907
|
+
program.command("doctor").description("Check whether the current project is RunTrim-ready for agents, MCP, memory and finish verification").action(async () => {
|
|
8905
8908
|
const cwd = process.cwd();
|
|
8906
8909
|
const repoCheck = await assertFreeRepoAllowed(cwd);
|
|
8907
8910
|
const profilePath = import_path13.default.join(getConfigDir(cwd), "project-profile.json");
|
package/dist-cli/runtrim.js
CHANGED
|
@@ -8799,6 +8799,9 @@ program.command("start").description("Guided RunTrim onboarding and daily loop")
|
|
|
8799
8799
|
console.log(chalk.white(" runtrim mcp config --print"));
|
|
8800
8800
|
console.log(chalk.white(" runtrim mcp start"));
|
|
8801
8801
|
console.log("");
|
|
8802
|
+
console.log(DIM(" Check readiness"));
|
|
8803
|
+
console.log(chalk.white(" runtrim doctor"));
|
|
8804
|
+
console.log("");
|
|
8802
8805
|
console.log(DIM(" Adapters"));
|
|
8803
8806
|
console.log(chalk.white(" runtrim adapters"));
|
|
8804
8807
|
console.log(chalk.white(" runtrim adapters status"));
|
|
@@ -8880,7 +8883,7 @@ program.command("start").description("Guided RunTrim onboarding and daily loop")
|
|
|
8880
8883
|
console.log("");
|
|
8881
8884
|
}
|
|
8882
8885
|
});
|
|
8883
|
-
program.command("doctor").description("Check project
|
|
8886
|
+
program.command("doctor").description("Check whether the current project is RunTrim-ready for agents, MCP, memory and finish verification").action(async () => {
|
|
8884
8887
|
const cwd = process.cwd();
|
|
8885
8888
|
const repoCheck = await assertFreeRepoAllowed(cwd);
|
|
8886
8889
|
const profilePath = path13.join(getConfigDir(cwd), "project-profile.json");
|