@integrity-labs/agt-cli 0.28.196 → 0.28.198
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/dist/bin/agt.js +4 -4
- package/dist/{chunk-2GSFMQCT.js → chunk-75XCRB6E.js} +4 -600
- package/dist/chunk-75XCRB6E.js.map +1 -0
- package/dist/{chunk-C42HT3QT.js → chunk-CE6U2IAF.js} +622 -2
- package/dist/chunk-CE6U2IAF.js.map +1 -0
- package/dist/{chunk-H5KQGGFU.js → chunk-PCYEFPBE.js} +2 -2
- package/dist/{claude-pair-runtime-V2ZF43OE.js → claude-pair-runtime-RW4N6OQU.js} +2 -2
- package/dist/lib/manager-worker.js +11 -11
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/index.js +28 -20
- package/dist/{persistent-session-PKGKXWD2.js → persistent-session-PG3OFGDB.js} +3 -3
- package/dist/{responsiveness-probe-SSDLOYZB.js → responsiveness-probe-MMHGI5FC.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-2GSFMQCT.js.map +0 -1
- package/dist/chunk-C42HT3QT.js.map +0 -1
- /package/dist/{chunk-H5KQGGFU.js.map → chunk-PCYEFPBE.js.map} +0 -0
- /package/dist/{claude-pair-runtime-V2ZF43OE.js.map → claude-pair-runtime-RW4N6OQU.js.map} +0 -0
- /package/dist/{persistent-session-PKGKXWD2.js.map → persistent-session-PG3OFGDB.js.map} +0 -0
- /package/dist/{responsiveness-probe-SSDLOYZB.js.map → responsiveness-probe-MMHGI5FC.js.map} +0 -0
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
|
+
INTEGRATION_REGISTRY,
|
|
2
3
|
OAUTH_PROVIDERS,
|
|
3
4
|
coerceEnvValue,
|
|
4
5
|
expandTemplateVars,
|
|
@@ -16,7 +17,7 @@ import {
|
|
|
16
17
|
resolveConnectivityProbe,
|
|
17
18
|
worseConnectivityOutcome,
|
|
18
19
|
wrapScheduledTaskPrompt
|
|
19
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-CE6U2IAF.js";
|
|
20
21
|
|
|
21
22
|
// ../../packages/core/dist/provisioning/mcp-config-guards.js
|
|
22
23
|
import { chmodSync, existsSync, readFileSync, renameSync, writeFileSync, unlinkSync } from "fs";
|
|
@@ -1499,602 +1500,6 @@ The marginal cost of completeness is near zero. Do the whole thing.
|
|
|
1499
1500
|
${frontmatter.environment === "prod" ? "- Production environment: exercise extra caution with all operations.\n" : ""}`;
|
|
1500
1501
|
}
|
|
1501
1502
|
|
|
1502
|
-
// ../../packages/core/dist/integrations/registry.js
|
|
1503
|
-
var INTEGRATION_REGISTRY = [
|
|
1504
|
-
{
|
|
1505
|
-
id: "linear",
|
|
1506
|
-
name: "Linear",
|
|
1507
|
-
category: "project-management",
|
|
1508
|
-
description: "Issue tracking and project management",
|
|
1509
|
-
supported_auth_types: ["api_key", "oauth2"],
|
|
1510
|
-
capabilities: [
|
|
1511
|
-
{ id: "linear:read-issues", name: "Read Issues", description: "View issues, projects, and teams", access: "read" },
|
|
1512
|
-
{ id: "linear:create-issue", name: "Create Issues", description: "Create and update issues", access: "write" },
|
|
1513
|
-
{ id: "linear:manage-projects", name: "Manage Projects", description: "Create/archive projects and manage team settings", access: "admin" }
|
|
1514
|
-
],
|
|
1515
|
-
cli_tool: {
|
|
1516
|
-
package: "@schpet/linear-cli",
|
|
1517
|
-
binary: "linear",
|
|
1518
|
-
env_key: "LINEAR_API_KEY",
|
|
1519
|
-
skill_id: "linear-cli",
|
|
1520
|
-
extra_env: { LINEAR_ISSUE_SORT: "priority" },
|
|
1521
|
-
installer: "npm"
|
|
1522
|
-
}
|
|
1523
|
-
},
|
|
1524
|
-
{
|
|
1525
|
-
id: "github",
|
|
1526
|
-
name: "GitHub",
|
|
1527
|
-
category: "code",
|
|
1528
|
-
description: "Source code hosting, pull requests, and CI/CD",
|
|
1529
|
-
supported_auth_types: ["api_key", "oauth2"],
|
|
1530
|
-
capabilities: [
|
|
1531
|
-
{ id: "github:read-repos", name: "Read Repositories", description: "View repos, issues, and PRs", access: "read" },
|
|
1532
|
-
{ id: "github:write-code", name: "Write Code", description: "Push commits and create PRs", access: "write" },
|
|
1533
|
-
{ id: "github:manage-repos", name: "Manage Repositories", description: "Create/delete repos and manage settings", access: "admin" }
|
|
1534
|
-
],
|
|
1535
|
-
cli_tool: {
|
|
1536
|
-
package: "gh",
|
|
1537
|
-
binary: "gh",
|
|
1538
|
-
env_key: "GITHUB_TOKEN",
|
|
1539
|
-
skill_id: "gh-cli",
|
|
1540
|
-
// ENG-6206: `brew` never installs on the Linux fleet (root-on-AL2023,
|
|
1541
|
-
// no Homebrew) — gh was permanently missing. Use an OS-detecting script
|
|
1542
|
-
// that installs from GitHub's official repos: dnf (AL2023 / RHEL),
|
|
1543
|
-
// apt (Debian / Ubuntu), and brew (macOS hosts). The catalog is the
|
|
1544
|
-
// trust boundary — this string is source-controlled, never runtime data.
|
|
1545
|
-
installer: "script",
|
|
1546
|
-
script: 'if command -v dnf >/dev/null 2>&1; then curl -fsSL https://cli.github.com/packages/rpm/gh-cli.repo -o /etc/yum.repos.d/gh-cli.repo && dnf install -y gh; elif command -v apt-get >/dev/null 2>&1; then curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg -o /usr/share/keyrings/githubcli-archive-keyring.gpg && chmod go+r /usr/share/keyrings/githubcli-archive-keyring.gpg && echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" > /etc/apt/sources.list.d/github-cli.list && apt-get update && apt-get install -y gh; elif command -v brew >/dev/null 2>&1; then brew install gh; else echo "gh: no supported installer (need dnf, apt-get, or brew)" >&2; exit 1; fi'
|
|
1547
|
-
}
|
|
1548
|
-
},
|
|
1549
|
-
{
|
|
1550
|
-
id: "google-workspace",
|
|
1551
|
-
name: "Google Workspace",
|
|
1552
|
-
category: "workspace-productivity",
|
|
1553
|
-
description: "Gmail, Calendar, Drive, Sheets, Docs, and Chat",
|
|
1554
|
-
supported_auth_types: ["oauth2"],
|
|
1555
|
-
capabilities: [
|
|
1556
|
-
{ id: "gws:read-email", name: "Read Email", description: "Read Gmail messages, threads, and labels", access: "read" },
|
|
1557
|
-
{ id: "gws:send-email", name: "Send Email", description: "Send, reply, and forward emails", access: "write" },
|
|
1558
|
-
{ id: "gws:read-calendar", name: "Read Calendar", description: "View events and agendas", access: "read" },
|
|
1559
|
-
{ id: "gws:manage-calendar", name: "Manage Calendar", description: "Create, update, and delete events", access: "write" },
|
|
1560
|
-
{ id: "gws:read-drive", name: "Read Drive", description: "List and download files", access: "read" },
|
|
1561
|
-
{ id: "gws:write-drive", name: "Write Drive", description: "Upload, create, and share files", access: "write" },
|
|
1562
|
-
{ id: "gws:read-sheets", name: "Read Sheets", description: "Read spreadsheet values", access: "read" },
|
|
1563
|
-
{ id: "gws:write-sheets", name: "Write Sheets", description: "Append and update spreadsheet data", access: "write" },
|
|
1564
|
-
{ id: "gws:read-docs", name: "Read Docs", description: "Read document content", access: "read" },
|
|
1565
|
-
{ id: "gws:write-docs", name: "Write Docs", description: "Create and append to documents", access: "write" },
|
|
1566
|
-
{ id: "gws:chat", name: "Chat", description: "Send messages to Google Chat spaces", access: "write" }
|
|
1567
|
-
],
|
|
1568
|
-
cli_tool: {
|
|
1569
|
-
package: "@googleworkspace/cli",
|
|
1570
|
-
binary: "gws",
|
|
1571
|
-
env_key: "GOOGLE_WORKSPACE_CLI_TOKEN",
|
|
1572
|
-
skill_id: "gws-cli",
|
|
1573
|
-
installer: "npm"
|
|
1574
|
-
}
|
|
1575
|
-
},
|
|
1576
|
-
{
|
|
1577
|
-
id: "gcloud",
|
|
1578
|
-
name: "Google Cloud SDK",
|
|
1579
|
-
category: "infrastructure",
|
|
1580
|
-
description: "Google Cloud Platform CLI \u2014 manage Compute Engine, Cloud Storage, IAM, Cloud Run, Cloud SQL, BigQuery, and Pub/Sub from a single binary",
|
|
1581
|
-
supported_auth_types: ["oauth2", "managed"],
|
|
1582
|
-
capabilities: [
|
|
1583
|
-
{ id: "gcloud:read", name: "Read GCP Resources", description: "List and describe projects, instances, buckets, IAM, and service configs", access: "read" },
|
|
1584
|
-
{ id: "gcloud:write", name: "Write GCP Resources", description: "Create and update GCP resources (compute, storage, IAM, run, etc.)", access: "write" },
|
|
1585
|
-
{ id: "gcloud:admin", name: "Admin GCP Resources", description: "Destructive operations: delete projects, IAM bindings, instances. Restrict with a guardrail that blocks destructive gcloud/gsutil/bq verbs.", access: "admin" }
|
|
1586
|
-
],
|
|
1587
|
-
cli_tool: {
|
|
1588
|
-
package: "google-cloud-sdk",
|
|
1589
|
-
binary: "gcloud",
|
|
1590
|
-
env_key: "GOOGLE_APPLICATION_CREDENTIALS",
|
|
1591
|
-
// gcloud ships as a homebrew cask on macOS (`brew install --cask google-cloud-sdk`)
|
|
1592
|
-
// and via curl-installed tarball elsewhere. Neither matches the simple `brew install
|
|
1593
|
-
// <package>` or `npm install -g <package>` shape, so leave install to the operator.
|
|
1594
|
-
installer: "manual"
|
|
1595
|
-
},
|
|
1596
|
-
docs_url: "https://cloud.google.com/sdk"
|
|
1597
|
-
},
|
|
1598
|
-
{
|
|
1599
|
-
id: "xero",
|
|
1600
|
-
name: "Xero",
|
|
1601
|
-
category: "accounting",
|
|
1602
|
-
description: "Cloud accounting \u2014 financial reports, transactions, and account balances",
|
|
1603
|
-
supported_auth_types: ["oauth2"],
|
|
1604
|
-
capabilities: [
|
|
1605
|
-
{ id: "xero:read-reports", name: "Read Reports", description: "Pull P&L, balance sheet, and trial balance reports", access: "read" },
|
|
1606
|
-
{ id: "xero:read-accounts", name: "Read Accounts", description: "View chart of accounts and account balances", access: "read" },
|
|
1607
|
-
{ id: "xero:read-transactions", name: "Read Transactions", description: "View bank transactions, invoices, and journal entries", access: "read" },
|
|
1608
|
-
{ id: "xero:read-contacts", name: "Read Contacts", description: "View customers, suppliers, and contact groups", access: "read" },
|
|
1609
|
-
{ id: "xero:manage-settings", name: "Manage Settings", description: "Manage org settings and chart of accounts", access: "admin" }
|
|
1610
|
-
]
|
|
1611
|
-
},
|
|
1612
|
-
{
|
|
1613
|
-
id: "granola",
|
|
1614
|
-
name: "Granola",
|
|
1615
|
-
category: "knowledge",
|
|
1616
|
-
description: "Meeting notes search \u2014 query transcripts, summaries, and folders from Granola",
|
|
1617
|
-
// Granola uses a remote streamable-HTTP MCP with PKCE + Dynamic Client
|
|
1618
|
-
// Registration. End-user OAuth is brokered by the webapp (ENG-4693)
|
|
1619
|
-
// through the shared /integrations/oauth/authorize → /callback path
|
|
1620
|
-
// (ENG-4694), and the access_token is injected into .mcp.json via the
|
|
1621
|
-
// generic bearer-header path. No host-side action required from the
|
|
1622
|
-
// operator beyond running the one-time DCR registration script at
|
|
1623
|
-
// deploy time.
|
|
1624
|
-
supported_auth_types: ["oauth2"],
|
|
1625
|
-
capabilities: [
|
|
1626
|
-
{ id: "granola:search-meetings", name: "Search Meetings", description: "Browse meetings, search content, and chat with notes (query_granola_meetings, list_meetings, get_meetings)", access: "read" },
|
|
1627
|
-
{ id: "granola:read-transcripts", name: "Read Transcripts", description: "Access raw meeting transcripts (paid plans only \u2014 get_meeting_transcript)", access: "read" },
|
|
1628
|
-
{ id: "granola:list-folders", name: "List Folders", description: "View accessible meeting folders (paid plans only \u2014 list_meeting_folders)", access: "read" }
|
|
1629
|
-
],
|
|
1630
|
-
docs_url: "https://docs.granola.ai/docs/api/mcp",
|
|
1631
|
-
beta: true
|
|
1632
|
-
},
|
|
1633
|
-
{
|
|
1634
|
-
id: "brand-ninja",
|
|
1635
|
-
name: "Brand Ninja",
|
|
1636
|
-
category: "social",
|
|
1637
|
-
description: "Brand-aligned content generation: submit async content requests, track them, and discover publishing channels. Wired as the hosted Brand Ninja External-Content MCP at https://ext-api.app.brandninja.ai/v1/mcp.",
|
|
1638
|
-
// ENG-6820: same remote streamable-HTTP MCP + OAuth pattern as Granola.
|
|
1639
|
-
// Brand Ninja's server implements the full MCP discovery chain (RFC
|
|
1640
|
-
// 9728/8414/7591); auth is OAuth 2.0 authorization-code with PKCE (S256)
|
|
1641
|
-
// and a public client registered via one-time Dynamic Client Registration
|
|
1642
|
-
// (scripts/dcr-register.ts against https://ext-api.app.brandninja.ai/v1/oauth/register
|
|
1643
|
-
// → OAUTH_BRAND_NINJA_CLIENT_ID). End-user consent is brokered by the
|
|
1644
|
-
// webapp through the shared /integrations/oauth/authorize → /callback path,
|
|
1645
|
-
// and the access_token is injected into .mcp.json via the generic
|
|
1646
|
-
// bearer-header path (OAUTH_PROVIDERS.brand-ninja.mcpUrl). No host-side
|
|
1647
|
-
// action beyond the deploy-time DCR registration.
|
|
1648
|
-
supported_auth_types: ["oauth2"],
|
|
1649
|
-
capabilities: [
|
|
1650
|
-
{ id: "brand-ninja:generate-content", name: "Generate Content", description: "Submit async brand-aligned content-generation requests and poll their status (submit_content_request, get_content_status, list_content_requests)", access: "write" },
|
|
1651
|
-
{ id: "brand-ninja:list-channels", name: "List Channels", description: "Discover the publishing channels available to the account, metadata only (list_channels)", access: "read" },
|
|
1652
|
-
{ id: "brand-ninja:read-credentials", name: "Read Credentials", description: "Read-only External-API credential metadata, secrets stripped. Requires the elevated external-api/admin scope (list_credentials)", access: "admin" }
|
|
1653
|
-
],
|
|
1654
|
-
docs_url: "https://ext-api.app.brandninja.ai/v1/mcp",
|
|
1655
|
-
beta: true
|
|
1656
|
-
},
|
|
1657
|
-
{
|
|
1658
|
-
id: "kajabi",
|
|
1659
|
-
name: "Kajabi",
|
|
1660
|
-
category: "crm",
|
|
1661
|
-
description: "Run a Kajabi creator business from chat: read contacts, products, offers, and analytics, manage contact tags & segments, and draft email broadcasts & sequences.",
|
|
1662
|
-
// Same remote streamable-HTTP MCP + OAuth pattern as Granola/Brand Ninja.
|
|
1663
|
-
// Kajabi's Doorkeeper AS implements the MCP discovery chain (RFC
|
|
1664
|
-
// 9728/8414/7591); auth is OAuth 2.0 authorization-code with PKCE (S256)
|
|
1665
|
-
// and a public client registered via one-time Dynamic Client Registration
|
|
1666
|
-
// (scripts/dcr-register.ts against https://mcp.kajabi.com/mcp/oauth/register
|
|
1667
|
-
// → OAUTH_KAJABI_CLIENT_ID; register with --scope 'read write:contacts
|
|
1668
|
-
// write:emails' since Doorkeeper caps a dynamic client to its registered
|
|
1669
|
-
// scopes). End-user consent is brokered by the webapp through the shared
|
|
1670
|
-
// /integrations/oauth/authorize → /callback path, and the access_token is
|
|
1671
|
-
// injected into .mcp.json via the generic bearer-header path
|
|
1672
|
-
// (OAUTH_PROVIDERS.kajabi.mcpUrl). Every Kajabi tool is site-scoped — agents
|
|
1673
|
-
// call list_sites/select_site first. No host-side action beyond the
|
|
1674
|
-
// deploy-time DCR registration.
|
|
1675
|
-
supported_auth_types: ["oauth2"],
|
|
1676
|
-
capabilities: [
|
|
1677
|
-
{ id: "kajabi:read", name: "Read & Discover", description: "List sites and read contacts, products, offers, purchases, and revenue/contacts analytics (list_sites, select_site, search_contacts, get_contact, list_offers, get_offer, search_products, get_revenue_analytics, \u2026)", access: "read" },
|
|
1678
|
-
{ id: "kajabi:contacts", name: "Manage Contacts", description: "Create and apply contact tags, and create/update saved contact segments (create_tag, tag_contact, untag_contact, create_segment, update_segment)", access: "write" },
|
|
1679
|
-
{ id: "kajabi:emails", name: "Manage Emails", description: "Read and draft email broadcasts and sequences \u2014 drafts only, sending stays a human action in Kajabi (create_broadcast, create_sequence, list_broadcasts, get_sequence)", access: "write" }
|
|
1680
|
-
],
|
|
1681
|
-
docs_url: "https://help.kajabi.com/articles/api-integrations/connect-kajabi-to-claude-or-chatgpt",
|
|
1682
|
-
beta: true
|
|
1683
|
-
},
|
|
1684
|
-
{
|
|
1685
|
-
id: "anchor-browser",
|
|
1686
|
-
name: "Anchor Browser",
|
|
1687
|
-
category: "workspace-productivity",
|
|
1688
|
-
description: "Cloud browser for agents \u2014 drive any website that lacks an API (LinkedIn, Sales Navigator, supplier portals) via a hosted, stealth Chromium with persistent-login profiles. Wired as Anchor's HOSTED streamable-HTTP MCP at https://api.anchorbrowser.io/mcp.",
|
|
1689
|
-
// ENG-5855: api-key header auth (NOT OAuth, NOT a local stdio package).
|
|
1690
|
-
// The manager writes ANCHOR_BROWSER_API_KEY to .env.integrations from the
|
|
1691
|
-
// stored api_key credential; the hosted MCP authenticates on the
|
|
1692
|
-
// `anchor-api-key` header. The `anchor-session-id` header binds an
|
|
1693
|
-
// authenticated profile session — its value is minted per-session by the
|
|
1694
|
-
// manager (ENG-5857); until then `envDefaults` seeds it empty so
|
|
1695
|
-
// stateless browsing works and no literal `${...}` placeholder ships.
|
|
1696
|
-
// Tool surface (25 `anchor_*` tools) is the hosted MCP's, validated in
|
|
1697
|
-
// the ENG-5854 spike (docs/spikes/eng-5854-anchor-browser-persistent-login.md).
|
|
1698
|
-
supported_auth_types: ["api_key"],
|
|
1699
|
-
capabilities: [
|
|
1700
|
-
{ id: "anchor-browser:browse", name: "Browse & Read", description: "Navigate and read pages \u2014 snapshot, screenshot, page HTML, tabs, console, network requests, wait (anchor_navigate, anchor_snapshot, anchor_take_screenshot, anchor_get_body_html, anchor_tab_list, anchor_console_messages, anchor_network_requests, anchor_wait_for, anchor_navigate_back/forward)", access: "read" },
|
|
1701
|
-
{ id: "anchor-browser:interact", name: "Interact", description: "Act on pages \u2014 click, type, hover, drag, select options, press keys, handle dialogs, upload files, resize, manage tabs (anchor_click, anchor_type, anchor_hover, anchor_drag, anchor_select_option, anchor_press_key, anchor_handle_dialog, anchor_file_upload, anchor_resize, anchor_tab_new/select/close, anchor_close)", access: "write" },
|
|
1702
|
-
{ id: "anchor-browser:export", name: "Export & Codegen", description: "Save the current page as PDF and generate Playwright code for a scenario (anchor_pdf_save, anchor_generate_playwright_code)", access: "write" }
|
|
1703
|
-
],
|
|
1704
|
-
docs_url: "https://docs.anchorbrowser.io/introduction",
|
|
1705
|
-
beta: true,
|
|
1706
|
-
remoteMcp: {
|
|
1707
|
-
type: "http",
|
|
1708
|
-
url: "https://api.anchorbrowser.io/mcp",
|
|
1709
|
-
// ENG-6993 / ADR-0033: the api-key credential header now goes through the
|
|
1710
|
-
// structured `auth` field — the env var (ANCHOR_BROWSER_API_KEY) is
|
|
1711
|
-
// DERIVED from this integration's definition_id + credential_ref, so it
|
|
1712
|
-
// is scoped to Anchor and can't reference another integration's secret
|
|
1713
|
-
// (C1). Renders byte-identically to the previous verbatim header.
|
|
1714
|
-
auth: { scheme: "header", header_name: "anchor-api-key", credential_ref: "api_key" },
|
|
1715
|
-
// The dynamic session header stays here (not a credential — minted per
|
|
1716
|
-
// session by ENG-5857; empty default below until then).
|
|
1717
|
-
headers: {
|
|
1718
|
-
"anchor-session-id": "${ANCHOR_BROWSER_SESSION_ID}"
|
|
1719
|
-
},
|
|
1720
|
-
// ENG-5857 mints the real session id; default empty so the header
|
|
1721
|
-
// resolves cleanly (no profile bound → ephemeral session) until then.
|
|
1722
|
-
envDefaults: { ANCHOR_BROWSER_SESSION_ID: "" }
|
|
1723
|
-
}
|
|
1724
|
-
},
|
|
1725
|
-
{
|
|
1726
|
-
id: "deck",
|
|
1727
|
-
name: "Deck",
|
|
1728
|
-
category: "workspace-productivity",
|
|
1729
|
-
description: "Computer-use agents that operate any software through its real interface (no API required) and return schema-validated results. A higher-level alternative to Anchor Browser: Deck owns the auth lifecycle (encrypted credential vault, login, MFA, CAPTCHA) and provisions isolated desktop sessions on demand. Augmented Team manages Deck access for you and gives each agent its own isolated Deck workspace, so there is no credential to enter.",
|
|
1730
|
-
// Deck is REST-only (base https://api.deck.co/v2, Bearer `sk_live_` account
|
|
1731
|
-
// key) — it ships NO MCP server, so unlike anchor-browser there is no
|
|
1732
|
-
// `remoteMcp`/`nativeMcp` drop-in; the agent-facing tools are brokered
|
|
1733
|
-
// server-side (deck-broker.ts). Deck is the first PREMIUM integration:
|
|
1734
|
-
// Augmented owns ONE Deck account that every customer agent's runs bill back
|
|
1735
|
-
// to (per-org charging is tracked in ENG-6920, not yet live), so the account
|
|
1736
|
-
// key is a single platform-held secret (`DECK_ACCOUNT_KEY`), NOT a per-agent
|
|
1737
|
-
// credential. Auth type is therefore `none` — customers never enter a key.
|
|
1738
|
-
// Per-agent isolation is modelled on Deck's first-class resources: that one
|
|
1739
|
-
// key provisions one Deck agent (`agt_`) + vault credential (`cred_`) per
|
|
1740
|
-
// Augmented agent via POST /:id/provision-deck; the ids land in
|
|
1741
|
-
// `agent_integrations.config` (deck_agent_id / deck_credential_id), so
|
|
1742
|
-
// revocation + audit happen at the per-agent Deck-resource level without a
|
|
1743
|
-
// distinct API key per agent (Deck exposes no key-minting admin API).
|
|
1744
|
-
supported_auth_types: ["none"],
|
|
1745
|
-
capabilities: [
|
|
1746
|
-
{ id: "deck:provision", name: "Provision Agent Access", description: "Provision a per-agent Deck agent and vault credential under the account key (create_agent, create_credential)", access: "admin" },
|
|
1747
|
-
{ id: "deck:run", name: "Run Tasks", description: "Submit tasks to the agent and read schema-validated structured results (run_task, get_task_run)", access: "write" },
|
|
1748
|
-
{ id: "deck:observe", name: "Observe Sessions", description: "Read isolated session state, screenshots, and agent-reasoning artifacts (get_session)", access: "read" }
|
|
1749
|
-
],
|
|
1750
|
-
docs_url: "https://docs.deck.co/",
|
|
1751
|
-
beta: true,
|
|
1752
|
-
// ENG-6920: Deck is the first PREMIUM integration. Unlike the customer-auth
|
|
1753
|
-
// integrations, every Deck run bills back to Augmented's single account
|
|
1754
|
-
// key, and Deck is usage-priced — so it is gated on a per-org opt-in and
|
|
1755
|
-
// metered. ENG-7032: `meters` declares the billable operation (run_task,
|
|
1756
|
-
// billed per run); the priced rate card (integration_rate_cards) holds the
|
|
1757
|
-
// amount ($1.00 USD / A$1.50 per run, the per-run v1 decision). The
|
|
1758
|
-
// event_type must match what deck-broker writes to integration_usage_events.
|
|
1759
|
-
premium: {
|
|
1760
|
-
pricing: "usage",
|
|
1761
|
-
note: "Billed per Deck task run.",
|
|
1762
|
-
meters: [{ event_type: "run_task", unit: "run" }]
|
|
1763
|
-
}
|
|
1764
|
-
},
|
|
1765
|
-
{
|
|
1766
|
-
id: "elevenlabs",
|
|
1767
|
-
name: "ElevenLabs",
|
|
1768
|
-
category: "media",
|
|
1769
|
-
description: "Speech-to-text for inbound voice notes. When a teammate sends an agent a voice message (Slack, Telegram, etc.), the agent uploads the audio and gets back an accurate transcript via ElevenLabs Scribe, so a voice note is no longer a black box. Augmented Team manages ElevenLabs access for you - there is no key to enter.",
|
|
1770
|
-
// ElevenLabs is REST-only for our use (POST /v1/speech-to-text, `xi-api-key`
|
|
1771
|
-
// header, NOT Bearer) — it ships no MCP server, so the agent-facing tools are
|
|
1772
|
-
// brokered server-side (scribe-broker.ts). It is a PREMIUM integration on the
|
|
1773
|
-
// Deck model (ADR-0031, epic ENG-6920): Augmented owns ONE ElevenLabs account
|
|
1774
|
-
// that every customer agent's transcriptions bill back to, so the account key
|
|
1775
|
-
// is a single platform-held secret (`ELEVENLABS_ACCOUNT_KEY`), NOT a per-agent
|
|
1776
|
-
// credential. Auth type is therefore `none` — customers never enter a key.
|
|
1777
|
-
// Usage is metered in audio-seconds at the broker chokepoint and gated on a
|
|
1778
|
-
// per-org opt-in + monthly cap. (TTS for Augmented Live voiceover is a
|
|
1779
|
-
// separate surface — ENG-7048 — that reuses the same account key.)
|
|
1780
|
-
supported_auth_types: ["none"],
|
|
1781
|
-
capabilities: [
|
|
1782
|
-
{ id: "elevenlabs:transcribe", name: "Transcribe Voice Notes", description: "Upload an inbound audio file and transcribe it to text via ElevenLabs Scribe (scribe_create_upload, scribe_transcribe)", access: "write" },
|
|
1783
|
-
// ENG-7048: text-to-speech voiceover for Augmented Live. Surfaced as the
|
|
1784
|
-
// agt_live.generate_voiceover tool (not a standalone scribe_* tool); shares
|
|
1785
|
-
// this one platform account key + the same per-org budget.
|
|
1786
|
-
{ id: "elevenlabs:tts", name: "Generate Voiceover", description: "Synthesize a spoken-voice MP3 voiceover from text for an Augmented Live page via ElevenLabs text-to-speech (agt_live.generate_voiceover)", access: "write" },
|
|
1787
|
-
// ENG-7089: instrumental music generation for Augmented Live. Surfaced as the
|
|
1788
|
-
// agt_live.generate_music tool; shares this one platform account key + the
|
|
1789
|
-
// same per-org budget.
|
|
1790
|
-
{ id: "elevenlabs:music", name: "Generate Music", description: "Compose an instrumental MP3 music track from a text prompt for an Augmented Live page via ElevenLabs Music (agt_live.generate_music)", access: "write" }
|
|
1791
|
-
],
|
|
1792
|
-
// Capabilities index — covers speech-to-text, text-to-speech, and music, since
|
|
1793
|
-
// the integration now advertises elevenlabs:transcribe, elevenlabs:tts, and
|
|
1794
|
-
// elevenlabs:music.
|
|
1795
|
-
docs_url: "https://elevenlabs.io/docs/capabilities",
|
|
1796
|
-
beta: true,
|
|
1797
|
-
// ENG-7005 / ENG-7048: premium (billable). Both surfaces bill back to
|
|
1798
|
-
// Augmented's single account key and are usage-priced, so the integration is
|
|
1799
|
-
// gated on a per-org opt-in and metered. The two surfaces share the one
|
|
1800
|
-
// `elevenlabs` definition (and so the one per-org monthly budget). Pricing
|
|
1801
|
-
// amounts live in integration_rate_cards; this only declares the model.
|
|
1802
|
-
premium: {
|
|
1803
|
-
pricing: "usage",
|
|
1804
|
-
note: "Billed on audio transcribed (per second), voiceover synthesized (per character), and music generated (per second).",
|
|
1805
|
-
// ENG-7032: each surface meters its own event in its own physical unit; the
|
|
1806
|
-
// matching integration_rate_cards rows price them. Until a rate is seeded,
|
|
1807
|
-
// that event prices at 0.
|
|
1808
|
-
meters: [
|
|
1809
|
-
{ event_type: "transcribe", unit: "audio_second" },
|
|
1810
|
-
{ event_type: "tts", unit: "character" },
|
|
1811
|
-
{ event_type: "music", unit: "second" }
|
|
1812
|
-
]
|
|
1813
|
-
}
|
|
1814
|
-
},
|
|
1815
|
-
{
|
|
1816
|
-
id: "postiz",
|
|
1817
|
-
name: "Postiz",
|
|
1818
|
-
category: "social",
|
|
1819
|
-
description: "Open-source social-media scheduling and publishing \u2014 schedule posts, list connected platforms, and upload media. Self-hosted-aware (defaults to Postiz Cloud at https://api.postiz.com).",
|
|
1820
|
-
// Postiz also supports OAuth2 ('pos_'-prefixed tokens) but the public docs
|
|
1821
|
-
// for the authorize/token URL shape are sparse — wired API-key-first; the
|
|
1822
|
-
// OAuth path lands as a follow-up once we've confirmed the flow against
|
|
1823
|
-
// a live instance.
|
|
1824
|
-
supported_auth_types: ["api_key"],
|
|
1825
|
-
capabilities: [
|
|
1826
|
-
{ id: "postiz:list", name: "List Posts & Platforms", description: "List connected social platforms (GET /integrations) and previously scheduled posts", access: "read" },
|
|
1827
|
-
{ id: "postiz:publish", name: "Publish Posts", description: "Create and schedule posts across the connected platforms (POST /posts)", access: "write" },
|
|
1828
|
-
{ id: "postiz:upload", name: "Upload Media", description: "Upload images and video for use in posts (POST /upload)", access: "write" }
|
|
1829
|
-
],
|
|
1830
|
-
docs_url: "https://docs.postiz.com/public-api/introduction",
|
|
1831
|
-
// Beta until we've verified the npx-based community MCP server
|
|
1832
|
-
// (antoniolg/postiz-mcp) end-to-end against a real Postiz instance.
|
|
1833
|
-
// The 30-req/hr public API rate limit also wants real-world
|
|
1834
|
-
// validation before we drop the beta flag.
|
|
1835
|
-
beta: true
|
|
1836
|
-
},
|
|
1837
|
-
{
|
|
1838
|
-
id: "higgsfield",
|
|
1839
|
-
name: "Higgsfield",
|
|
1840
|
-
category: "media",
|
|
1841
|
-
description: "Generative media \u2014 image (Soul, Nano Banana) and video (Kling, Veo, Seedance) generation, character training (Soul ID), and generation history. Remote streamable-HTTP MCP at https://mcp.higgsfield.ai/mcp.",
|
|
1842
|
-
// Same OAuth pattern as Granola: Claude Code brokers the browser
|
|
1843
|
-
// sign-in at runtime; nothing for the manager API to provision.
|
|
1844
|
-
supported_auth_types: ["none"],
|
|
1845
|
-
capabilities: [
|
|
1846
|
-
{ id: "higgsfield:generate-image", name: "Generate Image", description: "Create images via Soul, Nano Banana, and other image models \u2014 up to 4K. Includes Soul ID character consistency.", access: "write" },
|
|
1847
|
-
{ id: "higgsfield:generate-video", name: "Generate Video", description: "Create videos via Kling, Veo, Seedance \u2014 up to 15s. Includes UGC, product review, TV spot presets.", access: "write" },
|
|
1848
|
-
{ id: "higgsfield:read-history", name: "Read History", description: "Browse generation history for iterative workflows; reuse prior outputs as references.", access: "read" }
|
|
1849
|
-
],
|
|
1850
|
-
docs_url: "https://higgsfield.ai/mcp",
|
|
1851
|
-
beta: true
|
|
1852
|
-
},
|
|
1853
|
-
{
|
|
1854
|
-
id: "qmd",
|
|
1855
|
-
name: "QMD Memory Search",
|
|
1856
|
-
category: "knowledge",
|
|
1857
|
-
description: "Local-first memory search sidecar \u2014 BM25 + vector search + reranking over agent memory files",
|
|
1858
|
-
supported_auth_types: ["none"],
|
|
1859
|
-
cli_tool: {
|
|
1860
|
-
package: "@tobilu/qmd",
|
|
1861
|
-
binary: "qmd",
|
|
1862
|
-
env_key: "",
|
|
1863
|
-
installer: "npm"
|
|
1864
|
-
},
|
|
1865
|
-
capabilities: [
|
|
1866
|
-
{ id: "qmd:search", name: "Search Memory", description: "Semantic + keyword search over indexed memory files", access: "read" },
|
|
1867
|
-
{ id: "qmd:get", name: "Get Memory", description: "Read memory files by path and line range", access: "read" }
|
|
1868
|
-
],
|
|
1869
|
-
beta: true,
|
|
1870
|
-
// ENG-5815: migrated from buildMcpJson's hardcoded if-block. qmd is
|
|
1871
|
-
// the simplest of the four pre-data-driven entries — no env, no
|
|
1872
|
-
// conditional logic, just `qmd mcp`. The byte-identical render is
|
|
1873
|
-
// pinned by claudecode-qmd-data-driven.test.ts.
|
|
1874
|
-
nativeMcp: {
|
|
1875
|
-
command: "qmd",
|
|
1876
|
-
args: ["mcp"]
|
|
1877
|
-
}
|
|
1878
|
-
},
|
|
1879
|
-
{
|
|
1880
|
-
id: "v0",
|
|
1881
|
-
name: "v0 by Vercel",
|
|
1882
|
-
category: "ui-generation",
|
|
1883
|
-
description: "Programmatic UI generation \u2014 generate React + Tailwind + shadcn/ui components and full apps from natural language prompts",
|
|
1884
|
-
supported_auth_types: ["api_key"],
|
|
1885
|
-
beta: true,
|
|
1886
|
-
capabilities: [
|
|
1887
|
-
{
|
|
1888
|
-
id: "v0:generate-ui",
|
|
1889
|
-
name: "Generate UI",
|
|
1890
|
-
description: "Create React components and full apps from a natural language prompt",
|
|
1891
|
-
access: "write",
|
|
1892
|
-
required_scopes: ["chats:create"]
|
|
1893
|
-
},
|
|
1894
|
-
{
|
|
1895
|
-
id: "v0:iterate-ui",
|
|
1896
|
-
name: "Iterate UI",
|
|
1897
|
-
description: "Send follow-up prompts to refine a previously generated component",
|
|
1898
|
-
access: "write",
|
|
1899
|
-
required_scopes: ["chats:send"]
|
|
1900
|
-
},
|
|
1901
|
-
{
|
|
1902
|
-
id: "v0:read-chats",
|
|
1903
|
-
name: "Read Chats",
|
|
1904
|
-
description: "Retrieve chat history, generated files, and demo URLs",
|
|
1905
|
-
access: "read",
|
|
1906
|
-
required_scopes: ["chats:read"]
|
|
1907
|
-
},
|
|
1908
|
-
{
|
|
1909
|
-
id: "v0:manage-projects",
|
|
1910
|
-
name: "Manage Projects",
|
|
1911
|
-
description: "Create and manage v0 project containers for versioned generation history",
|
|
1912
|
-
access: "write",
|
|
1913
|
-
required_scopes: ["projects:write"]
|
|
1914
|
-
},
|
|
1915
|
-
{
|
|
1916
|
-
id: "v0:deploy",
|
|
1917
|
-
name: "Deploy to Vercel",
|
|
1918
|
-
description: "Deploy a generated version to Vercel and receive a live URL",
|
|
1919
|
-
access: "write",
|
|
1920
|
-
required_scopes: ["deployments:create"]
|
|
1921
|
-
}
|
|
1922
|
-
],
|
|
1923
|
-
docs_url: "https://v0.dev/docs/api/platform/overview"
|
|
1924
|
-
},
|
|
1925
|
-
{
|
|
1926
|
-
id: "pika",
|
|
1927
|
-
name: "Pika",
|
|
1928
|
-
category: "media",
|
|
1929
|
-
description: "AI video meeting agent \u2014 join Google Meet and Zoom calls with a custom avatar and cloned voice via PikaStreaming",
|
|
1930
|
-
supported_auth_types: ["api_key"],
|
|
1931
|
-
capabilities: [
|
|
1932
|
-
{ id: "pika:join-meeting", name: "Join Meeting", description: "Join a video meeting as an AI participant with avatar and voice", access: "write" },
|
|
1933
|
-
{ id: "pika:leave-meeting", name: "Leave Meeting", description: "Leave an active video meeting session", access: "write" },
|
|
1934
|
-
{ id: "pika:generate-avatar", name: "Generate Avatar", description: "Generate an AI avatar image for video calls", access: "write" },
|
|
1935
|
-
{ id: "pika:clone-voice", name: "Clone Voice", description: "Clone a voice from an audio recording", access: "write" }
|
|
1936
|
-
],
|
|
1937
|
-
cli_tool: {
|
|
1938
|
-
package: "pika-skills",
|
|
1939
|
-
binary: "python3",
|
|
1940
|
-
env_key: "PIKA_DEV_KEY",
|
|
1941
|
-
skill_id: "pikastream-video-meeting",
|
|
1942
|
-
// python3 is part of the host bootstrap baseline — skills are fetched
|
|
1943
|
-
// separately. Don't try to auto-install python via npm/brew.
|
|
1944
|
-
installer: "manual"
|
|
1945
|
-
},
|
|
1946
|
-
docs_url: "https://github.com/Pika-Labs/Pika-Skills"
|
|
1947
|
-
},
|
|
1948
|
-
{
|
|
1949
|
-
id: "claude-code",
|
|
1950
|
-
name: "Claude Code",
|
|
1951
|
-
category: "code",
|
|
1952
|
-
description: "Claude Code AI agent runtime \u2014 code editing, task execution, file management, and development workflows",
|
|
1953
|
-
supported_auth_types: ["api_key", "none"],
|
|
1954
|
-
capabilities: [
|
|
1955
|
-
{ id: "claude-code:edit-code", name: "Edit Code", description: "Read, write, and edit source files", access: "write" },
|
|
1956
|
-
{ id: "claude-code:run-tasks", name: "Run Tasks", description: "Execute bash commands and development tasks", access: "write" },
|
|
1957
|
-
{ id: "claude-code:search", name: "Search Code", description: "Search files and grep codebase", access: "read" },
|
|
1958
|
-
{ id: "claude-code:git", name: "Git Operations", description: "Commit, branch, push, and manage version control", access: "write" }
|
|
1959
|
-
],
|
|
1960
|
-
cli_tool: {
|
|
1961
|
-
package: "@anthropic-ai/claude-code",
|
|
1962
|
-
binary: "claude",
|
|
1963
|
-
env_key: "ANTHROPIC_API_KEY",
|
|
1964
|
-
// Claude Code is installed by the host bootstrap / operator setup —
|
|
1965
|
-
// don't attempt a second install from the manager poll.
|
|
1966
|
-
installer: "manual"
|
|
1967
|
-
},
|
|
1968
|
-
docs_url: "https://docs.anthropic.com/en/docs/claude-code"
|
|
1969
|
-
},
|
|
1970
|
-
{
|
|
1971
|
-
id: "xurl",
|
|
1972
|
-
name: "xurl (X API)",
|
|
1973
|
-
category: "social",
|
|
1974
|
-
description: "Official X (Twitter) API CLI \u2014 a curl-like tool for X's REST and streaming endpoints with OAuth 2.0 PKCE, OAuth 1.0a, and bearer-token auth",
|
|
1975
|
-
supported_auth_types: ["api_key"],
|
|
1976
|
-
capabilities: [
|
|
1977
|
-
{ id: "xurl:read", name: "Read X API", description: "Call GET endpoints (users, tweets, timelines, search)", access: "read" },
|
|
1978
|
-
{ id: "xurl:write", name: "Write X API", description: "Post tweets, reply, like, and retweet", access: "write" },
|
|
1979
|
-
{ id: "xurl:stream", name: "Stream X API", description: "Consume filtered and sampled stream endpoints", access: "read" },
|
|
1980
|
-
{ id: "xurl:media", name: "Upload Media", description: "Chunked upload of images and video to the X media endpoints", access: "write" }
|
|
1981
|
-
],
|
|
1982
|
-
cli_tool: {
|
|
1983
|
-
package: "@xdevplatform/xurl",
|
|
1984
|
-
binary: "xurl",
|
|
1985
|
-
env_key: "X_BEARER_TOKEN",
|
|
1986
|
-
skill_id: "xurl-cli",
|
|
1987
|
-
// xurl is a Go binary distributed through homebrew tap; operator
|
|
1988
|
-
// installs via `brew install xdevplatform/tap/xurl`. Mark manual
|
|
1989
|
-
// for now — add a dedicated `tap` installer in a follow-up if more
|
|
1990
|
-
// brew-tap tools land.
|
|
1991
|
-
installer: "manual"
|
|
1992
|
-
},
|
|
1993
|
-
docs_url: "https://github.com/xdevplatform/xurl"
|
|
1994
|
-
},
|
|
1995
|
-
{
|
|
1996
|
-
id: "coderabbit",
|
|
1997
|
-
name: "CodeRabbit",
|
|
1998
|
-
category: "code",
|
|
1999
|
-
description: "AI-powered code review CLI for local and pre-push review runs",
|
|
2000
|
-
supported_auth_types: ["none"],
|
|
2001
|
-
capabilities: [
|
|
2002
|
-
{ id: "coderabbit:review", name: "Review Changes", description: "Run a local CodeRabbit review over staged or branch changes", access: "read" }
|
|
2003
|
-
],
|
|
2004
|
-
cli_tool: {
|
|
2005
|
-
package: "",
|
|
2006
|
-
binary: "coderabbit",
|
|
2007
|
-
env_key: "",
|
|
2008
|
-
installer: "script",
|
|
2009
|
-
script: "curl -fsSL https://cli.coderabbit.ai/install.sh | sh"
|
|
2010
|
-
},
|
|
2011
|
-
docs_url: "https://www.coderabbit.ai/cli"
|
|
2012
|
-
},
|
|
2013
|
-
{
|
|
2014
|
-
id: "aws",
|
|
2015
|
-
name: "AWS",
|
|
2016
|
-
category: "infrastructure",
|
|
2017
|
-
description: "Amazon Web Services \u2014 query AWS APIs (EC2, S3, IAM, Lambda, etc.) via AWS Labs' official AWS API MCP server",
|
|
2018
|
-
supported_auth_types: ["api_key", "managed", "none"],
|
|
2019
|
-
capabilities: [
|
|
2020
|
-
{ id: "aws:read", name: "Read AWS Resources", description: "List and describe AWS resources across services (EC2, S3, IAM, Lambda, \u2026)", access: "read" },
|
|
2021
|
-
{ id: "aws:write", name: "Write AWS Resources", description: "Create and update AWS resources. Pair with an aws-no-destructive-ops guardrail.", access: "write" }
|
|
2022
|
-
],
|
|
2023
|
-
docs_url: "https://github.com/awslabs/mcp/tree/main/src/aws-api-mcp-server",
|
|
2024
|
-
beta: true,
|
|
2025
|
-
// ENG-5815: first integration shipped purely via the data-driven
|
|
2026
|
-
// path — buildMcpJson never grew an `aws` if-block. The AWS Labs
|
|
2027
|
-
// AWS API MCP server runs through uvx (Python tooling), which the
|
|
2028
|
-
// host bootstrap installs alongside python3. Credentials are
|
|
2029
|
-
// resolved via the standard AWS_* env / shared credentials file
|
|
2030
|
-
// chain on the host; the spec doesn't override them.
|
|
2031
|
-
nativeMcp: {
|
|
2032
|
-
command: "uvx",
|
|
2033
|
-
args: ["awslabs.aws-api-mcp-server@latest"],
|
|
2034
|
-
env: {
|
|
2035
|
-
AWS_REGION: "{{empty_if_no_env.AWS_REGION}}",
|
|
2036
|
-
AWS_PROFILE: "{{empty_if_no_env.AWS_PROFILE}}",
|
|
2037
|
-
PATH: "{{process_env.PATH}}",
|
|
2038
|
-
HOME: "{{process_env.HOME}}"
|
|
2039
|
-
}
|
|
2040
|
-
}
|
|
2041
|
-
},
|
|
2042
|
-
{
|
|
2043
|
-
// ENG-6195: admin-only debugging surface for Integrity Labs STAFF agents.
|
|
2044
|
-
// Provisions the @integrity-labs/augmented-admin-mcp stdio broker, which
|
|
2045
|
-
// reads end-user agent diagnostics cross-org via /admin/debug/*. `beta` so
|
|
2046
|
-
// it is visible/enable-able only by admin-email-domain users; the API
|
|
2047
|
-
// double-gates every call on the caller's owning org `is_internal = true`.
|
|
2048
|
-
// auth `none` — no end-user OAuth; the host JWT (org_id claim) is the
|
|
2049
|
-
// credential. NOT a customer integration; do not promote to `published`.
|
|
2050
|
-
id: "augmented-admin",
|
|
2051
|
-
name: "Augmented Admin Debug",
|
|
2052
|
-
category: "infrastructure",
|
|
2053
|
-
description: "Integrity Labs staff-only: cross-org agent/host/integration/alert diagnostics for troubleshooting managed agents.",
|
|
2054
|
-
supported_auth_types: ["none"],
|
|
2055
|
-
beta: true,
|
|
2056
|
-
capabilities: [
|
|
2057
|
-
{ id: "augmented-admin:read-diagnostics", name: "Read Diagnostics", description: "Cross-org read of agent, host, integration, and alert diagnostics (projection only \u2014 never credentials or transcripts).", access: "read" }
|
|
2058
|
-
]
|
|
2059
|
-
},
|
|
2060
|
-
{
|
|
2061
|
-
// ENG-7023 (ADR-0031/0032): the per-org self-troubleshoot surface for the
|
|
2062
|
-
// `system_support` concierge agent. Provisions the
|
|
2063
|
-
// @integrity-labs/augmented-support-mcp stdio broker, which reads the
|
|
2064
|
-
// agent's OWN org diagnostics and proposes self-remediation writes
|
|
2065
|
-
// (create_agent) through the server-rendered HITL approval gate, all via
|
|
2066
|
-
// /host/support/*. `beta` while the concierge rolls out gradually (ENG-6975);
|
|
2067
|
-
// auth `none` - no end-user OAuth, the host JWT (org_id claim) is the
|
|
2068
|
-
// credential and the org-lock. NOT a customer-selectable integration: it is
|
|
2069
|
-
// attached automatically to system_support agents at provisioning.
|
|
2070
|
-
id: "augmented-support",
|
|
2071
|
-
name: "Augmented Support",
|
|
2072
|
-
category: "infrastructure",
|
|
2073
|
-
description: "Per-org self-troubleshoot concierge: reads your org's agents, hosts, integrations, alerts, flags, and audit log, files support/feature requests, and proposes new agents for human approval - all scoped to your own organization.",
|
|
2074
|
-
supported_auth_types: ["none"],
|
|
2075
|
-
beta: true,
|
|
2076
|
-
capabilities: [
|
|
2077
|
-
{ id: "augmented-support:read-diagnostics", name: "Read Diagnostics", description: "Read your own org's agents, hosts, integrations, alerts, flags, and audit log (projection only - never credentials or transcripts).", access: "read" },
|
|
2078
|
-
{ id: "augmented-support:file-requests", name: "File Requests", description: "File bug / feature / integration requests to Augmented Team support.", access: "write" },
|
|
2079
|
-
{ id: "augmented-support:propose-writes", name: "Propose Self-Remediation", description: "Propose creating an agent in your own org; executed only after a human approves a server-rendered diff.", access: "write" }
|
|
2080
|
-
]
|
|
2081
|
-
},
|
|
2082
|
-
{
|
|
2083
|
-
id: "custom",
|
|
2084
|
-
name: "Custom Integration",
|
|
2085
|
-
category: "custom",
|
|
2086
|
-
description: "Connect to any service via API key or webhook",
|
|
2087
|
-
supported_auth_types: ["api_key", "webhook", "none"],
|
|
2088
|
-
capabilities: [
|
|
2089
|
-
{ id: "custom:api-access", name: "API Access", description: "Generic API access with configured credentials", access: "read" }
|
|
2090
|
-
]
|
|
2091
|
-
}
|
|
2092
|
-
];
|
|
2093
|
-
var integrationMap = new Map(INTEGRATION_REGISTRY.map((i) => [i.id, i]));
|
|
2094
|
-
function getIntegration(id) {
|
|
2095
|
-
return integrationMap.get(id);
|
|
2096
|
-
}
|
|
2097
|
-
|
|
2098
1503
|
// ../../packages/core/dist/provisioning/hook-env.js
|
|
2099
1504
|
function augmentedHookPath(currentPath) {
|
|
2100
1505
|
const extras = [
|
|
@@ -6120,7 +5525,7 @@ function requireHost() {
|
|
|
6120
5525
|
}
|
|
6121
5526
|
|
|
6122
5527
|
// src/lib/api-client.ts
|
|
6123
|
-
var agtCliVersion = true ? "0.28.
|
|
5528
|
+
var agtCliVersion = true ? "0.28.198" : "dev";
|
|
6124
5529
|
var lastConfigHash = null;
|
|
6125
5530
|
function setConfigHash(hash) {
|
|
6126
5531
|
lastConfigHash = hash && hash.length > 0 ? hash : null;
|
|
@@ -7374,7 +6779,6 @@ export {
|
|
|
7374
6779
|
INTEGRATIONS_SECTION_START,
|
|
7375
6780
|
INTEGRATIONS_SECTION_END,
|
|
7376
6781
|
estimateActiveTasksTokens,
|
|
7377
|
-
getIntegration,
|
|
7378
6782
|
extractCommandNotFound,
|
|
7379
6783
|
CHANNEL_SECRET_ENV_KEYS,
|
|
7380
6784
|
provisionStopHook,
|
|
@@ -7425,4 +6829,4 @@ export {
|
|
|
7425
6829
|
managerInstallSystemUnitCommand,
|
|
7426
6830
|
managerUninstallSystemUnitCommand
|
|
7427
6831
|
};
|
|
7428
|
-
//# sourceMappingURL=chunk-
|
|
6832
|
+
//# sourceMappingURL=chunk-75XCRB6E.js.map
|