You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Check unreleased changelog items, summarize by business value (max 150 chars per item)
3
+
---
4
+
1. Use `view_file` to read the `CHANGELOG.md` file and locate the `[Unreleased]` section.
5
+
2. Extract all the list items located under the `[Unreleased]` section.
6
+
3. Consolidate and rewrite these items into a proper list from a **higher business point-of-view** (POV). Focus on user impact, features, enhancements, or resolved critical issues rather than technical implementation details.
7
+
4. Ensure each new rewritten list item is **1 to 150 characters maximum**.
8
+
5. Use `replace_file_content` to safely replace only the `[Unreleased]` block in `CHANGELOG.md` with the newly formatted list.
9
+
6. Commit the changes using the message format `docs: format unreleased changelog [skip ci][skip dependabot]` or similar, ensuring exactly `[skip ci][skip dependabot]` is included at the end.
description: Fetch a GitHub issue and all its comments. Usage: /issue <number>
3
+
---
4
+
5
+
Fetch and display a GitHub issue with all comments.
6
+
7
+
Parse the input for the issue number. If it contains `owner/repo#number` or `owner/repo number`, use that repo. Otherwise detect with `gh repo view --json nameWithOwner -q .nameWithOwner`.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,11 @@
1
1
# Changelog
2
2
3
3
## [Unreleased]
4
-
- chore(deps): bump pnpm/action-setup from 4 to 5
5
-
- feat: Implement initial WorkGrid Studio website and project planning documents.
4
+
- Improved application stability and performance via core dependency updates.
5
+
- Launched the official WorkGrid Studio website and architecture documentation.
6
+
- Enhanced the AI assistant with robust new workflow capabilities and developer rules.
7
+
- Upgraded the SQL autocomplete engine for smarter, context-aware query suggestions.
8
+
- Integrated advanced code editing features across all query and table builder views.
6
9
7
10
## [0.2.0] - 2026-03-21
8
11
- Introduced a keybindings engine with `when`-expression context guards, a token-bucket notification system (toast + output panel routing), a lazy-loaded SQL formatter, a theme token engine, a connection URL parser, and a viewport-aware popup positioning utility.
0 commit comments