agentgui 1.0.129 → 1.0.130

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/database.js +2 -2
  2. package/package.json +1 -1
package/database.js CHANGED
@@ -253,9 +253,9 @@ export const queries = {
253
253
  const id = generateId('conv');
254
254
  const now = Date.now();
255
255
  const stmt = db.prepare(
256
- `INSERT INTO conversations (id, agentType, title, created_at, updated_at, status, workingDirectory) VALUES (?, ?, ?, ?, ?, ?, ?)`
256
+ `INSERT INTO conversations (id, agentId, agentType, title, created_at, updated_at, status, workingDirectory) VALUES (?, ?, ?, ?, ?, ?, ?, ?)`
257
257
  );
258
- stmt.run(id, agentType, title, now, now, 'active', workingDirectory);
258
+ stmt.run(id, agentType, agentType, title, now, now, 'active', workingDirectory);
259
259
 
260
260
  return {
261
261
  id,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.129",
3
+ "version": "1.0.130",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",