@tangle-network/agent-integrations 0.22.0 → 0.22.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 CHANGED
@@ -208,6 +208,9 @@ The package deliberately avoids vendor lock-in.
208
208
  - Treat catalog coverage and executable coverage as different states.
209
209
 
210
210
  See [Provider Decision Matrix](./docs/provider-decision-matrix.md).
211
+ See [Integration Execution Audit](./docs/integration-execution-audit.md) for
212
+ the exact current split between catalog, setup, first-party execution, and
213
+ package-runtime execution.
211
214
 
212
215
  ## Executable Coverage
213
216
 
@@ -0,0 +1,233 @@
1
+ # Integration Execution Audit
2
+
3
+ Generated from the current checkout by `node scripts/audit-integration-execution.mjs`.
4
+
5
+ This audit separates four very different states that were getting conflated:
6
+
7
+ - **Cataloged**: we know the connector exists and have normalized metadata.
8
+ - **Setup-ready**: we have setup/auth/runbook metadata for product UI and admin configuration.
9
+ - **First-party executable**: this repo ships a reviewed adapter implementation.
10
+ - **Package-runtime executable**: a Tangle runtime service has the connector package installed, credentials resolvable, and action-name mapping verified.
11
+
12
+ ## Summary
13
+
14
+ | Item | Count |
15
+ | --- | ---: |
16
+ | Catalog connectors | 669 |
17
+ | Catalog connectors with runtime package names | 669 |
18
+ | Catalog actions | 3783 |
19
+ | Catalog triggers | 999 |
20
+ | Catalog actions with verified upstream action names in this repo | 0 |
21
+ | Runtime package dependencies declared by this package | 0 |
22
+ | Setup specs | 142 |
23
+ | Executable setup specs | 14 |
24
+ | Catalog/setup-only specs | 128 |
25
+ | First-party adapter surfaces | 16 |
26
+ | Tangle catalog connectors exposable behind runtime | 669 |
27
+ | Tangle catalog actions exposable behind runtime | 3963 |
28
+
29
+ Full machine-readable matrix: [integration-execution-matrix.json](./integration-execution-matrix.json).
30
+
31
+ ## Auth Breakdown
32
+
33
+ | Auth | Connectors |
34
+ | --- | --- |
35
+ | api_key | 334 |
36
+ | custom | 248 |
37
+ | oauth2 | 69 |
38
+ | none | 18 |
39
+
40
+ ## Category Breakdown
41
+
42
+ | Category | Connectors |
43
+ | --- | --- |
44
+ | workflow | 296 |
45
+ | webhook | 91 |
46
+ | crm | 63 |
47
+ | storage | 50 |
48
+ | email | 49 |
49
+ | chat | 48 |
50
+ | docs | 23 |
51
+ | calendar | 22 |
52
+ | database | 16 |
53
+ | internal | 11 |
54
+
55
+ ## First-Party Executable Surfaces
56
+
57
+ These are implemented in `src/connectors/adapters` or represented as executable setup specs:
58
+
59
+ - `google-calendar`
60
+ - `google-sheets`
61
+ - `microsoft-calendar`
62
+ - `hubspot`
63
+ - `slack`
64
+ - `notion-database`
65
+ - `twilio-sms`
66
+ - `stripe-pack`
67
+ - `webhook`
68
+ - `stripe`
69
+ - `slack-inbound`
70
+ - `github`
71
+ - `gitlab`
72
+ - `airtable`
73
+ - `asana`
74
+ - `salesforce`
75
+
76
+ Executable setup specs:
77
+
78
+ - `airtable`
79
+ - `asana`
80
+ - `github`
81
+ - `gitlab`
82
+ - `google-calendar`
83
+ - `google-sheets`
84
+ - `hubspot`
85
+ - `microsoft-calendar`
86
+ - `notion-database`
87
+ - `salesforce`
88
+ - `slack`
89
+ - `stripe-pack`
90
+ - `twilio-sms`
91
+ - `webhook`
92
+
93
+ ## Flow Readiness
94
+
95
+ | Flow | Status | Concrete state |
96
+ | --- | --- | --- |
97
+ | Connector discovery/catalog search | Done | 669 catalog connectors, 3783 actions, 999 triggers normalized into Tangle catalog shapes. |
98
+ | First-party action execution | Done for listed adapters | 16 reviewed adapter surfaces ship from this package. |
99
+ | OAuth/API-key setup metadata | Partial | 142 setup specs exist; 14 are executable setup specs and 128 are catalog/setup-only. |
100
+ | Long-tail package action execution | Runtime path exists; coverage unverified | 669 entries have package names, but runtime packages are not bundled and 0 catalog actions have verified upstream action mappings. |
101
+ | Long-tail credential mapping | Partial | api_key: 334, oauth2: 69, custom: 248, none: 18. Custom connectors need per-package credential shaping before execution can be claimed. |
102
+ | Trigger hosting/subscription | Partial | 999 triggers are cataloged. Runtime action invocation exists; universal trigger install/hosting is not done. |
103
+ | Sandbox/app invocation envelope | Done | The library has capability bundles, invocation envelopes, policy checks, guard hooks, signed catalog runtime HTTP calls, and generated-app client helpers. |
104
+ | Live provider smoke tests | Not globally done | First-party adapters can be tested by consumers with credentials; long-tail smoke matrix is not generated yet. |
105
+
106
+ ## Concrete Not-Done Buckets
107
+
108
+ | Bucket | Count | What it means |
109
+ | --- | ---: | --- |
110
+ | Catalog connectors needing package-runtime verification | 659 | Connector has a known runtime package but is not a first-party adapter here. |
111
+ | Catalog connectors with zero verified action mappings | 570 | We normalized action labels, but have not checked the exact runtime action export names into the catalog. |
112
+ | Custom-auth catalog connectors needing credential shape mapping | 248 | A generic OAuth/API-key form is not enough; the runtime must shape auth exactly as the package expects. |
113
+ | Catalog connectors with triggers needing hosted trigger support | 288 | Trigger metadata exists, but trigger subscription/webhook execution is not universally implemented. |
114
+
115
+ Examples needing package-runtime verification:
116
+
117
+ - `activecampaign` -> `@activepieces/piece-activecampaign`
118
+ - `activepieces` -> `@activepieces/piece-activepieces`
119
+ - `actualbudget` -> `@activepieces/piece-actualbudget`
120
+ - `acuity-scheduling` -> `@activepieces/piece-acuity-scheduling`
121
+ - `acumbamail` -> `@activepieces/piece-acumbamail`
122
+ - `afforai` -> `@activepieces/piece-afforai`
123
+ - `agentx` -> `@activepieces/piece-agentx`
124
+ - `ai` -> `@activepieces/piece-ai`
125
+ - `aianswer` -> `@activepieces/piece-aianswer`
126
+ - `aidbase` -> `@activepieces/piece-aidbase`
127
+ - `aiprise` -> `@activepieces/piece-aiprise`
128
+ - `air-ops` -> `@activepieces/piece-air-ops`
129
+ - `aircall` -> `@activepieces/piece-aircall`
130
+ - `airparser` -> `@activepieces/piece-airparser`
131
+ - `airtop` -> `@activepieces/piece-airtop`
132
+ - `alai` -> `@activepieces/piece-alai`
133
+ - `algolia` -> `@activepieces/piece-algolia`
134
+ - `alt-text-ai` -> `@activepieces/piece-alt-text-ai`
135
+ - `alttextify` -> `@activepieces/piece-alttextify`
136
+ - `amazon-bedrock` -> `@activepieces/piece-amazon-bedrock`
137
+ - `amazon-s3` -> `@activepieces/piece-amazon-s3`
138
+ - `amazon-secrets-manager` -> `@activepieces/piece-amazon-secrets-manager`
139
+ - `amazon-ses` -> `@activepieces/piece-amazon-ses`
140
+ - `amazon-sns` -> `@activepieces/piece-amazon-sns`
141
+ - `amazon-sqs` -> `@activepieces/piece-amazon-sqs`
142
+ - `amazon-textract` -> `@activepieces/piece-amazon-textract`
143
+ - `aminos` -> `@activepieces/piece-aminos`
144
+ - `ampeco` -> `@activepieces/piece-ampeco`
145
+ - `anyhook-graphql` -> `@activepieces/piece-anyhook-graphql`
146
+ - `anyhook-websocket` -> `@activepieces/piece-anyhook-websocket`
147
+ - `apify` -> `@activepieces/piece-apify`
148
+ - `apitable` -> `@activepieces/piece-apitable`
149
+ - `apitemplate-io` -> `@activepieces/piece-apitemplate-io`
150
+ - `apollo` -> `@activepieces/piece-apollo`
151
+ - `appfollow` -> `@activepieces/piece-appfollow`
152
+ - `ashby` -> `@activepieces/piece-ashby`
153
+ - `ask-handle` -> `@activepieces/piece-ask-handle`
154
+ - `asknews` -> `@activepieces/piece-asknews`
155
+ - `assembled` -> `@activepieces/piece-assembled`
156
+ - `assemblyai` -> `@activepieces/piece-assemblyai`
157
+
158
+ Examples needing custom auth mapping:
159
+
160
+ - `activecampaign` -> `@activepieces/piece-activecampaign`
161
+ - `acumbamail` -> `@activepieces/piece-acumbamail`
162
+ - `afforai` -> `@activepieces/piece-afforai`
163
+ - `agentx` -> `@activepieces/piece-agentx`
164
+ - `aiprise` -> `@activepieces/piece-aiprise`
165
+ - `aircall` -> `@activepieces/piece-aircall`
166
+ - `airparser` -> `@activepieces/piece-airparser`
167
+ - `alt-text-ai` -> `@activepieces/piece-alt-text-ai`
168
+ - `alttextify` -> `@activepieces/piece-alttextify`
169
+ - `amazon-bedrock` -> `@activepieces/piece-amazon-bedrock`
170
+ - `amazon-s3` -> `@activepieces/piece-amazon-s3`
171
+ - `amazon-secrets-manager` -> `@activepieces/piece-amazon-secrets-manager`
172
+ - `amazon-ses` -> `@activepieces/piece-amazon-ses`
173
+ - `amazon-textract` -> `@activepieces/piece-amazon-textract`
174
+ - `anyhook-graphql` -> `@activepieces/piece-anyhook-graphql`
175
+ - `anyhook-websocket` -> `@activepieces/piece-anyhook-websocket`
176
+ - `apollo` -> `@activepieces/piece-apollo`
177
+ - `ask-handle` -> `@activepieces/piece-ask-handle`
178
+ - `assembled` -> `@activepieces/piece-assembled`
179
+ - `assemblyai` -> `@activepieces/piece-assemblyai`
180
+ - `avian` -> `@activepieces/piece-avian`
181
+ - `avoma` -> `@activepieces/piece-avoma`
182
+ - `azure-blob-storage` -> `@activepieces/piece-azure-blob-storage`
183
+ - `azure-openai` -> `@activepieces/piece-azure-openai`
184
+ - `barcode-lookup` -> `@activepieces/piece-barcode-lookup`
185
+ - `baremetrics` -> `@activepieces/piece-baremetrics`
186
+ - `beamer` -> `@activepieces/piece-beamer`
187
+ - `bigin-by-zoho` -> `@activepieces/piece-bigin-by-zoho`
188
+ - `billplz` -> `@activepieces/piece-billplz`
189
+ - `bland-ai` -> `@activepieces/piece-bland-ai`
190
+ - `bluesky` -> `@activepieces/piece-bluesky`
191
+ - `browserless` -> `@activepieces/piece-browserless`
192
+ - `bumpups` -> `@activepieces/piece-bumpups`
193
+ - `bursty-ai` -> `@activepieces/piece-bursty-ai`
194
+ - `buttondown` -> `@activepieces/piece-buttondown`
195
+ - `camb-ai` -> `@activepieces/piece-camb-ai`
196
+ - `campaign-monitor` -> `@activepieces/piece-campaign-monitor`
197
+ - `canny` -> `@activepieces/piece-canny`
198
+ - `capsule-crm` -> `@activepieces/piece-capsule-crm`
199
+ - `cashfree-payments` -> `@activepieces/piece-cashfree-payments`
200
+
201
+ ## What Is Not Done
202
+
203
+ 1. **Package runtime installation is not bundled into this npm package.**
204
+ All 669 catalog entries have runtime package names, but `package.json` intentionally declares 0 long-tail runtime packages. The runtime service must install the packages it wants to execute.
205
+
206
+ 2. **Action-name mapping is not complete.**
207
+ The catalog currently has 3783 actions and 0 verified upstream action-name mappings in the checked-in catalog. The runtime executor supports `actionAliases`, but production aliases must be generated/verified before claiming every action works.
208
+
209
+ 3. **Credential shape mapping is not complete for every connector.**
210
+ Auth shapes are custom: 248, api_key: 334, oauth2: 69, none: 18. The runtime must map each user connection/secret into the shape expected by that package.
211
+
212
+ 4. **Triggers are cataloged, not universally hosted.**
213
+ There are 999 catalog triggers. The current Tangle catalog runtime executes actions. Trigger subscription/webhook hosting still needs per-provider runtime support.
214
+
215
+ 5. **First-party coverage is intentionally smaller than catalog breadth.**
216
+ This repo ships 16 first-party surfaces. The other catalog connectors depend on the package-runtime path.
217
+
218
+ ## Concrete Launch Interpretation
219
+
220
+ - It is accurate to say: **we have a 669-connector Tangle catalog and a generic runtime execution path.**
221
+ - It is accurate to say: **a connector can work with minimal app code when its runtime package is installed, auth is resolvable, and action aliases are configured.**
222
+ - It is not accurate to say: **all 669 connectors are guaranteed to work out of the box today with zero runtime package/action/auth work.**
223
+
224
+ ## Next Gap To Close
225
+
226
+ Build a runtime coverage generator that installs/imports each package in isolation, extracts real action names, writes `actionAliases`, and emits a pass/fail matrix per connector:
227
+
228
+ - package loads
229
+ - action list extracted
230
+ - normalized action maps to real action
231
+ - auth shape identified
232
+ - dry-run invocation possible
233
+ - live smoke credential available