@oss-autopilot/core 0.44.0 → 0.44.2
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-registry.d.ts +21 -0
- package/dist/cli-registry.js +935 -0
- package/dist/cli.bundle.cjs +115 -114
- package/dist/cli.bundle.cjs.map +7 -0
- package/dist/cli.d.ts +5 -6
- package/dist/cli.js +14 -809
- package/dist/commands/dashboard-server.js +24 -4
- package/dist/core/ci-analysis.d.ts +3 -17
- package/dist/core/ci-analysis.js +3 -3
- package/dist/core/display-utils.js +8 -1
- package/dist/core/github-stats.d.ts +0 -20
- package/dist/core/github-stats.js +1 -1
- package/dist/core/github.js +2 -2
- package/dist/core/http-cache.d.ts +10 -2
- package/dist/core/http-cache.js +19 -4
- package/dist/core/index.d.ts +1 -1
- package/dist/core/index.js +1 -1
- package/dist/core/issue-discovery.d.ts +6 -0
- package/dist/core/issue-discovery.js +18 -3
- package/dist/core/issue-vetting.js +41 -36
- package/dist/core/pr-monitor.js +11 -6
- package/dist/core/review-analysis.js +11 -1
- package/dist/core/state.js +14 -1
- package/dist/core/test-utils.d.ts +1 -3
- package/dist/core/test-utils.js +0 -41
- package/dist/core/types.d.ts +4 -2
- package/package.json +3 -3
package/dist/cli.d.ts
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/**
|
|
3
3
|
* OSS Autopilot CLI
|
|
4
|
-
* Entry point with commander for argument parsing
|
|
4
|
+
* Entry point with commander for argument parsing.
|
|
5
5
|
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
* only the invoked command's
|
|
10
|
-
* async token fetch to avoid blocking the event loop on `gh auth token`.
|
|
6
|
+
* Command definitions live in cli-registry.ts — each declares its name,
|
|
7
|
+
* localOnly flag (skip GitHub token check), and a register function.
|
|
8
|
+
* Heavy command modules are lazy-loaded via dynamic import() in action
|
|
9
|
+
* handlers so only the invoked command's dependencies are evaluated.
|
|
11
10
|
*/
|
|
12
11
|
export {};
|