feat: scaffold YShell engineering baseline - #2
Merged
Conversation
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.
Motivation
Description
package.json,vite.config.ts,tsconfig.json,index.html,src/main.tsx, application shell and components undersrc/(App, Workspace, TerminalPane, QuickConnectPanel, SessionSidebar, SettingsPanel, StatusBar), typed models insrc/bindings/types.ts, and IPC wrappers insrc/bindings/ipc.tswith a browser fallback.TerminalPaneand application styles insrc/styles/global.css, and added asaveSessionflow from quick connect to IPC.src-tauri/includingCargo.toml,tauri.conf.json,src-tauri/src/lib.rs,src-tauri/src/main.rs, commands (sessions_list,sessions_save,settings_load,terminal_open_local,terminal_open_ssh,terminal_close), configuration models (config/mod.rs) and aterminal::RuntimeRegistryto track runtimes..gitignoreand a smallsrc/features/logs/README.mddescribing future logging UI responsibilities.Testing
cargo fmt, which completed successfully.npm install, which could not complete because the npm registry returned HTTP 403 and frontend dependencies (e.g.,@tauri-apps/api) could not be downloaded.npm run typecheck(tsc --noEmit), which failed because the frontend dependencies/types were not available due to the blockednpm install.cargo check, which failed because crates.io index download was blocked (HTTP 403) and Rust dependencies could not be fetched.Codex Task