Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
c484005
Remove unused VERSION file
ampagent Jul 1, 2026
89a02c6
Merge pull request #83 from techulus/thread/T-019f1b42-1147-7729-80f6…
arjunkomath Jul 1, 2026
176e208
Dismiss control plane upgrade dialog on start
arjunkomath Jul 1, 2026
bf0e187
Merge pull request #92 from techulus/fix/control-plane-upgrade-dialog…
arjunkomath Jul 1, 2026
196a023
Add favicon metadata
arjunkomath Jul 1, 2026
a51395c
Merge pull request #93 from techulus/fix/favicon-metadata
arjunkomath Jul 1, 2026
97d4638
Show member invite validation errors
arjunkomath Jul 1, 2026
604615b
add agent output mode
techulus-agent Jul 2, 2026
dacd1fd
Address agent help review notes
techulus-agent Jul 2, 2026
972dfaf
Merge pull request #95 from techulus/codex/add-agent-output-mode
arjunkomath Jul 2, 2026
072cacc
Merge pull request #94 from techulus/fix/member-invite-errors
arjunkomath Jul 2, 2026
b014297
Add service details overview with request stats
techulus-agent Jul 2, 2026
ac71d02
Refine service details overview layout
techulus-agent Jul 2, 2026
e9d999c
Tighten service details header
techulus-agent Jul 2, 2026
964342d
Expand endpoints detail row
techulus-agent Jul 2, 2026
d8470ff
Move endpoints into details table
techulus-agent Jul 2, 2026
b0fc8a3
Simplify instances detail
techulus-agent Jul 2, 2026
897d397
Graph request stats by status code
techulus-agent Jul 2, 2026
b646c43
Update service details UI
arjunkomath Jul 2, 2026
c8af1f0
Merge pull request #96 from techulus/feat/service-details-request-stats
arjunkomath Jul 2, 2026
10a41eb
Merge release into release v0.23.0
arjunkomath Jul 2, 2026
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
1 change: 0 additions & 1 deletion VERSION

This file was deleted.

4 changes: 3 additions & 1 deletion cli/cmd/tc/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ var version = "dev"

func main() {
if err := cli.Execute(version, os.Stdin, os.Stdout, os.Stderr); err != nil {
fmt.Fprintln(os.Stderr, err)
if !cli.IsHandledError(err) {
fmt.Fprintln(os.Stderr, err)
}
os.Exit(1)
}
}
Loading
Loading