forked from anomalyco/opencode
-
Notifications
You must be signed in to change notification settings - Fork 2
Merge Dev into Integration #30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
5413b16
fix: split not a function error
rekram1-node c417fec
tweak: adjust invalid directory error message (#4567)
hbd 23ea8ba
Tui onboarding (#4569)
thdxr ca2b871
tui: simplify popular providers list to show only top 6 instead of ap…
thdxr d20ef56
tui: replace text shimmer with animated progress bar during model pro…
thdxr d842353
release: v1.0.84
b59def2
hide gpt5 nano
thdxr 2991547
release: v1.0.85
a67b616
chore: format code
actions-user File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,16 +1,21 @@ | ||
| export const EmptyBorder = { | ||
| topLeft: "", | ||
| bottomLeft: "", | ||
| vertical: "", | ||
| topRight: "", | ||
| bottomRight: "", | ||
| horizontal: " ", | ||
| bottomT: "", | ||
| topT: "", | ||
| cross: "", | ||
| leftT: "", | ||
| rightT: "", | ||
| } | ||
|
|
||
| export const SplitBorder = { | ||
| border: ["left" as const, "right" as const], | ||
| customBorderChars: { | ||
| topLeft: "", | ||
| bottomLeft: "", | ||
| ...EmptyBorder, | ||
| vertical: "┃", | ||
| topRight: "", | ||
| bottomRight: "", | ||
| horizontal: "", | ||
| bottomT: "", | ||
| topT: "", | ||
| cross: "", | ||
| leftT: "", | ||
| rightT: "", | ||
| }, | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
Version updated, but placement is unusual.
The version is set to 1.0.85 within the
scriptssection rather than at the root level of package.json. This is non-standard - typically the version field should be a top-level property. Verify this is intentional for this console app package.Run the following script to check if this is a pattern used elsewhere or an anomaly:
🏁 Script executed:
Length of output: 1194
Move version field to root level in packages/console/app/package.json.
Verification confirms this is an anomaly—all other 17 package.json files in the codebase place the version field at the root level. The version field should be moved from the
scriptssection to the package root to maintain consistency with the established project convention.🤖 Prompt for AI Agents