@oss-autopilot/core 3.3.0 → 3.4.1
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 +1 -1
- package/dist/cli-registry.js +6 -0
- package/dist/cli.bundle.cjs +120 -95
- package/dist/cli.js +17 -3
- package/dist/commands/daily.d.ts +3 -9
- package/dist/commands/daily.js +6 -20
- package/dist/commands/dashboard-data.js +1 -1
- package/dist/commands/dashboard-server.js +19 -1
- package/dist/commands/guidelines.d.ts +10 -0
- package/dist/commands/guidelines.js +10 -3
- package/dist/commands/validation.js +9 -0
- package/dist/core/auth.js +7 -3
- package/dist/core/daily-logic.d.ts +13 -1
- package/dist/core/daily-logic.js +23 -0
- package/dist/core/gist-state-store.d.ts +24 -1
- package/dist/core/gist-state-store.js +17 -7
- package/dist/core/http-cache.js +10 -1
- package/dist/core/index.d.ts +2 -1
- package/dist/core/index.js +5 -1
- package/dist/core/placeholder-usernames.d.ts +1 -0
- package/dist/core/placeholder-usernames.js +34 -0
- package/dist/core/pr-comments-fetcher.d.ts +14 -6
- package/dist/core/pr-comments-fetcher.js +8 -14
- package/dist/core/pr-monitor.d.ts +0 -2
- package/dist/core/pr-monitor.js +1 -23
- package/dist/core/state-persistence.d.ts +2 -2
- package/dist/core/state-persistence.js +8 -5
- package/dist/core/state-schema.js +8 -4
- package/dist/core/state.js +5 -1
- package/package.json +3 -3
package/README.md
CHANGED
package/dist/cli-registry.js
CHANGED
|
@@ -1123,6 +1123,12 @@ export const commands = [
|
|
|
1123
1123
|
// ── Guidelines (#867) ──────────────────────────────────────────────────
|
|
1124
1124
|
{
|
|
1125
1125
|
name: 'guidelines',
|
|
1126
|
+
// Skip the preAction auth gate so `guidelines view` works in local mode
|
|
1127
|
+
// (returns storageMode: 'local-unavailable'). Subcommands that DO need
|
|
1128
|
+
// GitHub auth — `store`/`reset` (Gist) and `fetch-corpus` (PR comment
|
|
1129
|
+
// fetch) — call `requireGitHubToken()` themselves and surface a clear
|
|
1130
|
+
// error. Pairs with the parent-chain walk in cli.ts preAction (#1208 M2).
|
|
1131
|
+
localOnly: true,
|
|
1126
1132
|
register(program) {
|
|
1127
1133
|
const group = program
|
|
1128
1134
|
.command('guidelines')
|