@klitchevo/code-council 0.1.3 → 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/README.md +154 -510
- package/dist/{chunk-YLBGX3Y3.js → chunk-6FDDSS3I.js} +2 -2
- package/dist/chunk-GKJH5C6Z.js +2194 -0
- package/dist/{chunk-RIJGRVVH.js → chunk-IVKLQD6M.js} +2 -2
- package/dist/{chunk-JAGOVGRD.js → chunk-SYMFCPGM.js} +8 -2
- package/dist/chunk-UFR2SVK2.js +37 -0
- package/dist/cli-GQR62DBS.js +1047 -0
- package/dist/config/index.js +2 -2
- package/dist/formatter-D42TRSLL.js +10 -0
- package/dist/index.js +281 -1382
- package/dist/{loader-4YLGXTWJ.js → loader-I432A72A.js} +3 -3
- package/dist/{tps-audit-UJ26A6KT.js → tps-audit-DPIJH6JK.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-W4FYPS5Z.js +0 -19
- package/dist/formatter-ZWJ44CI5.js +0 -10
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
init_esm_shims
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-UFR2SVK2.js";
|
|
4
4
|
|
|
5
5
|
// src/prompts/tps-audit.ts
|
|
6
6
|
init_esm_shims();
|
|
@@ -312,4 +312,4 @@ export {
|
|
|
312
312
|
buildSynthesisUserMessage,
|
|
313
313
|
parseTpsAnalysis
|
|
314
314
|
};
|
|
315
|
-
//# sourceMappingURL=chunk-
|
|
315
|
+
//# sourceMappingURL=chunk-IVKLQD6M.js.map
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
__esm,
|
|
3
|
+
__export,
|
|
3
4
|
init_esm_shims
|
|
4
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-UFR2SVK2.js";
|
|
5
6
|
|
|
6
7
|
// src/consensus/formatter.ts
|
|
8
|
+
var formatter_exports = {};
|
|
9
|
+
__export(formatter_exports, {
|
|
10
|
+
formatReport: () => formatReport
|
|
11
|
+
});
|
|
7
12
|
function formatReport(report, format = "markdown") {
|
|
8
13
|
switch (format) {
|
|
9
14
|
case "json":
|
|
@@ -388,6 +393,7 @@ var init_formatter = __esm({
|
|
|
388
393
|
|
|
389
394
|
export {
|
|
390
395
|
formatReport,
|
|
396
|
+
formatter_exports,
|
|
391
397
|
init_formatter
|
|
392
398
|
};
|
|
393
|
-
//# sourceMappingURL=chunk-
|
|
399
|
+
//# sourceMappingURL=chunk-SYMFCPGM.js.map
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __esm = (fn, res) => function __init() {
|
|
6
|
+
return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
|
|
7
|
+
};
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
21
|
+
|
|
22
|
+
// node_modules/tsup/assets/esm_shims.js
|
|
23
|
+
import path from "path";
|
|
24
|
+
import { fileURLToPath } from "url";
|
|
25
|
+
var init_esm_shims = __esm({
|
|
26
|
+
"node_modules/tsup/assets/esm_shims.js"() {
|
|
27
|
+
"use strict";
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
export {
|
|
32
|
+
__esm,
|
|
33
|
+
__export,
|
|
34
|
+
__toCommonJS,
|
|
35
|
+
init_esm_shims
|
|
36
|
+
};
|
|
37
|
+
//# sourceMappingURL=chunk-UFR2SVK2.js.map
|