@useorgx/wizard 0.1.31 → 0.1.32
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/dist/cli.js +7 -3
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -8097,8 +8097,12 @@ function buildSessionReconciliationReport(input) {
|
|
|
8097
8097
|
const coverage = buildCoverage(input.imports, connectedSources, missingSources, clientExtractions);
|
|
8098
8098
|
const events = [...buildWorkGraphEvents(input.imports), ...buildClientExtractionEvents(clientExtractions)];
|
|
8099
8099
|
const findings = [...buildWorkGraphFindings(input.imports), ...buildClientExtractionFindings(clientExtractions)];
|
|
8100
|
-
const
|
|
8101
|
-
const
|
|
8100
|
+
const autoMissed = buildMissedOpportunities(coverage, findings);
|
|
8101
|
+
const extractedMissed = findings.filter((finding) => finding.type === "missed_orchestration_opportunity");
|
|
8102
|
+
const missed = [...extractedMissed, ...autoMissed].filter(
|
|
8103
|
+
(finding, index, all) => all.findIndex((candidate) => candidate.evidence_ref === finding.evidence_ref) === index
|
|
8104
|
+
);
|
|
8105
|
+
const allFindings = [...findings, ...autoMissed];
|
|
8102
8106
|
const trails = buildWorkGraphTrails(allFindings, generatedAt);
|
|
8103
8107
|
const recurringPatterns = buildRecurringPatterns(coverage, allFindings, trails);
|
|
8104
8108
|
const opportunityScore = scoreOpportunity(coverage, allFindings);
|
|
@@ -10034,7 +10038,7 @@ function printDoctorReport(report, assessment) {
|
|
|
10034
10038
|
async function main() {
|
|
10035
10039
|
const program = new Command();
|
|
10036
10040
|
program.name("orgx-wizard").description("Add OrgX MCP configs, skills/rules, and companion plugins to your local AI tools.").showHelpAfterError();
|
|
10037
|
-
const pkgVersion = true ? "0.1.
|
|
10041
|
+
const pkgVersion = true ? "0.1.32" : void 0;
|
|
10038
10042
|
program.version(pkgVersion ?? "unknown", "-V, --version");
|
|
10039
10043
|
program.hook("preAction", (_thisCommand, actionCommand) => {
|
|
10040
10044
|
if (Boolean(actionCommand.optsWithGlobals().json)) return;
|