@tangle-network/agent-integrations 0.23.1 → 0.25.0

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.
@@ -2,12 +2,12 @@
2
2
 
3
3
  Generated from the current checkout by `node scripts/audit-integration-execution.mjs`.
4
4
 
5
- This audit separates four very different states that were getting conflated:
5
+ This audit separates product contracts from implementation backends:
6
6
 
7
- - **Cataloged**: we know the connector exists and have normalized metadata.
7
+ - **Tangle contract**: the connector has a Tangle-owned action/trigger/auth contract.
8
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.
9
+ - **Native adapter backend**: this repo ships a reviewed direct adapter implementation.
10
+ - **Package runtime backend**: a Tangle runtime service executes the connector package behind the same Tangle contract.
11
11
 
12
12
  ## Summary
13
13
 
@@ -17,15 +17,23 @@ This audit separates four very different states that were getting conflated:
17
17
  | Catalog connectors with runtime package names | 669 |
18
18
  | Catalog actions | 3790 |
19
19
  | Catalog triggers | 998 |
20
- | Catalog triggers with verified upstream names in this repo | 998 |
21
- | Catalog actions with verified upstream action names in this repo | 3790 |
20
+ | Catalog triggers with upstream names | 998 |
21
+ | Catalog actions with upstream action names | 3790 |
22
22
  | Catalog connectors with auth field metadata | 648 |
23
23
  | Custom-auth connectors with auth field metadata | 11 |
24
24
  | Runtime package dependencies declared by this package | 0 |
25
25
  | Setup specs | 142 |
26
26
  | Executable setup specs | 14 |
27
27
  | Catalog/setup-only specs | 128 |
28
- | First-party adapter surfaces | 16 |
28
+ | Tangle first-class contracts | 669 |
29
+ | Contracts with runtime packages | 669 |
30
+ | Contracts with mapped actions | 669 |
31
+ | Contracts with mapped triggers | 669 |
32
+ | Contracts with mapped auth | 669 |
33
+ | Native adapter backends | 10 |
34
+ | Native adapter surfaces shipped | 16 |
35
+ | Package-runtime backends | 659 |
36
+ | Runtime manifest dependencies | 670 |
29
37
  | Tangle catalog connectors exposable behind runtime | 669 |
30
38
  | Tangle catalog actions exposable behind runtime | 3970 |
31
39
 
@@ -55,9 +63,9 @@ Full machine-readable matrix: [integration-execution-matrix.json](./integration-
55
63
  | calendar | 3 |
56
64
  | internal | 3 |
57
65
 
58
- ## First-Party Executable Surfaces
66
+ ## Native Adapter Backends
59
67
 
60
- These are implemented in `src/connectors/adapters` or represented as executable setup specs:
68
+ These are direct in-repo implementations. They are not the only first-class contracts:
61
69
 
62
70
  - `google-calendar`
63
71
  - `google-sheets`
@@ -97,10 +105,13 @@ Executable setup specs:
97
105
 
98
106
  | Flow | Status | Concrete state |
99
107
  | --- | --- | --- |
108
+ | Tangle first-class contracts | Done | 669 connectors have Tangle-owned action/trigger/auth/runtime contracts. |
100
109
  | Connector discovery/catalog search | Done | 669 catalog connectors, 3790 actions, 998 triggers normalized into Tangle catalog shapes. |
101
- | First-party action execution | Done for listed adapters | 16 reviewed adapter surfaces ship from this package. |
110
+ | Native adapter execution | Done for listed native backends | 16 reviewed native adapter surfaces ship from this package; 10 overlap the 669 catalog contracts. |
102
111
  | OAuth/API-key setup metadata | Partial | 142 setup specs exist; 14 are executable setup specs and 128 are catalog/setup-only. |
103
- | Long-tail package action execution | Wiring done; package install/smoke pending | 669 entries have package names and 3790 actions have upstream names. Runtime packages are not bundled into this npm package. |
112
+ | Package-runtime action execution | Wiring done; runtime deployment/smoke pending | 659 contracts use package-runtime backends with package names and 3790 catalog upstream action names. |
113
+ | Runtime dependency manifest | Done | `buildTangleCatalogRuntimePackageManifest()` emits 670 dependencies for a complete package-runtime worker install. |
114
+ | Runtime package coverage audit | Done | `auditTangleCatalogRuntimePackages()` and `tangle-catalog-runtime --audit-packages` verify installed packages, piece exports, exact action mappings, and trigger surfaces in a deployed worker. |
104
115
  | Long-tail credential mapping | Mostly mapped | 648 connectors have auth field metadata. 0 custom-auth connectors still need exact manual auth fields. |
105
116
  | Trigger provider flow | Done structurally | 998 triggers are cataloged, 998 have upstream names, and catalog providers can route subscribe/unsubscribe/normalize hooks. Runtime services still need package-specific trigger hosting. |
106
117
  | 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. |
@@ -110,12 +121,12 @@ Executable setup specs:
110
121
 
111
122
  | Bucket | Count | What it means |
112
123
  | --- | ---: | --- |
113
- | Catalog connectors needing package-runtime verification | 659 | Connector has a known runtime package but is not a first-party adapter here. |
114
- | Catalog connectors with zero verified action mappings | 0 | We normalized action labels, but have not checked the exact runtime action export names into the catalog. |
124
+ | Package-runtime contracts needing deployed runtime smoke verification | 659 | Connector has a Tangle contract and package backend; deployed runtime still needs package-load/live-smoke proof. |
125
+ | Catalog connectors with zero upstream action names | 0 | These entries need catalog action-name mapping before exact package-runtime invocation can work. |
115
126
  | Custom-auth catalog connectors needing manual credential-field mapping | 0 | These are still custom auth and no field names were extracted from source. |
116
127
  | Catalog connectors with triggers needing runtime-service hosting | 288 | Trigger metadata and provider hooks exist; runtime services still need package-specific webhook/polling hosting. |
117
128
 
118
- Examples needing package-runtime verification:
129
+ Examples needing deployed runtime smoke verification:
119
130
 
120
131
  - `activecampaign` -> `@activepieces/piece-activecampaign`
121
132
  - `activepieces` -> `@activepieces/piece-activepieces`
@@ -158,41 +169,36 @@ Examples needing package-runtime verification:
158
169
  - `assembled` -> `@activepieces/piece-assembled`
159
170
  - `assemblyai` -> `@activepieces/piece-assemblyai`
160
171
 
161
- Examples needing manual custom auth mapping:
172
+ Manual custom auth mapping gap: none.
162
173
 
174
+ ## Completion Claims And Remaining Proof Gates
163
175
 
176
+ 1. **Tangle first-class connector contracts are complete.**
177
+ All 669 catalog entries have Tangle-owned contracts. 10 use native adapter backends; 659 use package-runtime backends.
164
178
 
165
- ## What Is Not Done
166
-
167
- 1. **Package runtime installation is not bundled into this npm package.**
168
- 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.
169
-
170
- 2. **Action-name mapping is complete for cataloged actions.**
171
- Done for cataloged actions: the catalog currently has 3790 actions and 3790 verified upstream action-name mappings in the checked-in catalog. The runtime executor uses those names automatically and still accepts explicit `actionAliases` for overrides.
179
+ 2. **Action-name mapping exists for cataloged actions.**
180
+ Done for cataloged actions: the catalog currently has 3790 actions and 3790 upstream action-name mappings in the checked-in catalog. The runtime executor uses those names automatically and still accepts explicit `actionAliases` for overrides. Deployed smoke verification proves those names against the installed packages.
172
181
 
173
182
  3. **Credential field mapping is complete for catalog auth setup.**
174
183
  Auth shapes are api_key: 519, oauth2: 118, none: 21, custom: 11. The catalog now includes auth field metadata for all 648 connectors that require credentials. 0 custom-auth connectors need manual auth-field mapping.
175
184
 
176
- 4. **Triggers are cataloged, not universally hosted.**
177
- There are 998 catalog triggers and 998 upstream trigger names. The provider flow now supports trigger subscribe/unsubscribe/normalize hooks. Runtime services still need package-specific webhook/polling hosting.
185
+ 4. **Trigger contracts are complete; deployed hosting must smoke-test provider mechanics.**
186
+ There are 998 catalog triggers and 998 upstream trigger names. The provider flow supports trigger subscribe/unsubscribe/normalize hooks. Runtime services still need live webhook/polling smoke verification.
178
187
 
179
- 5. **First-party coverage is intentionally smaller than catalog breadth.**
180
- This repo ships 16 first-party surfaces. The other catalog connectors depend on the package-runtime path.
188
+ 5. **Native adapter coverage is intentionally smaller than contract breadth.**
189
+ This repo ships 16 native adapter surfaces. 10 overlap the 669 catalog contracts; the other first-class contracts use package-runtime backends.
181
190
 
182
191
  ## Concrete Launch Interpretation
183
192
 
184
- - It is accurate to say: **we have a 669-connector Tangle catalog and a generic runtime execution path.**
185
- - 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.**
186
- - 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.**
187
-
188
- ## Next Gap To Close
193
+ - It is accurate to say: **we have 669 first-class Tangle integration contracts.**
194
+ - It is accurate to say: **all product code can use one IntegrationHub/tool contract across native and package-runtime backends.**
195
+ - It is accurate to say: **deployed runtime smoke verification is the remaining proof step for package-runtime connectors.**
189
196
 
190
- 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:
197
+ ## Runtime Proof Gate
191
198
 
192
- - package loads
193
- - package installed in the runtime service
194
- - package load verified
195
- - normalized action maps to real action
196
- - auth shape identified or marked as manual
197
- - dry-run invocation possible
198
- - live smoke credential available
199
+ Run `tangle-catalog-runtime --audit-packages` inside the deployed runtime image
200
+ after installing the manifest from `--print-package-json` or
201
+ `--print-pnpm-add`. That produces the concrete package-load/action-map/trigger
202
+ surface matrix for the exact runtime image products will call. Live provider
203
+ smoke tests still require real OAuth/API-key credentials from the product
204
+ environment.