Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@crewx/shared

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@crewx/shared - npm Package Compare versions

Comparing version
0.0.2
to
0.0.3
+1
-1
package.json
{
"name": "@crewx/shared",
"version": "0.0.2",
"version": "0.0.3",
"main": "skill-tracer.js",
"description": "Shared utilities for CrewX built-in packages"
}

@@ -302,2 +302,6 @@ /**

if (parentTaskId && parentTaskId.trim() !== '') {
// Verify FK target exists before INSERT to avoid constraint error
const taskExists = db.prepare('SELECT 1 FROM tasks WHERE id = ?').get(parentTaskId);
const safeTaskId = taskExists ? parentTaskId : null;
const spanId = randomUUID();

@@ -313,3 +317,3 @@ const attributes = JSON.stringify({

VALUES (?, ?, ?, 'internal', 'ok', ?, ?, ?)
`).run(spanId, parentTaskId, `[skill:${skillName}] ${command}`, now, command, attributes);
`).run(spanId, safeTaskId, `[skill:${skillName}] ${command}`, now, command, attributes);

@@ -316,0 +320,0 @@ return {