@tangle-network/agent-integrations 0.6.0 → 0.7.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.
- package/README.md +17 -0
- package/dist/index.d.ts +56 -1
- package/dist/index.js +547 -0
- package/dist/index.js.map +1 -1
- package/docs/integration-coverage-checklist.md +9 -6
- package/package.json +1 -1
|
@@ -15,7 +15,8 @@ Goal: cover the integrations that make agents useful for 99% of practical produc
|
|
|
15
15
|
- [x] One normalized connector contract for apps, sandboxes, and agents.
|
|
16
16
|
- [x] Central sandbox invocation envelope validation.
|
|
17
17
|
- [x] Coverage catalog for 100+ high-value integrations.
|
|
18
|
-
- [
|
|
18
|
+
- [x] Builder API consumes the coverage catalog for app planning.
|
|
19
|
+
- [x] Declarative REST adapter factory for fast first-party promotion of REST-shaped APIs.
|
|
19
20
|
- [ ] Generated sandbox apps can request missing connections from the catalog.
|
|
20
21
|
- [ ] Live smoke credentials exist for Tier 0 connectors.
|
|
21
22
|
- [ ] Tier 0 connector failures are classified by auth, scope, rate-limit, provider outage, validation, approval, and conflict.
|
|
@@ -39,11 +40,11 @@ Goal: cover the integrations that make agents useful for 99% of practical produc
|
|
|
39
40
|
- [ ] Google Docs
|
|
40
41
|
- [ ] Microsoft Teams
|
|
41
42
|
- [ ] OneDrive
|
|
42
|
-
- [
|
|
43
|
-
- [
|
|
43
|
+
- [x] Airtable
|
|
44
|
+
- [x] Salesforce
|
|
44
45
|
- [ ] Linear
|
|
45
46
|
- [ ] Jira
|
|
46
|
-
- [
|
|
47
|
+
- [x] GitHub
|
|
47
48
|
- [ ] Zendesk
|
|
48
49
|
- [ ] Intercom
|
|
49
50
|
- [ ] QuickBooks
|
|
@@ -80,7 +81,9 @@ The exhaustive checklist is generated from `integrationCoverageChecklistMarkdown
|
|
|
80
81
|
|
|
81
82
|
- [ ] Wire Builder to show Tier 0 missing connections from the coverage catalog.
|
|
82
83
|
- [ ] Add Gmail first-party adapter.
|
|
83
|
-
- [
|
|
84
|
-
- [
|
|
84
|
+
- [x] Add GitHub first-party adapter.
|
|
85
|
+
- [x] Add Salesforce or Zendesk first-party adapter.
|
|
86
|
+
- [x] Add reusable declarative REST adapter factory.
|
|
87
|
+
- [x] Add Airtable, GitLab, and Asana via declarative REST.
|
|
85
88
|
- [ ] Add live smoke-test harness that skips only when explicit credentials are absent.
|
|
86
89
|
- [ ] Add gateway sync job for Nango/Pipedream/Activepieces metadata.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tangle-network/agent-integrations",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "Vendor-neutral integration contracts and runtime helpers for sandbox and agent apps.",
|
|
5
5
|
"homepage": "https://github.com/tangle-network/agent-integrations#readme",
|
|
6
6
|
"repository": {
|