@solar_orb/agent_orb 0.1.3 → 0.1.4

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
@@ -63,5 +63,5 @@ For Windows-host testing, prefer either:
63
63
 
64
64
  ```powershell
65
65
  cd $env:TEMP\agent-orb-npx
66
- npx --yes .\solar_orb-agent_orb-0.1.3.tgz --help
66
+ npx --yes .\solar_orb-agent_orb-0.1.4.tgz --help
67
67
  ```
package/dist/config.js CHANGED
@@ -14,7 +14,7 @@ export function writeConfig(configDir, selectedAdapters, runtime = runtimeConfig
14
14
  fs.mkdirSync(configDir, { recursive: true });
15
15
  const configPath = path.join(configDir, 'config.toml');
16
16
  const enabled = new Set(selectedAdapters.map((adapter) => adapter.name));
17
- const content = `# Generated by npx agent_orb\n\n[install]\nmethod = "npx"\nversion = "0.1.3"\n\n[adapters.codex]\nenabled = ${enabled.has('codex')}\nbinary = "codex"\nwrapper = "agent_orb-codex"\n\n[adapters.claude]\nenabled = ${enabled.has('claude')}\nbinary = "claude"\nwrapper = "agent_orb-claude"\n\n[daemon]\nhost = "${runtime.daemonHost}"\nport = ${runtime.daemonPort}\nauto_start = true\n\n[orb]\nposition = "top-right"\nsize = 36\nopacity = 0.88\nalways_on_top = true\nclick_through = false\n\n[colors]\ndisconnected = "#6B7280"\nidle = "#9CA3AF"\nstarting = "#60A5FA"\nactive = "#3B82F6"\nthinking_like = "#8B5CF6"\nwaiting_input = "#FBBF24"\ncompleted = "#22C55E"\nerror = "#EF4444"\nwarning = "#F97316"\n\n[behavior]\nsilent_threshold_seconds = 20\nstuck_threshold_seconds = 180\ncompleted_hold_seconds = 10\nerror_requires_click_to_clear = true\n\n[privacy]\ninclude_output_sample = false\nmax_sample_chars = 512\n`;
17
+ const content = `# Generated by npx agent_orb\n\n[install]\nmethod = "npx"\nversion = "0.1.4"\n\n[adapters.codex]\nenabled = ${enabled.has('codex')}\nbinary = "codex"\nwrapper = "agent_orb-codex"\n\n[adapters.claude]\nenabled = ${enabled.has('claude')}\nbinary = "claude"\nwrapper = "agent_orb-claude"\n\n[daemon]\nhost = "${runtime.daemonHost}"\nport = ${runtime.daemonPort}\nauto_start = true\n\n[orb]\nposition = "top-right"\nsize = 36\nopacity = 0.88\nalways_on_top = true\nclick_through = false\n\n[colors]\ndisconnected = "#6B7280"\nidle = "#9CA3AF"\nstarting = "#60A5FA"\nactive = "#3B82F6"\nthinking_like = "#8B5CF6"\nwaiting_input = "#FBBF24"\ncompleted = "#22C55E"\nerror = "#EF4444"\nwarning = "#F97316"\n\n[behavior]\nsilent_threshold_seconds = 20\nstuck_threshold_seconds = 180\ncompleted_hold_seconds = 10\nerror_requires_click_to_clear = true\n\n[privacy]\ninclude_output_sample = false\nmax_sample_chars = 512\n`;
18
18
  fs.writeFileSync(configPath, content, 'utf8');
19
19
  return configPath;
20
20
  }
package/dist/index.js CHANGED
@@ -34,7 +34,7 @@ async function main() {
34
34
  case 'version':
35
35
  case '--version':
36
36
  case '-v':
37
- console.log('agent_orb bootstrapper 0.1.3');
37
+ console.log('agent_orb bootstrapper 0.1.4');
38
38
  break;
39
39
  case 'help':
40
40
  case '--help':
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solar_orb/agent_orb",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Agent Orb local bootstrapper",
5
5
  "type": "module",
6
6
  "config": {