Skip to main content
The OSS connector manifest. Every package at packages/connectors/<slug>/ ships one of these as src/manifest.ts.

Canonical URL

https://glide.co/schemas/agent-banking/v1/connector-manifest.json

Required fields

Example

Validating against the schema

The manifest is validated three ways:
  1. At build time by Zod via ConnectorManifest.parse(manifest).
  2. At PR time by scripts/validate-manifests.mjs (the connector-skill-ci CI gate).
  3. At publish time by the standards-implementer using the JSON Schema document directly:

Relation to capability interfaces

The capabilities array is the declaration; the actual TypeScript implementation lives at packages/connectors/_base/src/capabilities/<capability>.ts. The contract test suite (extending ContractTestSuite from @repo/connectors-base) asserts that each declared capability has a runtime implementation.

Reading list