@indykish/oracle 0.9.1 → 0.9.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.
@@ -98,7 +98,7 @@ program.hook('preAction', (thisCommand) => {
98
98
  });
99
99
  program
100
100
  .name('oracle')
101
- .description('One-shot GPT-5.2 Pro / GPT-5.2 / GPT-5.1 Codex tool for hard questions that benefit from large file context and server-side search.')
101
+ .description('One-shot Claude-4.6-Sonnet / Claude-4.6-Opus / GPT-5.3-Pro / GPT-5.3 tool for hard questions that benefit from large file context and server-side search.')
102
102
  .version(VERSION)
103
103
  .argument('[prompt]', 'Prompt text (shorthand for --prompt).')
104
104
  .option('-p, --prompt <text>', 'User prompt to send to the model.')
@@ -1,5 +1,5 @@
1
1
  export const CHATGPT_URL = 'https://chatgpt.com/';
2
- export const DEFAULT_MODEL_TARGET = 'GPT-5.2 Pro';
2
+ export const DEFAULT_MODEL_TARGET = 'GPT-5.3 Pro';
3
3
  export const DEFAULT_MODEL_STRATEGY = 'select';
4
4
  export const COOKIE_URLS = ['https://chatgpt.com', 'https://chat.openai.com', 'https://atlas.openai.com'];
5
5
  export const INPUT_SELECTORS = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indykish/oracle",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "CLI wrapper around OpenAI Responses API with GPT-5.3 Pro, GPT-5.3, GPT-5.2, Gemini-3.5-Pro, Claude-4.6-Sonnet/Opus, and Grok-4.2 support.",
5
5
  "type": "module",
6
6
  "main": "dist/bin/oracle-cli.js",
@@ -40,7 +40,7 @@
40
40
  ],
41
41
  "repository": {
42
42
  "type": "git",
43
- "url": "git+https://github.com/steipete/oracle.git"
43
+ "url": "git+https://github.com/indykish/oracle.git"
44
44
  },
45
45
  "engines": {
46
46
  "node": ">=22"
@@ -57,9 +57,9 @@
57
57
  "author": "",
58
58
  "license": "MIT",
59
59
  "bugs": {
60
- "url": "https://github.com/steipete/oracle/issues"
60
+ "url": "https://github.com/indykish/oracle/issues"
61
61
  },
62
- "homepage": "https://github.com/steipete/oracle#readme",
62
+ "homepage": "https://github.com/indykish/oracle#readme",
63
63
  "dependencies": {
64
64
  "@anthropic-ai/tokenizer": "^0.0.4",
65
65
  "@google/genai": "^1.41.0",