@rosh100yx/outlier 0.4.18 → 0.4.19

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/bin/outlier.js CHANGED
@@ -165,7 +165,7 @@ var require_picocolors = __commonJS((exports, module) => {
165
165
  var require_package = __commonJS((exports, module) => {
166
166
  module.exports = {
167
167
  name: "@rosh100yx/outlier",
168
- version: "0.4.18",
168
+ version: "0.4.19",
169
169
  description: "AI Code Governance & Capability Auditing for the Terminal. Measures AI reliance, context waste, and enforces local CI/CD policies.",
170
170
  bin: {
171
171
  outlier: "bin/outlier.js"
@@ -2406,17 +2406,12 @@ Read the full academic foundation at: ${import_picocolors.default.underline("htt
2406
2406
  }
2407
2407
  if (action === "status") {
2408
2408
  console.log("");
2409
- console.log(import_picocolors.default.bold(" Explore Outlier:"));
2410
- console.log(import_picocolors.default.dim(" ────────────────────────────────────────────────────────────"));
2411
- console.log(` ${import_picocolors.default.cyan("outlier policy")} Configure CI/CD guardrails and thresholds`);
2412
- console.log(` ${import_picocolors.default.cyan("outlier capabilities")} Audit active MCPs, skills, and orchestrations`);
2413
- console.log(` ${import_picocolors.default.cyan("outlier impact")} See the compounding horizon of AI Deskilling`);
2414
- console.log(` ${import_picocolors.default.cyan("outlier participate")} Help build the academic literature`);
2415
- console.log(import_picocolors.default.dim(` ────────────────────────────────────────────────────────────
2416
- `));
2409
+ console.log(import_picocolors.default.bold(import_picocolors.default.cyan(" Participate: ")) + "Help build the literature on AI deskilling ➔ " + import_picocolors.default.bold("outlier participate"));
2417
2410
  console.log(import_picocolors.default.bold(import_picocolors.default.green(" └ Prove Your Mastery: ")) + import_picocolors.default.underline(`https://x.com/intent/tweet?text=${encodeURIComponent(`I just audited my codebase for AI reliance and deskilling risk. What does your repo score?
2418
2411
 
2419
2412
  \uD83D\uDCCF #Outlier`)}`));
2413
+ console.log(import_picocolors.default.dim(`
2414
+ (To see all local governance modules, run: `) + import_picocolors.default.dim(import_picocolors.default.bold("outlier --help")) + import_picocolors.default.dim(")"));
2420
2415
  }
2421
2416
  }
2422
2417
  main().catch(console.error);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rosh100yx/outlier",
3
- "version": "0.4.18",
3
+ "version": "0.4.19",
4
4
  "description": "AI Code Governance & Capability Auditing for the Terminal. Measures AI reliance, context waste, and enforces local CI/CD policies.",
5
5
  "bin": {
6
6
  "outlier": "bin/outlier.js"
package/src/cli.ts CHANGED
@@ -523,17 +523,15 @@ Artifact: ${pc.cyan(reportPath)}`,
523
523
 
524
524
  if (action === 'status') {
525
525
  console.log('');
526
- console.log(pc.bold(' Explore Outlier:'));
527
- console.log(pc.dim(' ────────────────────────────────────────────────────────────'));
528
- console.log(` ${pc.cyan('outlier policy')} Configure CI/CD guardrails and thresholds`);
529
- console.log(` ${pc.cyan('outlier capabilities')} Audit active MCPs, skills, and orchestrations`);
530
- console.log(` ${pc.cyan('outlier impact')} See the compounding horizon of AI Deskilling`);
531
- console.log(` ${pc.cyan('outlier participate')} Help build the academic literature`);
532
- console.log(pc.dim(' ────────────────────────────────────────────────────────────\n'));
533
-
526
+ console.log(
527
+ pc.bold(pc.cyan(' └ Participate: ')) + 'Help build the literature on AI deskilling ➔ ' + pc.bold('outlier participate')
528
+ );
534
529
  console.log(
535
530
  pc.bold(pc.green(' └ Prove Your Mastery: ')) + pc.underline(`https://x.com/intent/tweet?text=${encodeURIComponent('I just audited my codebase for AI reliance and deskilling risk. What does your repo score?\n\n📏 #Outlier')}`)
536
531
  );
532
+ console.log(
533
+ pc.dim('\n (To see all local governance modules, run: ') + pc.dim(pc.bold('outlier --help')) + pc.dim(')')
534
+ );
537
535
  }
538
536
  }
539
537