-
Notifications
You must be signed in to change notification settings - Fork 80
Arazzo plugin UI enhancements #2142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
axewilledge
merged 15 commits into
wso2:arazzo-extension
from
HimethW:arazzo-extension-OTeL
Apr 30, 2026
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
c4b72a2
zoom level adjusted
HimethW ac40757
codelens changed to Try with AI
HimethW 5b3904c
combine the server starting messages
HimethW e8d0ba7
play button renamed
HimethW dfe7f72
add home button
HimethW 142ffb8
add view logs button
HimethW 4972b0c
refactor: update references from MCP server to arazzo server in exten…
HimethW 39b4c3d
terminal does not open when the play button is clicked
HimethW 5e2450d
new demo gifs added
HimethW cf87934
readme updated with the go runner
HimethW 40ab3f3
docs: update README
HimethW e24b47e
Merge branch 'arazzo-extension' of github.com:wso2/vscode-extensions …
HimethW 68a43bd
feat: add build script for cross-compilation of Arazzo Go Runner bina…
HimethW a2de68a
fix: ensure active tab resets correctly on node change in NodePropert…
HimethW cfbf7d4
docs: update README and removed the Go runner wording
HimethW File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| # build-binaries.ps1 | ||
|
|
||
| Write-Host "Starting cross-compilation for Arazzo Go Runner..." -ForegroundColor Cyan | ||
|
|
||
| # Ensure the local cli folder exists | ||
| if (-Not (Test-Path "cli")) { | ||
| New-Item -ItemType Directory -Path "cli" | Out-Null | ||
| } | ||
|
|
||
| # --- 1. WINDOWS (x64) --- | ||
| Write-Host "Building for Windows (x64)..." | ||
| $env:GOOS='windows' | ||
| $env:GOARCH='amd64' | ||
| go build -o cli/arazzo-designer-cli.exe ./cmd/ | ||
|
|
||
| # --- 2. MACOS (Intel) --- | ||
| Write-Host "Building for macOS (Intel amd64)..." | ||
| $env:GOOS='darwin' | ||
| $env:GOARCH='amd64' | ||
| go build -o cli/arazzo-designer-cli-darwin-amd64 ./cmd/ | ||
|
|
||
| # --- 3. MACOS (Apple Silicon) --- | ||
| Write-Host "Building for macOS (Apple Silicon arm64)..." | ||
| $env:GOOS='darwin' | ||
| $env:GOARCH='arm64' | ||
| go build -o cli/arazzo-designer-cli-darwin-arm64 ./cmd/ | ||
|
|
||
| # --- 4. LINUX (x64) --- | ||
| Write-Host "Building for Linux (x64 amd64)..." | ||
| $env:GOOS='linux' | ||
| $env:GOARCH='amd64' | ||
| go build -o cli/arazzo-designer-cli-linux-amd64 ./cmd/ | ||
|
|
||
| # --- 5. LINUX (ARM64) --- | ||
| Write-Host "Building for Linux (ARM64)..." | ||
| $env:GOOS='linux' | ||
| $env:GOARCH='arm64' | ||
| go build -o cli/arazzo-designer-cli-linux-arm64 ./cmd/ | ||
|
|
||
| # --- RESET ENVIRONMENT --- | ||
| Write-Host "Resetting environment variables back to Windows..." | ||
| $env:GOOS='windows' | ||
| $env:GOARCH='amd64' | ||
|
|
||
| # --- COPY TO EXTENSION FOLDER --- | ||
| $destination = "..\arazzo-designer-extension\cli" | ||
|
|
||
| Write-Host "Copying binaries to the extension folder ($destination)..." | ||
| if (-Not (Test-Path $destination)) { | ||
| New-Item -ItemType Directory -Path $destination | Out-Null | ||
| } | ||
|
|
||
| Copy-Item -Path "cli\*" -Destination $destination -Force | ||
|
|
||
| Write-Host "All done! Binaries are built and copied." -ForegroundColor Green |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+2.92 MB
workspaces/arazzo/arazzo-designer-extension/assets/v2_execution_demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.2 MB
workspaces/arazzo/arazzo-designer-extension/assets/v2_visualizer_demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.