@rubytech/create-realagent 1.0.439 → 1.0.441

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
@@ -572,7 +572,7 @@ function deployPayload() {
572
572
  for (const dir of ["platform", "maxy", "premium-plugins", "docs", ".claude"]) {
573
573
  const target = join(INSTALL_DIR, dir);
574
574
  if (existsSync(target)) {
575
- rmSync(target, { recursive: true });
575
+ rmSync(target, { recursive: true, force: true });
576
576
  }
577
577
  }
578
578
  mkdirSync(INSTALL_DIR, { recursive: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rubytech/create-realagent",
3
- "version": "1.0.439",
3
+ "version": "1.0.441",
4
4
  "description": "Install Real Agent — Built for agents. By agents.",
5
5
  "bin": {
6
6
  "create-realagent": "./dist/index.js"
@@ -4,6 +4,7 @@
4
4
  "type": "module",
5
5
  "dependencies": {
6
6
  "neo4j-driver": "^6.0.1",
7
- "@anthropic-ai/sdk": "^0.55.0"
7
+ "@anthropic-ai/sdk": "^0.55.0",
8
+ "@whiskeysockets/baileys": "^7.0.0-rc.9"
8
9
  }
9
10
  }