twinclaw 1.1.4 → 1.1.5
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/core/onboarding.js +1 -2
- package/package.json +1 -1
package/dist/core/onboarding.js
CHANGED
|
@@ -8,7 +8,6 @@ import { createSession, saveMessage } from '../services/db.js';
|
|
|
8
8
|
import { indexConversationTurn, retrieveMemoryContext } from '../services/semantic-memory.js';
|
|
9
9
|
import { ModelRouter } from '../services/model-router.js';
|
|
10
10
|
import { logThought } from '../utils/logger.js';
|
|
11
|
-
import { runSimplifiedOnboarding } from './simplified-onboarding.js';
|
|
12
11
|
const rl = readline.createInterface({
|
|
13
12
|
input: process.stdin,
|
|
14
13
|
output: process.stdout,
|
|
@@ -730,7 +729,7 @@ export async function handleOnboardCli(argv) {
|
|
|
730
729
|
if (argv[0] !== 'onboard') {
|
|
731
730
|
return false;
|
|
732
731
|
}
|
|
733
|
-
await
|
|
732
|
+
await runOnboarding();
|
|
734
733
|
return true;
|
|
735
734
|
}
|
|
736
735
|
export { runSimplifiedOnboarding } from './simplified-onboarding.js';
|