speclore 0.1.2 → 0.1.4
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/LICENSE +21 -21
- package/README.en.md +240 -240
- package/README.md +240 -240
- package/dist/cli/index.js +8 -3
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/templates/report.html +201 -201
- package/dist/index.js +8 -3
- package/dist/index.js.map +1 -1
- package/dist/mcp/server.js +8 -3
- package/dist/mcp/server.js.map +1 -1
- package/package.json +20 -18
- package/scripts/cleanup-global.cjs +46 -46
- package/src/cli/templates/report.html +201 -201
package/dist/mcp/server.js
CHANGED
|
@@ -2,8 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __esm = (fn, res) => function __init() {
|
|
6
|
-
|
|
5
|
+
var __esm = (fn, res, err) => function __init() {
|
|
6
|
+
if (err) throw err[0];
|
|
7
|
+
try {
|
|
8
|
+
return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
|
|
9
|
+
} catch (e) {
|
|
10
|
+
throw err = [e], e;
|
|
11
|
+
}
|
|
7
12
|
};
|
|
8
13
|
var __export = (target, all) => {
|
|
9
14
|
for (var name in all)
|
|
@@ -4385,7 +4390,7 @@ server.registerTool(
|
|
|
4385
4390
|
description: STATUS_TOOL_DESC,
|
|
4386
4391
|
inputSchema: statusInputSchema.shape
|
|
4387
4392
|
},
|
|
4388
|
-
|
|
4393
|
+
(args) => {
|
|
4389
4394
|
const result = executeStatusTool(
|
|
4390
4395
|
{ feature: args.feature },
|
|
4391
4396
|
getProjectRoot()
|