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.
@@ -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 runSimplifiedOnboarding();
732
+ await runOnboarding();
734
733
  return true;
735
734
  }
736
735
  export { runSimplifiedOnboarding } from './simplified-onboarding.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "twinclaw",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "Eagle-eyed agentic AI gateway with multi-modal hooks and proactive memory.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {