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.
- package/README.md +70 -38
- 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
|
|
87
|
+
│ └── main.go # Application entry point. Parses CLI flags and launches TUI or Quick Connect.
|
|
88
|
+
│
|
|
83
89
|
├── internal/
|
|
84
|
-
│ ├──
|
|
85
|
-
│ │ ├──
|
|
86
|
-
│ │
|
|
87
|
-
│
|
|
88
|
-
│ │ ├──
|
|
89
|
-
│ │
|
|
90
|
-
│ ├──
|
|
91
|
-
│ │ ├──
|
|
92
|
-
│ │ ├──
|
|
93
|
-
│ │ ├──
|
|
94
|
-
│
|
|
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
|
|
97
|
-
│ │ ├── bitwarden_config.go
|
|
98
|
-
│ │ ├── bitwarden_login_form.go
|
|
99
|
-
│ │ ├── bitwarden_organization_list.go
|
|
100
|
-
│ │ ├── bitwarden_unlock_form.go
|
|
101
|
-
│ │ ├── connection_list.go
|
|
102
|
-
│ │ ├──
|
|
103
|
-
│ │ ├──
|
|
104
|
-
│ │ ├──
|
|
105
|
-
│ │ ├──
|
|
106
|
-
│ │ ├──
|
|
107
|
-
│ │
|
|
108
|
-
│ ├──
|
|
109
|
-
│ ├──
|
|
110
|
-
│ ├──
|
|
111
|
-
│
|
|
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
|
-
│
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
├──
|
|
118
|
-
├──
|
|
119
|
-
├──
|
|
120
|
-
├──
|
|
121
|
-
├──
|
|
122
|
-
├──
|
|
123
|
-
|
|
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:**
|