Skip to content
Merged
Show file tree
Hide file tree
Changes from 29 commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
703584e
Create env upward-mule
kpenfound Jun 26, 2025
b114e3b
Update env upward-mule
kpenfound Jun 26, 2025
ce23105
Write cmd/cu/configure.go
kpenfound Jun 26, 2025
a47ba49
Write cmd/cu/configure.go
kpenfound Jun 26, 2025
3a3c914
Update env upward-mule
kpenfound Jun 26, 2025
5ff61c3
Write cmd/cu/configure.go
kpenfound Jun 26, 2025
ce5f6c1
Write cmd/cu/configure.go
kpenfound Jun 26, 2025
e5fc167
Write cmd/cu/configure.go
kpenfound Jun 26, 2025
9d9f4bf
Write cmd/cu/configure.go
kpenfound Jun 26, 2025
8d95848
Write cmd/cu/configure.go
kpenfound Jun 26, 2025
7c44ace
Write cmd/cu/configure.go
kpenfound Jun 26, 2025
64a351d
Write cmd/cu/configure.go
kpenfound Jun 26, 2025
da49939
merge main
kpenfound Jul 3, 2025
011b676
reduce selections to claude, goose, cursor, codex, amazonq
kpenfound Jul 3, 2025
43b5573
Creating environment to modify the configureCodex function to handle …
kpenfound Jul 3, 2025
0d9628b
Adding a TOML library to handle TOML configuration files.
kpenfound Jul 3, 2025
3c8c2c1
Updating the configure.go file to make configureCodex actually modify…
kpenfound Jul 3, 2025
7271085
Formatting the code to ensure it follows Go conventions.
kpenfound Jul 3, 2025
3a183b2
add autoapprove to codex config
kpenfound Jul 3, 2025
f43c908
Adding bubbletea dependency for the improved interactive interface.
kpenfound Jul 3, 2025
f968135
Creating a new file for the bubbletea interactive interface for agent…
kpenfound Jul 3, 2025
dec6e89
Creating the bubbletea interactive UI for agent selection with a mode…
kpenfound Jul 3, 2025
b66552a
Updating the configure.go file to use the new bubbletea interactive i…
kpenfound Jul 3, 2025
9fb9b9b
Formatting the Go code to ensure it follows proper style guidelines.
kpenfound Jul 3, 2025
15f1a74
Removing icons from the agent selection interface - just showing agen…
kpenfound Jul 3, 2025
efff29c
FileRead: rename start_line_one_indexed to start_line_one_indexed_inc…
kpenfound Jul 3, 2025
5363f85
Merge environment humble-joey
kpenfound Jul 3, 2025
2d05143
FileRead: improve invalid range error handling
kpenfound Jul 3, 2025
74eae78
update agent descriptions
kpenfound Jul 3, 2025
13a8e36
embedded rules files, loaded mcp tools, and added todos
kpenfound Jul 4, 2025
c7c16c8
configure claude allow list
kpenfound Jul 4, 2025
1f55cf7
claude double underscore
kpenfound Jul 4, 2025
71a45b3
make configure re-entrant
kpenfound Jul 7, 2025
22e9c2d
refactor configurable agents into interface
kpenfound Jul 7, 2025
baa17dc
merge main
kpenfound Jul 8, 2025
8dcb828
fix lints
kpenfound Jul 8, 2025
3494920
update configs to be local where possible
kpenfound Jul 8, 2025
09c25ec
rename container-use binary
kpenfound Jul 8, 2025
447b8d4
add tests for configure tasks
kpenfound Jul 9, 2025
5b0d9df
merge main
kpenfound Jul 9, 2025
988a0fc
merge main conflict
kpenfound Jul 9, 2025
29fb79e
Creating environment to restructure the configure subcommand to be ac…
kpenfound Jul 9, 2025
62f2997
Creating a new config.go file that will contain the parent config com…
kpenfound Jul 9, 2025
182cf7a
Updating configure.go to change the command name from 'configure' to …
kpenfound Jul 9, 2025
12452f7
better configure tests
kpenfound Jul 9, 2025
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
2 changes: 1 addition & 1 deletion .container-use/environment.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
"git config --global user.name \"Test User\"",
"git config --global user.email \"test@dagger.com\""
]
}
}
6 changes: 3 additions & 3 deletions cmd/cu/checkout.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
)

var checkoutCmd = &cobra.Command{
Use: "checkout <env>",
Short: "Switch to an environment's branch locally",
Use: "checkout <env>",
Short: "Switch to an environment's branch locally",
Long: `Bring an environment's work into your local git workspace.
This creates a local branch from the environment's state so you can
explore files in your IDE, make changes, or continue development.`,
Expand Down Expand Up @@ -48,4 +48,4 @@ cu checkout fancy-mallard -b my-review-branch`,
func init() {
checkoutCmd.Flags().StringP("branch", "b", "", "Local branch name to use")
rootCmd.AddCommand(checkoutCmd)
}
}
Loading