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/.output/nitro.json +1 -1
- package/.output/public/_nuxt/builds/latest.json +1 -1
- package/.output/public/_nuxt/builds/meta/d528449f-50ac-4f95-b7da-122a1fdd6e85.json +1 -0
- package/.output/server/chunks/build/styles.mjs +4 -4
- package/.output/server/chunks/nitro/nitro.mjs +223 -221
- package/.output/server/package.json +1 -1
- package/Claude/skills/_lib/api.py +4 -4
- package/Claude/skills/project/project.py +2 -1
- package/Claude/skills/skill-creator/SKILL.md +7 -0
- package/Claude/skills/task/task.py +4 -3
- package/dist/cli/index.js +372 -170
- package/package.json +2 -1
- package/server/bridge/adapters/imessage.ts +2 -0
- package/.output/public/_nuxt/builds/meta/6a560455-b93a-481e-8cf7-8f19b387a293.json +0 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cognova",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.2.
|
|
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":[]}
|