@adhdev/mesh-shared 1.0.49-rc.8 → 1.0.49

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/src/node-facts.ts CHANGED
@@ -166,12 +166,20 @@ export function normalizeMeshNodeFacts(raw: unknown): MeshNodeFacts | undefined
166
166
  * - antigravity-cli — possible via OAuth, not implemented
167
167
  * - hermes-cli — no model-axis quota to report
168
168
  *
169
+ * ★grok-cli WAS listed here as impossible and is not: that verdict came from
170
+ * probing `api.x.ai` / `management-api.x.ai` (the team-API billing axis, which
171
+ * genuinely rejects a CLI OAuth token) and from reading `grok --help`, where
172
+ * the `/usage` view does not appear because it is a TUI slash command. The
173
+ * subscription quota is served by the CLI's own chat proxy — see the endpoint
174
+ * provenance note in daemon-core `quota/fetchers/grok.ts`.
175
+ *
169
176
  * ★Adding a provider here without adding its fetcher to REFRESHERS re-creates
170
177
  * exactly the "switch that does nothing" this constant prevents.
171
178
  */
172
179
  export const QUOTA_SUPPORTED_PROVIDERS: readonly string[] = [
173
180
  'claude-cli',
174
181
  'codex-cli',
182
+ 'grok-cli',
175
183
  'kimi',
176
184
  'opencode',
177
185
  ]