@parallel-cli/parallel 0.4.1 → 0.4.4
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/CHANGELOG.md +149 -0
- package/README.md +183 -195
- package/dist/agents/agent.js +2 -2
- package/dist/agents/tools.js +47 -5
- package/dist/commands.js +117 -18
- package/dist/config.js +248 -63
- package/dist/controller.js +48 -17
- package/dist/i18n.js +192 -44
- package/dist/index.js +8 -5
- package/dist/pricing.js +162 -54
- package/dist/ui/App.js +208 -102
- package/dist/ui/CommandInput.js +42 -17
- package/dist/ui/SettingsPanel.js +224 -34
- package/dist/ui/Wizard.js +33 -3
- package/dist/ui/views.js +53 -21
- package/package.json +10 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to Parallel are documented here.
|
|
4
|
+
|
|
5
|
+
## 0.4.4 - 2026-06-23
|
|
6
|
+
|
|
7
|
+
### 0.4.4 Added
|
|
8
|
+
|
|
9
|
+
- Added tool-level safeguards for `/ask` and `/plan`: ask agents cannot mutate project state, and plan agents must get explicit approval before mutating files or running risky shell commands.
|
|
10
|
+
- Added session-only provider setup for `/settings-session`, with an explicit choice between temporary session use and saving globally.
|
|
11
|
+
- Expanded `/doctor` into actionable readiness diagnostics for provider, model, key, local endpoints, attach socket, `git`, and `gh`.
|
|
12
|
+
- Added scrolling/windowing budgets to long TUI views such as board, notes, diffs, cost, skills, specialists, and sessions.
|
|
13
|
+
- Added saved-session restore hints and clearer `/restore` errors.
|
|
14
|
+
|
|
15
|
+
### 0.4.4 Changed
|
|
16
|
+
|
|
17
|
+
- Reworked the README to render consistently on both GitHub and npm.
|
|
18
|
+
- Replaced wide Markdown tables and fixed-width command blocks with npm-friendly lists.
|
|
19
|
+
- Removed provider-specific environment variable guidance from the public README so provider setup remains neutral.
|
|
20
|
+
- Documented DeepSeek only as one provider preset in the Chinese provider group, not as a special standalone setup path.
|
|
21
|
+
- Made `@all` steer active agents directly instead of only posting a passive note.
|
|
22
|
+
- Made `/plan` timeouts safe by requiring manual approval before mutations are unlocked.
|
|
23
|
+
- Increased the saved sessions list window from 8 to 20 and shows `/save [name]` labels in `/sessions`.
|
|
24
|
+
- Bumped the TUI header version to `0.4.4`.
|
|
25
|
+
|
|
26
|
+
### 0.4.4 Fixed
|
|
27
|
+
|
|
28
|
+
- Fixed `/commit message...` with exactly one agent so the first word is treated as part of the message, not as a missing agent name.
|
|
29
|
+
- Fixed `/project` and `/wizard` transitions by warning when active agents are running unless `--force` is passed.
|
|
30
|
+
- Fixed local/custom provider setup so localhost endpoints do not require an API key and placeholder models are not considered ready.
|
|
31
|
+
- Fixed stale focus after agents disappear through clear, stop, project switch, session load, or restore.
|
|
32
|
+
- Fixed `/settings-session` key entry so provider setup reaches the session-only vs global-save choice instead of returning early.
|
|
33
|
+
- Fixed first-run custom provider setup so it reviews/edits endpoints and skips API keys for localhost endpoints.
|
|
34
|
+
- Fixed filesystem boundary checks so agent tools reject sibling paths with a shared project-root prefix.
|
|
35
|
+
- Fixed TUI clipping risks by budgeting the hub by rendered rows and applying body-height windowing to notes/diffs.
|
|
36
|
+
- Fixed Settings Escape handling so typed inputs clear before navigating back.
|
|
37
|
+
|
|
38
|
+
## 0.4.3 - 2026-06-23
|
|
39
|
+
|
|
40
|
+
### 0.4.3 Added
|
|
41
|
+
|
|
42
|
+
- Added a guided provider setup flow in both first-run wizard and settings: provider, model, endpoint review, API key, then save/default selection.
|
|
43
|
+
- Added endpoint review and endpoint editing for provider presets and configured providers.
|
|
44
|
+
- Added first-class local/no-key provider semantics for Ollama and vLLM/SGLang.
|
|
45
|
+
- Added `/project` and `/folder` commands to reopen the project picker or switch project folder from inside the TUI.
|
|
46
|
+
- Added `/wizard` and `/setup` commands to relaunch setup without restarting with `--first-run`.
|
|
47
|
+
- Added keyboard selection for slash command and `@agent` suggestions.
|
|
48
|
+
- Added viewport/windowing support for long wizard/settings lists.
|
|
49
|
+
- Added Up/Down scrolling for long static views such as `/help`.
|
|
50
|
+
- Added `CHANGELOG.md` to public release documentation.
|
|
51
|
+
|
|
52
|
+
### 0.4.3 Changed
|
|
53
|
+
|
|
54
|
+
- Refreshed the provider and model catalog across 29 presets.
|
|
55
|
+
- Refreshed built-in pricing entries and made pricing lookup case-insensitive.
|
|
56
|
+
- Reworked settings provider details to expose model changes, endpoint editing, key changes, key clearing, default selection, pricing, and removal.
|
|
57
|
+
- Hid `/key` from visible help/autocomplete; provider keys are now guided through `/settings`.
|
|
58
|
+
- Updated CLI help, TUI help, and README to document current commands and provider flows.
|
|
59
|
+
- Updated the hardcoded TUI header version to `0.4.3`.
|
|
60
|
+
- Corrected npm metadata to point at `Nil06/parallel-cli`.
|
|
61
|
+
|
|
62
|
+
### 0.4.3 Fixed
|
|
63
|
+
|
|
64
|
+
- Fixed preset providers skipping model selection and endpoint review before API key entry.
|
|
65
|
+
- Fixed session settings accidentally behaving like global provider mutation in several flows.
|
|
66
|
+
- Fixed bare model IDs containing `:` such as `qwen3-coder:480b`.
|
|
67
|
+
- Fixed stale default provider normalization during config load and provider removal.
|
|
68
|
+
- Fixed provider-specific environment overrides leaking into whichever provider happened to be default.
|
|
69
|
+
- Fixed local endpoints being blocked by missing API keys.
|
|
70
|
+
- Fixed sensitive `/key ...` entries being stored in input history.
|
|
71
|
+
- Fixed tiny pseudo-TTY dimensions causing negative string repeat values in the TUI header.
|
|
72
|
+
|
|
73
|
+
## 0.4.2 - 2026-06-22
|
|
74
|
+
|
|
75
|
+
### 0.4.2 Added
|
|
76
|
+
|
|
77
|
+
- Expanded provider presets from 18 to 29.
|
|
78
|
+
- Added new provider categories: Western, Chinese, Gateways, Inference, and Local.
|
|
79
|
+
- Added MiniMax, Z.ai / GLM, Alibaba / Qwen, Moonshot / Kimi, Xiaomi / MiMo, StepFun, SiliconFlow, Atlas Cloud, Requesty, Vercel AI Gateway, and vLLM/SGLang presets.
|
|
80
|
+
- Added provider category metadata for cleaner Wizard and Settings grouping.
|
|
81
|
+
- Added a larger built-in model pricing catalog.
|
|
82
|
+
|
|
83
|
+
### 0.4.2 Changed
|
|
84
|
+
|
|
85
|
+
- Reworked the README provider section to be provider-agnostic.
|
|
86
|
+
- Updated provider tables, endpoint documentation, and model catalog references.
|
|
87
|
+
- Removed internal docs from remote tracking and kept them out of the public package.
|
|
88
|
+
|
|
89
|
+
### 0.4.2 Fixed
|
|
90
|
+
|
|
91
|
+
- Fixed Settings showing only configured providers instead of all presets in the Providers submenu.
|
|
92
|
+
- Fixed README coherence around provider count, missing commands, approvals, repository metadata, and environment variables.
|
|
93
|
+
|
|
94
|
+
## 0.4.1 - 2026-06-22
|
|
95
|
+
|
|
96
|
+
### 0.4.1 Added
|
|
97
|
+
|
|
98
|
+
- Added 10 new provider presets.
|
|
99
|
+
- Added Ollama as a first-class local preset with automatic connectivity check and model detection.
|
|
100
|
+
- Added custom provider setup for any OpenAI-compatible endpoint.
|
|
101
|
+
- Added provider removal from Settings.
|
|
102
|
+
|
|
103
|
+
### 0.4.1 Changed
|
|
104
|
+
|
|
105
|
+
- Redesigned the provider wizard around grouped provider categories.
|
|
106
|
+
- Reorganized Settings so provider keys, models, pricing, add/remove, and defaults are managed under a Providers submenu.
|
|
107
|
+
- Reduced Settings root menu complexity.
|
|
108
|
+
|
|
109
|
+
## 0.4.0 - 2026-06-22
|
|
110
|
+
|
|
111
|
+
### 0.4.0 Added
|
|
112
|
+
|
|
113
|
+
- Added explicit agent modes: `/ask`, `/task`, and `/plan`.
|
|
114
|
+
- Added aliases `/a`, `/t`, and `/p`.
|
|
115
|
+
- Added dedicated agent terminals through `parallel attach`.
|
|
116
|
+
- Added automatic dedicated terminal opening with `/attach on`.
|
|
117
|
+
- Added focus mode for routing plain input to one agent.
|
|
118
|
+
- Added live telemetry in the hub and attached terminals.
|
|
119
|
+
- Added structured timeline presentation for agent activity.
|
|
120
|
+
- Added UI translations for English, French, Spanish, and Chinese.
|
|
121
|
+
- Added color-coded system messages by severity.
|
|
122
|
+
- Added safer test script behavior when local tests are absent.
|
|
123
|
+
|
|
124
|
+
### 0.4.0 Changed
|
|
125
|
+
|
|
126
|
+
- Redesigned the control room UI with a compact ASCII header and improved agent rows.
|
|
127
|
+
- Reworked command grouping and alias resolution.
|
|
128
|
+
- Reworked attached terminal command handling around modern agent modes.
|
|
129
|
+
- Kept source tests local/internal instead of remote-tracked.
|
|
130
|
+
|
|
131
|
+
### 0.4.0 Removed
|
|
132
|
+
|
|
133
|
+
- Removed the visible `/spawn` command in favor of `/task`.
|
|
134
|
+
|
|
135
|
+
### 0.4.0 Fixed
|
|
136
|
+
|
|
137
|
+
- Fixed missing i18n strings in commands.
|
|
138
|
+
- Fixed several TUI layout issues around headers, root height, arrow focus guards, and small terminals.
|
|
139
|
+
- Fixed rapid repeated `/pause` behavior.
|
|
140
|
+
|
|
141
|
+
## 0.3.3 - 2026-06-12
|
|
142
|
+
|
|
143
|
+
### 0.3.3 Added
|
|
144
|
+
|
|
145
|
+
- Initial public release.
|
|
146
|
+
- Added the Parallel TUI control room for running multiple coding agents on one project.
|
|
147
|
+
- Added OpenAI-compatible provider configuration.
|
|
148
|
+
- Added session state, agent coordination, shared notes, file activity, diffs, approvals, and basic command dispatch.
|
|
149
|
+
- Added npm binaries: `parallel` and `prl`.
|