cognova 0.2.18 → 0.2.20

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cognova",
3
3
  "type": "module",
4
- "version": "0.2.18",
4
+ "version": "0.2.20",
5
5
  "description": "Personal knowledge management system with Claude Code integration",
6
6
  "repository": {
7
7
  "type": "git",
@@ -70,6 +70,7 @@
70
70
  "@unovis/vue": "^1.6.2",
71
71
  "@vueuse/core": "^14.1.0",
72
72
  "@vueuse/integrations": "^14.1.0",
73
+ "@vueuse/shared": "^14.1.0",
73
74
  "@xterm/addon-fit": "^0.11.0",
74
75
  "@xterm/addon-web-links": "^0.12.0",
75
76
  "@xterm/xterm": "^6.0.0",
@@ -141,12 +141,14 @@ export class IMessageAdapter implements BridgeAdapter {
141
141
 
142
142
  let buffer = ''
143
143
  this.watchProcess.stdout?.on('data', (chunk: Buffer) => {
144
+ console.log('[imessage] DEBUG: Received stdout data, length:', chunk.length)
144
145
  buffer += chunk.toString()
145
146
  const lines = buffer.split('\n')
146
147
  buffer = lines.pop() || ''
147
148
 
148
149
  for (const line of lines) {
149
150
  if (!line.trim()) continue
151
+ console.log('[imessage] DEBUG: Processing line:', line.substring(0, 200))
150
152
  try {
151
153
  const msg = JSON.parse(line) as ImsgWatchMessage
152
154
  void this.handleImsgMessage(msg).catch((err) => {
@@ -1 +0,0 @@
1
- {"id":"6a560455-b93a-481e-8cf7-8f19b387a293","timestamp":1771878614803,"matcher":{"static":{},"wildcard":{},"dynamic":{}},"prerendered":[]}