New:Socket for Asana Is Now Available.Learn more
Get Started

aidimag

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aidimag - npm Package Compare versions

Comparing version
1.0.18
to
1.0.19
+8
-2
dist/db/store.js

@@ -84,3 +84,7 @@ /**

}
this.db.exec(SCHEMA_SQL);
// Column migrations must run BEFORE SCHEMA_SQL: the schema creates indexes
// on migrated columns (e.g. idx_memories_cloud_synced), which fails with
// "no such column" if an old DB hasn't been ALTERed yet. On fresh DBs these
// ALTERs fail harmlessly ("no such table") and SCHEMA_SQL creates the
// current shape directly.
for (const m of MIGRATIONS) {

@@ -91,6 +95,8 @@ try {

catch (err) {
// usually "duplicate column" = already applied; AIDIMAG_DEBUG=1 shows which
// usually "duplicate column" (already applied) or "no such table"
// (fresh DB); AIDIMAG_DEBUG=1 shows which
debugLog("schema migration (likely already applied)", err);
}
}
this.db.exec(SCHEMA_SQL);
// v6: evidence CHECK gains TICKET_REF — needs a one-time table rebuild

@@ -97,0 +103,0 @@ if (prevVersion > 0 && prevVersion < 6) {

+3
-3
{
"name": "aidimag",
"version": "1.0.18",
"version": "1.0.19",
"description": "Persistent, verified memory for AI coding agents. CLI: dim.",

@@ -20,4 +20,4 @@ "type": "module",

"bin": {
"dim": "./dist/cli/index.js",
"aidimag": "./dist/cli/index.js"
"dim": "dist/cli/index.js",
"aidimag": "dist/cli/index.js"
},

@@ -24,0 +24,0 @@ "main": "./dist/index.js",

<div align="center">
<img src="assets/logo.svg" alt="AI Dimag Logo" width="120" height="120">
<img src="https://raw.githubusercontent.com/AiDimag/aidimag/main/assets/logo.svg" alt="AI Dimag Logo" width="120" height="120">

@@ -10,2 +10,4 @@ # AI Dimag — Verified Memory for AI Coding Agents

[![npm version](https://img.shields.io/npm/v/aidimag?color=blue&logo=npm)](https://www.npmjs.com/package/aidimag)
[![VS Code Marketplace](https://img.shields.io/badge/VS%20Code-v1.0.4-blue?logo=visualstudiocode)](https://marketplace.visualstudio.com/items?itemName=aidimag.aidimag-vscode)
[![JetBrains Marketplace](https://img.shields.io/jetbrains/plugin/v/33030?label=JetBrains&logo=jetbrains&color=blue)](https://plugins.jetbrains.com/plugin/33030-ai-dimag)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)

@@ -39,3 +41,3 @@ [![Documentation](https://img.shields.io/badge/docs-aidimag.com-blue)](https://aidimag.com)

<div align="center">
<img src="assets/hero-illustration.svg" alt="AI Dimag Flow" width="600">
<img src="https://raw.githubusercontent.com/AiDimag/aidimag/main/assets/hero-illustration.svg" alt="AI Dimag Flow" width="600">
</div>

@@ -42,0 +44,0 @@