octto 0.1.2 → 0.1.3

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
@@ -2,24 +2,11 @@
2
2
 
3
3
  An interactive browser UI for AI brainstorming. Stop typing in terminals. Start clicking in browsers.
4
4
 
5
- ## The Problem
6
5
 
7
- AI brainstorming today happens in the terminal:
8
- ```
9
- Agent: What framework do you want?
10
- You: *types* React
11
- Agent: *thinks for 10 seconds*
12
- Agent: What about styling?
13
- You: *types* Tailwind
14
- Agent: *thinks*
15
- ...repeat for 10 minutes...
16
- ```
17
6
 
18
- Slow. Tedious. One question at a time.
7
+ https://github.com/user-attachments/assets/9ba8868d-16f3-4451-9b73-6b7e1fc54655
19
8
 
20
- ## The Solution
21
9
 
22
- **A browser window with visual questions you can answer in seconds.**
23
10
 
24
11
  When you describe your idea, octto opens an interactive UI:
25
12
 
package/dist/index.js CHANGED
@@ -14,7 +14,7 @@ var __export = (target, all) => {
14
14
  var agent = {
15
15
  description: "Analyzes a request and creates exploration branches with scopes",
16
16
  mode: "subagent",
17
- model: "anthropic/claude-opus-4-5",
17
+ model: "openai/gpt-5.2-codex",
18
18
  temperature: 0.5,
19
19
  prompt: `<purpose>
20
20
  Analyze the user's request and create 2-4 exploration branches.
@@ -178,7 +178,7 @@ Plan review. config: { question, sections: [{id, title, content}] }
178
178
  var agent2 = {
179
179
  description: "Runs interactive brainstorming sessions using branch-based exploration",
180
180
  mode: "primary",
181
- model: "anthropic/claude-opus-4-5",
181
+ model: "openai/gpt-5.2-codex",
182
182
  temperature: 0.7,
183
183
  prompt: `<purpose>
184
184
  Run brainstorming sessions using branch-based exploration.
@@ -241,7 +241,7 @@ After end_brainstorm, write to docs/plans/YYYY-MM-DD-{topic}-design.md with:
241
241
  var agent3 = {
242
242
  description: "Evaluates branch Q&A and decides whether to ask more or complete",
243
243
  mode: "subagent",
244
- model: "anthropic/claude-opus-4-5",
244
+ model: "openai/gpt-5.2-codex",
245
245
  temperature: 0.5,
246
246
  prompt: `<purpose>
247
247
  You evaluate a brainstorming branch's Q&A history and decide:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "octto",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "OpenCode plugin that turns rough ideas into designs through branch-based exploration",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",