Scaffold Altius IDE: VS Code fork branding + altius-agent extension#10
Merged
Merged
Conversation
…ension Adds ide/, a starting skeleton for an agentic Solana IDE built as a rebranded VS Code OSS fork (product.json overlay + bootstrap.sh, following the VSCodium pattern), plus the real product surface: a compiling altius-agent VS Code extension providing fleet dispatch (BeeAI ACP), scan findings as diagnostics, and a TxGuard-guided deploy flow. The extension runs in stock VS Code today; the fork build bundles it as a built-in.
daemon-blockint-tech
marked this pull request as ready for review
July 19, 2026 05:37
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Adds
ide/, a starting scaffold for Altius IDE — an agentic Solana development environment built as a rebranded VS Code OSS fork — plus the real, working part of it: a VS Code extension that surfaces Altius Code's existing agent fleet, security scanner, and guarded deploy pipeline directly in the editor.This repo already ships a fleet-dispatch PWA at
crates/altius-cli/assets/pwa; this is a separate, standalone GUI surface (a VS Code-based IDE), not a change to that PWA.Building a full custom VS Code distribution (Electron packaging, installers, signing, an update feed) is a multi-week effort in its own right and out of scope for one change. What's here is the reusable core of that effort:
ide/product.json— Altius IDE branding overlay (name, app ids, Open VSX extension gallery instead of the Microsoft Marketplace, telemetry off), merged onto an upstreamproduct.jsonby a small deep-merge script — the same pattern VSCodium uses.ide/build/bootstrap.sh+merge-product-json.js— clonesmicrosoft/vscodeat a pinned tag, applies the branding overlay, and bundles the extension below as a built-in.ide/extensions/altius-agent/— a real, compiling TypeScript extension (works in stock VS Code today, no fork required):altius/security/browser) against a runningaltius fleet serve, watch runs update, resume/deny/cancel approvals. Talks to the same BeeAI ACP/runs*API as the existing PWA client.Altius: Scan Project for Security Findingsrunsaltius scan --format json, surfaces findings as editor diagnostics (Problems panel + squiggles) and a tree grouped by severity.Altius: Guarded Deploy (Dry Run)runsaltius deploy --dry-run(policy + simulation only,FailClosedguarantees nothing signs).Altius: Guarded Deploy (Sign & Submit)runs the real pipeline behind a modal warning and a typed confirmation (replacing the CLI's interactive terminal prompt, since a spawned child process has no TTY to answer it), streaming TxGuard's policy/simulate/diff/audit/sign steps to an output channel.ide/vscode/(the upstream checkout) and allnode_modules//out/build output are gitignored — nothing beyond source and config is checked in.Test plan
npm install && npm run compileinide/extensions/altius-agent— compiles clean under strict TypeScript, no errors.node ide/build/merge-product-json.jsverified against a stub baseproduct.json— branding fields overlay correctly, arrays/objects merge as documented.ide/extensions/altius-agentin VS Code,F5to launch an Extension Development Host, exercise Fleet Dispatch against a localaltius fleet serve --offlineand Security Findings against a scanned fixture../ide/build/bootstrap.shend-to-end fork build (requires network + full Node/Electron toolchain, not run in this environment).Generated by Claude Code