subconscious-cli 4.0.7 → 4.0.9

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.
Binary file
Binary file
Binary file
Binary file
@@ -170,6 +170,7 @@ export CLAUDE_CODE_AUTO_COMPACT_WINDOW="${COMPACT_WINDOW}"
170
170
  export CLAUDE_CODE_MAX_CONTEXT_TOKENS="${MAX_CONTEXT_TOKENS}"
171
171
  export CLAUDE_CODE_ENABLE_TELEMETRY=1
172
172
  export CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC=1
173
+ export ENABLE_CLAUDEAI_MCP_SERVERS=false
173
174
  # Claude Code purpose attribution only (api_request → /v1/logs):
174
175
  # https://code.claude.com/docs/en/monitoring-usage#api-request-event
175
176
  export OTEL_LOGS_EXPORTER=otlp
@@ -213,6 +214,7 @@ unset CLAUDE_CODE_AUTO_COMPACT_WINDOW
213
214
  unset CLAUDE_CODE_MAX_CONTEXT_TOKENS
214
215
  unset CLAUDE_CODE_ENABLE_TELEMETRY
215
216
  unset CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC
217
+ unset ENABLE_CLAUDEAI_MCP_SERVERS
216
218
  unset OTEL_LOGS_EXPORTER
217
219
  unset OTEL_EXPORTER_OTLP_PROTOCOL
218
220
  unset OTEL_EXPORTER_OTLP_LOGS_ENDPOINT
@@ -147,6 +147,9 @@ export CLAUDE_CODE_MAX_CONTEXT_TOKENS="${MAX_CONTEXT_TOKENS}"
147
147
  # Requires Claude Code >= 2.1.152.
148
148
  export CLAUDE_CODE_ENABLE_TELEMETRY="${CLAUDE_CODE_ENABLE_TELEMETRY:-1}"
149
149
  export CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC="${CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC:-1}"
150
+ # claude.ai connectors require subscription OAuth and cannot be used while the
151
+ # Subconscious bearer token and gateway URL are active.
152
+ export ENABLE_CLAUDEAI_MCP_SERVERS=false
150
153
  export OTEL_LOGS_EXPORTER="${OTEL_LOGS_EXPORTER:-otlp}"
151
154
  export OTEL_EXPORTER_OTLP_PROTOCOL="${OTEL_EXPORTER_OTLP_PROTOCOL:-http/json}"
152
155
  export OTEL_EXPORTER_OTLP_LOGS_ENDPOINT="${EFFECTIVE_GATEWAY_URL%/}/v1/logs"
@@ -152,6 +152,13 @@ write_model_catalog() {
152
152
  "visibility": "list",
153
153
  "supported_in_api": true,
154
154
  "priority": 0,
155
+ "service_tiers": [
156
+ {
157
+ "id": "priority",
158
+ "name": "Priority",
159
+ "description": "Route requests through the configured priority service tier"
160
+ }
161
+ ],
155
162
  "availability_nux": null,
156
163
  "upgrade": null,
157
164
  "base_instructions": "You are Codex, a coding agent.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "subconscious-cli",
3
- "version": "4.0.7",
3
+ "version": "4.0.9",
4
4
  "description": "CLI for Subconscious — run Claude Code, Codex, OpenCode, DeepSeek Harness, Cursor, Copilot, and Pi",
5
5
  "bin": {
6
6
  "subc": "bin/cli.js"