Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.0.139] - 2025-05-24

### Fixed
- Fixed Bun sourcemap shim issue to improve source map support for projects using the "bunjs" runtime ([#346](https://github.com/agentuity/cli/pull/346))

## [v0.0.138] - 2025-05-23

### Changed
Expand Down Expand Up @@ -640,6 +645,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added project import checks for new agent creation


[v0.0.139]: https://github.com/agentuity/cli/compare/v0.0.138...v0.0.139
[v0.0.138]: https://github.com/agentuity/cli/compare/v0.0.137...v0.0.138
[v0.0.137]: https://github.com/agentuity/cli/compare/v0.0.136...v0.0.137
[v0.0.136]: https://github.com/agentuity/cli/compare/v0.0.135...v0.0.136
Expand Down
7 changes: 4 additions & 3 deletions internal/dev/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -595,10 +595,11 @@ func (s *Server) monitor() {
}

var (
logoColor = lipgloss.AdaptiveColor{Light: "#11c7b9", Dark: "#00FFFF"}
labelColor = lipgloss.AdaptiveColor{Light: "#999999", Dark: "#FFFFFF"}
labelStyle = lipgloss.NewStyle().Foreground(labelColor).Bold(true)
logoColor = lipgloss.AdaptiveColor{Light: "#11c7b9", Dark: "#00FFFF"}
labelColor = lipgloss.AdaptiveColor{Light: "#999999", Dark: "#FFFFFF"}
labelStyle = lipgloss.NewStyle().Foreground(labelColor).Bold(true)
)

func label(s string) string {
return labelStyle.Render(tui.PadRight(s, 10, " "))
}
Expand Down
Loading