oxe-cc 1.12.0 → 1.16.0

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.
Files changed (40) hide show
  1. package/.github/dependabot.yml +31 -0
  2. package/.github/workflows/ci.yml +141 -56
  3. package/.github/workflows/release.yml +114 -89
  4. package/CHANGELOG.md +866 -754
  5. package/README.md +600 -736
  6. package/bin/lib/oxe-agent-install.cjs +299 -284
  7. package/bin/lib/oxe-artifact-catalog.cjs +376 -0
  8. package/bin/lib/oxe-command-registry.cjs +31 -0
  9. package/bin/lib/oxe-context-engine.cjs +11 -11
  10. package/bin/lib/oxe-core-command-handlers.cjs +82 -0
  11. package/bin/lib/oxe-dashboard.cjs +140 -140
  12. package/bin/lib/oxe-manifest.cjs +20 -20
  13. package/bin/lib/oxe-npm-version.cjs +6 -4
  14. package/bin/lib/oxe-plugin-cli.cjs +95 -0
  15. package/bin/lib/oxe-plugins.cjs +94 -3
  16. package/bin/lib/oxe-process.cjs +67 -0
  17. package/bin/lib/oxe-project-health.cjs +2846 -2781
  18. package/bin/lib/oxe-runtime-semantics.cjs +68 -69
  19. package/bin/oxe-cc.js +369 -353
  20. package/docs/INTEGRATION.md +182 -0
  21. package/docs/QUALITY-GATES.md +46 -0
  22. package/docs/RELEASE-READINESS.md +86 -61
  23. package/docs/RUNTIME-SMOKE-MATRIX.md +137 -135
  24. package/docs/oxe-artifact-map.html +1172 -0
  25. package/lib/sdk/index.cjs +20 -0
  26. package/lib/sdk/index.d.ts +971 -876
  27. package/lib/sdk/index.types.ts +933 -0
  28. package/oxe/templates/PLUGINS.md +8 -1
  29. package/oxe/templates/STATE-REFERENCE.md +125 -0
  30. package/oxe/templates/STATE.md +11 -121
  31. package/oxe/workflows/help.md +2 -0
  32. package/package.json +129 -108
  33. package/packages/runtime/package.json +18 -18
  34. package/packages/runtime/src/evidence/evidence-store.ts +2 -2
  35. package/packages/runtime/src/scheduler/multi-agent-coordinator.ts +728 -728
  36. package/packages/runtime/src/workspace/strategies/git-worktree.ts +24 -24
  37. package/packages/runtime/tsconfig.json +8 -2
  38. package/vscode-extension/.vscodeignore +2 -0
  39. package/vscode-extension/package.json +193 -185
  40. package/vscode-extension/src/extension.js +11 -1
package/lib/sdk/index.cjs CHANGED
@@ -21,6 +21,7 @@ const context = require('../../bin/lib/oxe-context-engine.cjs');
21
21
  const runtimeSemantics = require('../../bin/lib/oxe-runtime-semantics.cjs');
22
22
  const release = require('../../bin/lib/oxe-release.cjs');
23
23
  const rationality = require('../../bin/lib/oxe-rationality.cjs');
24
+ const artifactCatalog = require('../../bin/lib/oxe-artifact-catalog.cjs');
24
25
 
25
26
  const PACKAGE_ROOT = path.join(__dirname, '..', '..');
26
27
 
@@ -560,6 +561,8 @@ module.exports = {
560
561
  loadOxeConfigMerged: health.loadOxeConfigMerged,
561
562
  validateConfigShape: health.validateConfigShape,
562
563
  buildHealthReport: health.buildHealthReport,
564
+ buildStatusSummary: health.buildStatusSummary,
565
+ agentSkillsReport: health.agentSkillsReport,
563
566
  detectWorkspaceMode: health.detectWorkspaceMode,
564
567
  shouldSuppressExecutionWorkspaceGates: health.shouldSuppressExecutionWorkspaceGates,
565
568
  suggestNextStep: health.suggestNextStep,
@@ -775,6 +778,23 @@ module.exports = {
775
778
  redactObject: azure.redactObject,
776
779
  },
777
780
 
781
+ /**
782
+ * Catálogo único de artefatos do `.oxe/` — fonte da verdade da legenda
783
+ * (`.oxe/README.md`), do mapa vivo (`oxe-cc map`) e dos docs. Hosts podem
784
+ * consumir `buildMapModel(target)` para projetar o estado real do diretório.
785
+ */
786
+ artifacts: {
787
+ ARTIFACT_CATALOG: artifactCatalog.ARTIFACT_CATALOG,
788
+ GROUPS: artifactCatalog.GROUPS,
789
+ CORE_INSTALL_PATHS: artifactCatalog.CORE_INSTALL_PATHS,
790
+ SOURCE_LABELS: artifactCatalog.SOURCE_LABELS,
791
+ sourceLabel: artifactCatalog.sourceLabel,
792
+ renderLegend: artifactCatalog.renderLegend,
793
+ classifyEntry: artifactCatalog.classifyEntry,
794
+ buildMapModel: artifactCatalog.buildMapModel,
795
+ renderMap: artifactCatalog.renderMap,
796
+ },
797
+
778
798
  /** Um único objeto com verificações tipo `doctor` + relatório de saúde. */
779
799
  runDoctorChecks,
780
800
  };