@syntero/orca-cli 1.3.40 → 1.3.42
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prompts.d.ts","sourceRoot":"","sources":["../../src/assistant/prompts.ts"],"names":[],"mappings":"AAAA,wBAAgB,eAAe,CAAC,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,
|
|
1
|
+
{"version":3,"file":"prompts.d.ts","sourceRoot":"","sources":["../../src/assistant/prompts.ts"],"names":[],"mappings":"AAAA,wBAAgB,eAAe,CAAC,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CAgSzD;AAGD,eAAO,MAAM,aAAa,QAAoB,CAAC;AAE/C;;;GAGG;AACH,eAAO,MAAM,oBAAoB,khCAiBF,CAAC;AAEhC;;GAEG;AACH,eAAO,MAAM,uBAAuB,yIAAyI,CAAC"}
|
|
@@ -251,6 +251,28 @@ When a user asks to deploy an agent locally or set up a local vLLM server:
|
|
|
251
251
|
- **Connection refused**: Check docker ps, ensure port 8000 is exposed
|
|
252
252
|
- **Adapter not found**: Verify path has adapter_config.json
|
|
253
253
|
|
|
254
|
+
## Syslog / SOC Integration
|
|
255
|
+
When a customer asks to send logs to their SOC, SIEM, or syslog collector:
|
|
256
|
+
|
|
257
|
+
1. Ask for three values:
|
|
258
|
+
- **SYSLOG_HOST** (required): IP or hostname of their syslog collector
|
|
259
|
+
- **SYSLOG_PORT** (optional, default 514): collector port
|
|
260
|
+
- **SYSLOG_PROTOCOL** (optional, default udp): "udp" or "tcp" (use tcp for reliable delivery)
|
|
261
|
+
2. Edit .env and set the three variables
|
|
262
|
+
3. Run \`docker compose up -d --force-recreate backend\` (restart alone won't re-read .env)
|
|
263
|
+
4. Verify with: \`docker exec <backend-container> env | grep SYSLOG\`
|
|
264
|
+
|
|
265
|
+
Two event streams are emitted:
|
|
266
|
+
- **syntero.audit** — logins, role changes, invites, API key operations (security events)
|
|
267
|
+
- **syntero.activity** — solution function executions, publish/unpublish, errors (usage events)
|
|
268
|
+
|
|
269
|
+
Both are JSON-structured over syslog, facility LOG_AUTH. Example message:
|
|
270
|
+
\`\`\`json
|
|
271
|
+
{"source": "syntero.audit", "action": "LOGIN", "user_email": "alice@co.com", "org_id": "org-acme", "ip_address": "192.168.1.50"}
|
|
272
|
+
\`\`\`
|
|
273
|
+
|
|
274
|
+
If SYSLOG_HOST is not set, syslog is completely disabled with zero overhead.
|
|
275
|
+
|
|
254
276
|
## Critical Behaviors (MUST FOLLOW)
|
|
255
277
|
1. **NEVER ask users to run commands you can run yourself** - You have full shell access
|
|
256
278
|
2. **VERIFY each step before proceeding**:
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prompts.js","sourceRoot":"","sources":["../../src/assistant/prompts.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,eAAe,CAAC,QAAiB;IAC/C,MAAM,YAAY,GAAG,QAAQ,KAAK,aAAa,CAAC;IAEhD,MAAM,aAAa,GAAG,YAAY;QAChC,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mDA6B6C;QAC/C,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;kDA2B4C,CAAC;IAEjD,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0IP,aAAa
|
|
1
|
+
{"version":3,"file":"prompts.js","sourceRoot":"","sources":["../../src/assistant/prompts.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,eAAe,CAAC,QAAiB;IAC/C,MAAM,YAAY,GAAG,QAAQ,KAAK,aAAa,CAAC;IAEhD,MAAM,aAAa,GAAG,YAAY;QAChC,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mDA6B6C;QAC/C,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;kDA2B4C,CAAC;IAEjD,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0IP,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsFd,CAAC;AACF,CAAC;AAED,iFAAiF;AACjF,MAAM,CAAC,MAAM,aAAa,GAAG,eAAe,EAAE,CAAC;AAE/C;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAAG;;;;;;;;;;;;;;;;;+BAiBL,CAAC;AAEhC;;GAEG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG,sIAAsI,CAAC"}
|