opc-agent 4.0.16 → 4.0.17

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.
@@ -2310,13 +2310,8 @@
2310
2310
  let frCreatedAgentId = null;
2311
2311
 
2312
2312
  async function checkFirstRun() {
2313
- try {
2314
- const res = await fetch(`${API}/api/first-run/status`);
2315
- const data = await res.json();
2316
- if (data.firstRun) {
2317
- showFirstRunWizard(data);
2318
- }
2319
- } catch {}
2313
+ // Skip first-run wizard — agents are configured via init
2314
+ return;
2320
2315
  }
2321
2316
 
2322
2317
  function showFirstRunWizard(data) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opc-agent",
3
- "version": "4.0.16",
3
+ "version": "4.0.17",
4
4
  "description": "Open Agent Framework — Build, test, and run AI Agents for business workstations",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -2310,13 +2310,8 @@
2310
2310
  let frCreatedAgentId = null;
2311
2311
 
2312
2312
  async function checkFirstRun() {
2313
- try {
2314
- const res = await fetch(`${API}/api/first-run/status`);
2315
- const data = await res.json();
2316
- if (data.firstRun) {
2317
- showFirstRunWizard(data);
2318
- }
2319
- } catch {}
2313
+ // Skip first-run wizard — agents are configured via init
2314
+ return;
2320
2315
  }
2321
2316
 
2322
2317
  function showFirstRunWizard(data) {