You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

agentfs-sdk

Package Overview
Dependencies
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agentfs-sdk - npm Package Compare versions

Comparing version
0.6.0-pre.4
to
0.6.0-pre.5
+10
-1
dist/filesystem/agentfs.js

@@ -182,3 +182,7 @@ import { createFsError } from '../errors.js';

mtime INTEGER NOT NULL,
ctime INTEGER NOT NULL
ctime INTEGER NOT NULL,
rdev INTEGER NOT NULL DEFAULT 0,
atime_nsec INTEGER NOT NULL DEFAULT 0,
mtime_nsec INTEGER NOT NULL DEFAULT 0,
ctime_nsec INTEGER NOT NULL DEFAULT 0
)

@@ -229,2 +233,7 @@ `);

}
// Set schema version (keep in sync with AGENTFS_SCHEMA_VERSION in sdk/rust/src/schema.rs)
const schemaVersionStmt = this.db.prepare(`
INSERT OR REPLACE INTO fs_config (key, value) VALUES ('schema_version', '0.4')
`);
await schemaVersionStmt.run();
const stmt = this.db.prepare('SELECT ino FROM fs_inode WHERE ino = ?');

@@ -231,0 +240,0 @@ const root = await stmt.get(this.rootIno);

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

mtime INTEGER NOT NULL,
ctime INTEGER NOT NULL
ctime INTEGER NOT NULL,
rdev INTEGER NOT NULL DEFAULT 0,
atime_nsec INTEGER NOT NULL DEFAULT 0,
mtime_nsec INTEGER NOT NULL DEFAULT 0,
ctime_nsec INTEGER NOT NULL DEFAULT 0
)

@@ -243,2 +247,4 @@ `);

}
// Set schema version (keep in sync with AGENTFS_SCHEMA_VERSION in sdk/rust/src/schema.rs)
this.storage.sql.exec("INSERT OR REPLACE INTO fs_config (key, value) VALUES ('schema_version', '0.4')");
const rootRows = this.storage.sql.exec('SELECT ino FROM fs_inode WHERE ino = ?', this.rootIno).toArray();

@@ -245,0 +251,0 @@ if (rootRows.length === 0) {

+1
-1
{
"name": "agentfs-sdk",
"version": "0.6.0-pre.4",
"version": "0.6.0-pre.5",
"description": "AgentFS SDK",

@@ -5,0 +5,0 @@ "main": "dist/index_node.js",