@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 CHANGED
@@ -46,7 +46,7 @@ All commands support `--json` for structured output:
46
46
  {
47
47
  "success": true,
48
48
  "data": { ... },
49
- "timestamp": "2026-02-28T12:00:00.000Z"
49
+ "timestamp": "2026-05-04T00:00:00.000Z"
50
50
  }
51
51
  ```
52
52
 
@@ -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')