speclock 5.3.0 → 5.3.1
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 +1 -1
- package/src/cli/index.js +1 -1
- package/src/core/compliance.js +1 -1
- package/src/core/rules-sync.js +5 -0
- package/src/dashboard/index.html +2 -2
- package/src/mcp/http-server.js +1 -1
- package/src/mcp/server.js +1 -1
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
"name": "speclock",
|
|
4
4
|
|
|
5
|
-
"version": "5.3.
|
|
5
|
+
"version": "5.3.1",
|
|
6
6
|
|
|
7
7
|
"description": "AI Constraint Engine by Sandeep Roy — Universal Rules Sync (one command syncs constraints to Cursor, Claude Code, Copilot, Windsurf, Gemini, Aider, AGENTS.md). AI Patch Firewall, diff-native review, Patch Gateway (ALLOW/WARN/BLOCK), Spec Compiler (NL→constraints), Code Graph (blast radius), Typed constraints, REST API v2, Python SDK, ROS2 integration. 46 MCP tools, Gemini LLM hybrid, HMAC audit chain, RBAC, encryption, SOC 2/HIPAA compliance. Developed by Sandeep Roy.",
|
|
8
8
|
|
package/src/cli/index.js
CHANGED
|
@@ -119,7 +119,7 @@ function refreshContext(root) {
|
|
|
119
119
|
|
|
120
120
|
function printHelp() {
|
|
121
121
|
console.log(`
|
|
122
|
-
SpecLock v5.3.
|
|
122
|
+
SpecLock v5.3.1 — AI Constraint Engine (Universal Rules Sync + Spec Compiler + Code Graph + Typed Constraints + Python SDK + ROS2 + REST API v2 + Gemini LLM + Policy-as-Code + Auth + RBAC + Encryption)
|
|
123
123
|
Developed by Sandeep Roy (github.com/sgroy10)
|
|
124
124
|
|
|
125
125
|
Usage: speclock <command> [options]
|
package/src/core/compliance.js
CHANGED
package/src/core/rules-sync.js
CHANGED
|
@@ -426,6 +426,11 @@ export function syncRules(root, options = {}) {
|
|
|
426
426
|
};
|
|
427
427
|
}
|
|
428
428
|
|
|
429
|
+
// Treat "all" as sync-everything
|
|
430
|
+
if (options.format === "all") {
|
|
431
|
+
delete options.format;
|
|
432
|
+
}
|
|
433
|
+
|
|
429
434
|
const formats = options.format
|
|
430
435
|
? { [options.format]: FORMATS[options.format] }
|
|
431
436
|
: { ...FORMATS };
|
package/src/dashboard/index.html
CHANGED
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
<div class="header">
|
|
90
90
|
<div>
|
|
91
91
|
<h1><span>SpecLock</span> Dashboard</h1>
|
|
92
|
-
<div class="meta">v5.3.
|
|
92
|
+
<div class="meta">v5.3.1 — AI Constraint Engine</div>
|
|
93
93
|
</div>
|
|
94
94
|
<div style="display:flex;align-items:center;gap:12px;">
|
|
95
95
|
<span id="health-badge" class="status-badge healthy">Loading...</span>
|
|
@@ -182,7 +182,7 @@
|
|
|
182
182
|
</div>
|
|
183
183
|
|
|
184
184
|
<div style="text-align:center;padding:24px;color:var(--muted);font-size:12px;">
|
|
185
|
-
SpecLock v5.3.
|
|
185
|
+
SpecLock v5.3.1 — Developed by Sandeep Roy — <a href="https://github.com/sgroy10/speclock" style="color:var(--accent)">GitHub</a>
|
|
186
186
|
</div>
|
|
187
187
|
|
|
188
188
|
<script>
|
package/src/mcp/http-server.js
CHANGED
|
@@ -113,7 +113,7 @@ import { fileURLToPath } from "url";
|
|
|
113
113
|
import _path from "path";
|
|
114
114
|
|
|
115
115
|
const PROJECT_ROOT = process.env.SPECLOCK_PROJECT_ROOT || process.cwd();
|
|
116
|
-
const VERSION = "5.3.
|
|
116
|
+
const VERSION = "5.3.1";
|
|
117
117
|
const AUTHOR = "Sandeep Roy";
|
|
118
118
|
const START_TIME = Date.now();
|
|
119
119
|
|
package/src/mcp/server.js
CHANGED
|
@@ -122,7 +122,7 @@ const PROJECT_ROOT =
|
|
|
122
122
|
args.project || process.env.SPECLOCK_PROJECT_ROOT || process.cwd();
|
|
123
123
|
|
|
124
124
|
// --- MCP Server ---
|
|
125
|
-
const VERSION = "5.3.
|
|
125
|
+
const VERSION = "5.3.1";
|
|
126
126
|
const AUTHOR = "Sandeep Roy";
|
|
127
127
|
|
|
128
128
|
const server = new McpServer(
|