Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
ad83676
feat(docs): fill documentation gaps across platform features
waleedlatif1 Apr 11, 2026
a0b35f5
fix(docs): address PR review comments on chat OTP cookies and MCP env…
waleedlatif1 Apr 11, 2026
6f3d1ad
fix(docs): replace smart quotes with straight quotes in JSX attributes
waleedlatif1 Apr 11, 2026
5fbfa11
update(docs): update mcp, custom tools, and variables docs
TheodoreSpeaks Apr 16, 2026
c0de014
Fix grammar
TheodoreSpeaks Apr 16, 2026
99a1ac0
Merge branch 'doc/update-mcp' into waleedlatif1/docs-gap-audit
TheodoreSpeaks Apr 16, 2026
1c334aa
mothership docs, tags, connectors, api, chat deploy, etc
waleedlatif1 Apr 16, 2026
924faf1
more info
waleedlatif1 Apr 16, 2026
87d346e
more
waleedlatif1 Apr 16, 2026
927a693
feat(docs): auto-generate per-provider trigger documentation
waleedlatif1 Apr 16, 2026
9f07102
refactor(docs): align trigger docs structure with tools docs
waleedlatif1 Apr 16, 2026
b11ee34
refactor(docs): use human-readable names for trigger section headings
waleedlatif1 Apr 16, 2026
35beb7e
fix(docs): resolve subBlock builder functions for all trigger Config …
waleedlatif1 Apr 16, 2026
be23128
fix(docs): correctly destructure nested implicit-object trigger outputs
waleedlatif1 Apr 16, 2026
6a937f1
chore(docs): update static trigger and start page images
waleedlatif1 Apr 16, 2026
9473851
feat(providers): add claude-opus-4-7 model with adaptive thinking sup…
waleedlatif1 Apr 16, 2026
0680d3e
Add workflow version screenshots
TheodoreSpeaks Apr 16, 2026
24387e7
Add function block screenshots
TheodoreSpeaks Apr 16, 2026
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
Prev Previous commit
Next Next commit
fix(docs): replace smart quotes with straight quotes in JSX attributes
  • Loading branch information
waleedlatif1 committed Apr 11, 2026
commit 6f3d1ad9cdd24695c7002ffa5905968b72a180d4
12 changes: 6 additions & 6 deletions apps/docs/content/docs/en/execution/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ Each workflow maintains a rich context during execution containing:

## Deployment Snapshots

API, Chat, Schedule, and Webhook executions run against the workflows active deployment snapshot. Manual runs from the editor execute the current draft canvas state, letting you test changes before deploying. Publish a new deployment whenever you change the canvas so every trigger uses the updated version.
API, Chat, Schedule, and Webhook executions run against the workflow's active deployment snapshot. Manual runs from the editor execute the current draft canvas state, letting you test changes before deploying. Publish a new deployment whenever you change the canvas so every trigger uses the updated version.

<div className=flex justify-center my-6>
<div className="flex justify-center my-6">
<Image
src=/static/execution/deployment-versions.png
alt=Deployment versions table
src="/static/execution/deployment-versions.png"
alt="Deployment versions table"
width={500}
height={280}
className=rounded-xl border border-border shadow-sm
className="rounded-xl border border-border shadow-sm"
/>
</div>

Expand All @@ -88,7 +88,7 @@ From the version table you can:
- **Rename** a version to give it a meaningful label (e.g., "v2 — added error handling")
- **Add a description** with notes about what changed in that deployment
- **Promote to live** to roll back to an older version — this makes the selected version the active deployment without changing your draft canvas
- **Load into editor** to restore a previous versions workflow into the canvas for editing and redeploying
- **Load into editor** to restore a previous version's workflow into the canvas for editing and redeploying
- **Preview a version** by selecting a row, then toggle between viewing the live deployment and the selected version in the canvas

{/* TODO: Screenshot of the version preview toggle (live vs selected) */}
Expand Down
Loading