Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Contributing

`gbrain-connectors` is experimental. Phase 1 is a production-proven Composio-to-GBrain path; additional adapters follow only after the core record and sink contracts stabilize.
`gbrain-connectors` is experimental. Phase 1 has passed a bounded live canary but is not deployed as a long-running production connector; additional adapters follow only after the core record and sink contracts stabilize.

Every connector change must include synthetic tests for stable identity, replay/idempotency, source isolation, redacted errors, and failure recovery. Never contribute real provider payloads or personal data.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ bun install --frozen-lockfile
bun run check
```

The canonical gate runs Biome, TypeScript, 47 tests including disk-backed upgrade and synthetic E2E coverage, plus a Bun production build.
The canonical gate runs Biome, TypeScript, 51 tests including disk-backed upgrade and synthetic E2E coverage, plus a Bun production build.

## Runtime configuration

Expand Down
2 changes: 2 additions & 0 deletions src/connectors/composio/gmail/hydrator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import type { GmailMessage } from "./normalize";
import type { GmailHydrator } from "./pipeline";

const GMAIL_TOOL = "GMAIL_FETCH_MESSAGE_BY_MESSAGE_ID";
// Composio's authenticated tools API reports this as Gmail's published version;
// the same version passed the bounded read-only live canary documented in README.
const GMAIL_TOOL_VERSION = "00000000_00";

export interface ComposioToolExecutor {
Expand Down
Loading