donna-komilion-bot 0.1.1 → 0.1.3

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -10,6 +10,8 @@ import { randomUUID } from 'crypto';
10
10
  import { runTurn, getWallet } from './agent.js';
11
11
  import { getTurns, searchMemory, listSessions, getSessionStats } from './memory.js';
12
12
  import { spawnAll, killAll } from './tmux.js';
13
+ // Public API for external consumers (e.g. Telegram bot wrappers)
14
+ export { runTurn, getWallet } from './agent.js';
13
15
  // ============================================================================
14
16
  // CLI REPL
15
17
  // ============================================================================
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "donna-komilion-bot",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Donna orchestrator bot — routes via komilion.com, SQLite memory, tmux agent spawning",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",