titan-agent 6.2.0 → 6.2.1
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 +4 -4
- package/dist/agent/commandPost.js +3 -2
- package/dist/agent/commandPost.js.map +1 -1
- package/dist/gateway/routes/telephony.js +75 -19
- package/dist/gateway/routes/telephony.js.map +1 -1
- package/dist/skills/builtin/phone_call.js +23 -1
- package/dist/skills/builtin/phone_call.js.map +1 -1
- package/dist/telephony/phonePolicy.js +19 -3
- package/dist/telephony/phonePolicy.js.map +1 -1
- package/dist/utils/constants.js +1 -1
- package/dist/utils/constants.js.map +1 -1
- package/package.json +1 -1
- package/ui/dist/sw.js +1 -1
package/README.md
CHANGED
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
</p>
|
|
27
27
|
|
|
28
28
|
<p align="center">
|
|
29
|
-
<a href="#-the-numbers"><img src="https://img.shields.io/badge/version-6.2.
|
|
29
|
+
<a href="#-the-numbers"><img src="https://img.shields.io/badge/version-6.2.1-blueviolet" alt="v6.2.1"/></a>
|
|
30
30
|
<a href="#-36-llm-providers"><img src="https://img.shields.io/badge/providers-36-purple" alt="36 Providers"/></a>
|
|
31
31
|
<a href="#-the-numbers"><img src="https://img.shields.io/badge/tools-248%2B-orange" alt="248+ Tools"/></a>
|
|
32
32
|
<a href="#-build-anything-on-demand"><img src="https://img.shields.io/badge/widgets-109-pink" alt="109 Widgets"/></a>
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
|
|
47
47
|
## 🪵 NEW in v6.1 — Mission Chat + Desk view
|
|
48
48
|
|
|
49
|
-
> Status: `v6.2.
|
|
49
|
+
> Status: `v6.2.1` — TITAN Phone Desk safety hotfix: optional Dograh sidecar integration for Twilio/Telnyx voice workflows, approval-gated outbound calls, inbound admin/receptionist webhooks, opt-out enforcement, receipts, and a dashboard panel.
|
|
50
50
|
> Install with `npm i -g titan-agent` (or `npm update -g titan-agent`).
|
|
51
51
|
> The v6.0 "Presence" feature set below still applies — v6.1.0 layers
|
|
52
52
|
> a beautiful new surface on top of it.
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
|
|
56
56
|
TITAN can now connect to a self-hosted or hosted Dograh sidecar for Twilio/Telnyx-powered phone workflows without storing carrier credentials directly in TITAN. The integration is optional and disabled by default.
|
|
57
57
|
|
|
58
|
-
What is verified in v6.2.
|
|
58
|
+
What is verified in v6.2.1:
|
|
59
59
|
|
|
60
60
|
- `GET /api/telephony/dograh/status` checks Dograh reachability and redacts the API key.
|
|
61
61
|
- `GET /api/telephony/dograh/workflows` lists active Dograh workflows.
|
|
@@ -445,7 +445,7 @@ Start in supervised mode. Review what it does. Don't give it access to systems y
|
|
|
445
445
|
|
|
446
446
|
| Thing | Count | Where to verify |
|
|
447
447
|
| ---------------------------------- | -------------------------------- | ---------------------------------------------- |
|
|
448
|
-
| **Version** | 6.2.
|
|
448
|
+
| **Version** | 6.2.1 | `package.json` + `src/utils/constants.ts` |
|
|
449
449
|
| **LLM providers** | 36 (4 native + 32 OpenAI-compat) | `src/providers/openai_compat.ts` |
|
|
450
450
|
| **Channel adapters** | 19 | `src/channels/*.ts` (minus base) |
|
|
451
451
|
| **Built-in skill modules** | 91 files | `src/skills/builtin/` |
|
|
@@ -750,14 +750,15 @@ function coalesceKey(opts) {
|
|
|
750
750
|
const goalId = typeof opts.payload.goalId === "string" ? opts.payload.goalId : "";
|
|
751
751
|
const model = typeof opts.payload.model === "string" ? opts.payload.model : "";
|
|
752
752
|
const title = typeof opts.payload.title === "string" ? opts.payload.title : "";
|
|
753
|
-
const identity = goalId || model || title;
|
|
753
|
+
const identity = typeof opts.payload.approvalIdentity === "string" ? opts.payload.approvalIdentity : goalId || model || title;
|
|
754
754
|
return `${opts.type}|${opts.requestedBy}|${kind}|${identity}`;
|
|
755
755
|
}
|
|
756
756
|
function createApproval(opts) {
|
|
757
757
|
let autoApproveDeferred = false;
|
|
758
758
|
try {
|
|
759
759
|
const auto = config?.autoApprove;
|
|
760
|
-
|
|
760
|
+
const neverAutoApprove = opts.payload?.neverAutoApprove === true || opts.payload?.category === "telephony_outbound_call";
|
|
761
|
+
if (auto?.enabled && !neverAutoApprove) {
|
|
761
762
|
const rules = auto.rules || [];
|
|
762
763
|
if (shouldAutoApprove({ type: opts.type, payload: opts.payload }, { enabled: true, rules })) {
|
|
763
764
|
autoApproveDeferred = true;
|