Skip to content

Commit 783ead5

Browse files
committed
Bump version to 2.0.0 and update changelogs
1 parent ad4ae9f commit 783ead5

3 files changed

Lines changed: 49 additions & 2 deletions

File tree

README.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,16 @@ Nexus is a visual workflow editor for designing, composing, and exporting AI wor
2222

2323
- Save workflows locally and reload them later
2424
- Save reusable node configurations to the library
25-
- Browse and import pre-built agents, skills, and prompts from marketplace repositories
25+
- Browse and import pre-built agents, skills, and prompts from remote marketplace library repositories
2626
- Import and export workflow JSON files
2727
- Generate runnable workflow artifacts for `OpenCode`, `PI`, and `Claude Code`
2828
- Export generated files as a ZIP or write them directly into a target folder
29+
- Include generated `run-<workflow>.sh` and `run-<workflow>.bat` helper scripts with exported workflow artifacts
2930

3031
### 📝 Content and Agent Authoring
3132

3233
- Fullscreen editing for prompts and documents
34+
- Synced scrolling between editor and viewer in fullscreen prompt split view
3335
- Skill, document, and script attachments for richer agent behavior
3436
- Variable mapping and positional parameter mapping for generated workflows
3537
- Agent configuration for model, memory, tools, and temperature
@@ -160,6 +162,8 @@ Typical generated files include:
160162
- `skills/<skill-name>/SKILL.md`
161163
- `skills/<skill-name>/scripts/<script-file>`
162164
- `docs/<document-file>`
165+
- `run-<workflow-name>.sh`
166+
- `run-<workflow-name>.bat`
163167

164168
You can also:
165169

@@ -217,6 +221,27 @@ maps to:
217221

218222
These positional values can then be passed through agent parameter mappings inside the workflow.
219223

224+
### Optional generated runner scripts
225+
226+
Nexus also exports helper launchers next to the generated workflow artifacts:
227+
228+
- `run-<workflow-name>.sh` for Bash-compatible shells
229+
- `run-<workflow-name>.bat` for Windows Command Prompt
230+
231+
Run them from your repository root so the selected target CLI can receive the current project directory automatically.
232+
233+
Examples:
234+
235+
```bash
236+
bash run-my-workflow.sh
237+
bash run-my-workflow.sh customer-123
238+
```
239+
240+
```bat
241+
run-my-workflow.bat
242+
run-my-workflow.bat customer-123
243+
```
244+
220245
## Marketplace
221246

222247
Nexus can pull reusable agents, skills, and prompts from Git-hosted marketplace repositories. Marketplace items appear as read-only entries in the library panel.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nexus-workflow-studio",
3-
"version": "0.1.0",
3+
"version": "2.0.0",
44
"license": "MIT",
55
"packageManager": "bun@1.3.10",
66
"engines": {

src/lib/changelog.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,28 @@ export interface ChangelogEntry {
2121
// The first entry is always treated as the current version.
2222
// ─────────────────────────────────────────────────────────────────────────────
2323
export const CHANGELOG: ChangelogEntry[] = [
24+
{
25+
version: "2.0.0",
26+
date: "April 2, 2026",
27+
categories: [
28+
{
29+
category: "New",
30+
items: [
31+
"Remote marketplace library support for browsing and refreshing Git-hosted reusable agents, skills, and prompts directly inside the library panel",
32+
"Generated workflow runner scripts for both Bash and Windows Batch so exported workflows can be launched from repository roots more easily",
33+
],
34+
},
35+
{
36+
category: "Improved",
37+
items: [
38+
"Enhanced fullscreen prompt editor split-view scroll syncing between the editor and viewer",
39+
"Prompt AI generation optimized with tighter agent-file output instructions and cleaner platform-neutral prompt generation guidance",
40+
"Refactored the notification system into a compact stackable left-side toast experience",
41+
"Refined confirmation dialogs and related modal surfaces to better match the refreshed Nexus UI conventions",
42+
],
43+
},
44+
],
45+
},
2446
{
2547
version: "1.9.0",
2648
date: "March 29, 2026",

0 commit comments

Comments
 (0)