Skip to content
Merged
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
15 changes: 15 additions & 0 deletions docs/concepts/interaction-pattern-catalog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2061,6 +2061,21 @@ connector_runtime_policy = {
}
```

**Visual Model**

```mermaid
flowchart TD
A["Connector todo or packet proposes a live run"] --> B{"Runtime policy present?"}
B -->|"no"| C["fail closed: require the policy before the first run"]
B -->|"yes"| D{"access_mode"}
D -->|"private_metadata_only"| E["gate projection only, browser open stays closed"]
D -->|"public_metadata_only"| F["bounded metadata probe: head-only, forbidden prefixes blocked"]
D -->|"synthetic_fixture_only"| G["fixture only, no live route"]
E --> H["Owner decision unblocks the next stage"]
F --> H
G --> H
```

**Bad smell**

An agent opens a private connector's default web route because the page looks
Expand Down