ssh-x-term 1.1.4 → 1.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +70 -38
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -77,50 +77,82 @@ Seamlessly transfer files without leaving the app.
77
77
 
78
78
  ```
79
79
  ssh-x-term/
80
+ ├── .github/
81
+ │ ├── ISSUE_TEMPLATE/ # GitHub issue templates (bug, feature, etc.)
82
+ │ ├── workflows/ # CI/CD definitions (Go build workflow)
83
+ │ └── dependabot.yml # Dependency update automation
84
+
80
85
  ├── cmd/
81
86
  │ └── sxt/
82
- │ └── main.go # Application entry point
87
+ │ └── main.go # Application entry point. Parses CLI flags and launches TUI or Quick Connect.
88
+
83
89
  ├── internal/
84
- │ ├── config/
85
- │ │ ├── bitwarden.go # Bitwarden vault integration and management
86
- │ │ ├── config.go # Local configuration handling with go-keyring
87
- ├── models.go # Configuration data models
88
- │ │ ├── pathutil.go # Path utilities (home directory expansion)
89
- │ │ └── storage.go # Storage interface definition
90
- │ ├── ssh/
91
- │ │ ├── client.go # SSH client implementation
92
- │ │ ├── session_bubbletea_unix.go # SSH session management (Unix)
93
- │ │ ├── session_bubbletea_windows.go # SSH session management (Windows)
94
- └── ui/
90
+ │ ├── cli/ # Quick-connect CLI features.
91
+ │ │ ├── connector.go # Handles establishing SSH connections via CLI.
92
+ │ │ └── selector.go # Handles selection/picking of connections in CLI.
93
+ │ ├── config/ # Manages configuration, credential, and storage subsystems.
94
+ │ │ ├── bitwarden.go # Bitwarden vault integration and management via CLI.
95
+ │ │ ├── config.go # Handles local config and secure keyring storage (go-keyring).
96
+ ├── migrate.go # Migrates old config formats to new SSH config style.
97
+ │ │ ├── models.go # Configuration data models.
98
+ │ │ ├── pathutil.go # Path resolution helpers (e.g., home directory expansion).
99
+ │ │ ├── sshconfig.go # SSH config file parsing, generation, and backup.
100
+ │ ├── sshconfig_test.go # Unit tests for SSH config handling.
101
+ │ │ └── storage.go # Storage provider interfaces for credentials.
102
+ │ ├── ssh/ # SSH client, session, and SFTP-related code.
103
+ │ │ ├── client.go # Core SSH client: connection and authentication.
104
+ │ │ ├── session_bubbletea_unix.go # SSH session management for Unix systems.
105
+ │ │ ├── session_bubbletea_windows.go # For Windows systems.
106
+ │ │ ├── sftp.go # SFTP file transfer logic.
107
+ │ │ ├── sftp_unix.go # Unix-specific SFTP features.
108
+ │ │ └── sftp_windows.go # Windows-specific SFTP features.
109
+ │ └── ui/ # Bubble Tea TUI (Text UI): models, logic, and components.
95
110
  │ ├── components/
96
- │ │ ├── bitwarden_collection_list.go # Bitwarden collection selector
97
- │ │ ├── bitwarden_config.go # Bitwarden CLI configuration form
98
- │ │ ├── bitwarden_login_form.go # Bitwarden login form component
99
- │ │ ├── bitwarden_organization_list.go # Bitwarden organization selector
100
- │ │ ├── bitwarden_unlock_form.go # Bitwarden unlock form component
101
- │ │ ├── connection_list.go # List of SSH connections
102
- │ │ ├── form.go # Form for adding/editing connections
103
- │ │ ├── scp_manager.go # SCP/SFTP File Manager component
104
- │ │ ├── storage_select.go # Credential storage selection (Local/Bitwarden)
105
- │ │ ├── terminal.go # Terminal component for SSH sessions
106
- │ │ ├── vterm.go # Virtual terminal component integrated inside Bubble Tea
107
- │ │ └── vterm_test.go # Virtual terminal tests
108
- │ ├── connection_handler.go # Connection lifecycle management
109
- │ ├── model.go # Main UI model and state
110
- │ ├── update.go # Update logic for UI events
111
- └── view.go # View rendering logic
111
+ │ │ ├── bitwarden_collection_list.go # Bitwarden collection picker.
112
+ │ │ ├── bitwarden_config.go # Bitwarden CLI configuration form.
113
+ │ │ ├── bitwarden_login_form.go # Bitwarden login UI.
114
+ │ │ ├── bitwarden_organization_list.go # Organization select for vault.
115
+ │ │ ├── bitwarden_unlock_form.go # Bitwarden vault unlock UI.
116
+ │ │ ├── connection_list.go # List and picker of SSH connections.
117
+ │ │ ├── delete_confirmation.go # Confirm deletion UI dialog.
118
+ │ │ ├── form.go # Common connection add/edit form.
119
+ │ │ ├── scp_manager.go # SCP/SFTP dual pane file manager.
120
+ │ │ ├── ssh_passphrase_form.go # UI for passphrase input.
121
+ │ │ ├── storage_select.go # Local vs Bitwarden credential storage UI.
122
+ │ │ ├── styles.go # Common style definitions.
123
+ ├── terminal.go # Terminal emulation inside TUI.
124
+ ├── terminal_test.go # Terminal tests.
125
+ ├── vterm.go # Bubble Tea virtual terminal emulator.
126
+ │ ├── vterm_color_test.go # Color support tests for terminal.
127
+ │ │ └── vterm_test.go # Virtual terminal tests.
128
+ │ ├── connection_handler.go # Connection lifecycle management logic.
129
+ │ ├── model.go # Main UI state model: app state, active component, etc.
130
+ │ ├── update.go # Update logic for events in the UI.
131
+ │ └── view.go # UI rendering logic.
132
+
112
133
  ├── pkg/
113
134
  │ └── sshutil/
114
- └── auth.go # Authentication utilities
115
- ├── go.mod # Go module dependencies
116
- ├── go.sum # Go module checksums
117
- ├── package.json # npm package configuration
118
- ├── index.js # npm entry point
119
- ├── install.js # npm post-install script
120
- ├── LICENSE # MIT License
121
- ├── CONTRIBUTING.md # Contribution guidelines
122
- ├── FLOW.md # Application flow documentation
123
- └── README.md # This file
135
+ ├── auth.go # Authentication helper/utilities (e.g. key parsing).
136
+ │ └── list_ssh_keys.go # Helpers to find and list private SSH keys.
137
+
138
+ ├── demo.sh # Shell script to demo app or CLI usage.
139
+ ├── go.mod # Go module dependencies.
140
+ ├── go.sum # Go module package checksums.
141
+ ├── index.js # Node.js entry point for npm package: downloads binary, runs app.
142
+ ├── install.js # Node.js install script auto-downloads proper binary for platform/arch.
143
+ ├── LICENSE # MIT License.
144
+ ├── package.json # npm package metadata.
145
+ ├── FLOW.md # Detailed flow/features/architecture of application.
146
+ ├── CONTRIBUTING.md # Contribution guidelines.
147
+ ├── IMPLEMENTATION.md # Technical implementation details.
148
+ ├── MIGRATION.md # Migration instructions for config/data upgrade between versions.
149
+ ├── COLOR_SUPPORT.md # Documentation for color/terminal support.
150
+ ├── logo.svg # Project logo.
151
+ ├── media/
152
+ │ ├── demo.gif # Demo GIF for UI.
153
+ │ └── demo.mp4 # Demo video for UI.
154
+ └── README.md # Main documentation.
155
+
124
156
  ```
125
157
 
126
158
  **Note:**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ssh-x-term",
3
- "version": "1.1.4",
3
+ "version": "1.1.6",
4
4
  "description": "TUI to handle multiple SSH connections simultaneously",
5
5
  "main": "index.js",
6
6
  "bin": {