Clarify Agentbox names and invariants

Co-authored-by: codegirl007 <codegirl-007@users.noreply.github.com>
This commit is contained in:
Cursor Agent
2026-08-18 06:05:46 +00:00
co-authored by codegirl007
parent 4d2fb4a733
commit e702497996
11 changed files with 35 additions and 19 deletions
+8 -8
View File
@@ -11,10 +11,10 @@ import (
)
type manifest struct {
Command string `json:"command"`
Args []string `json:"args"`
Env map[string]string `json:"env"`
WindowTitle string `json:"window_title"`
Command string `json:"command"`
Args []string `json:"args"`
EnvironmentVariables map[string]string `json:"env"`
WindowTitle string `json:"window_title"`
}
// Resolve turns either an executable path or a directory containing
@@ -58,9 +58,9 @@ func Resolve(path string) (environment.Command, error) {
return environment.Command{}, errors.New("manifest command must be a regular executable file")
}
return environment.Command{
Path: commandPath,
Args: config.Args,
Env: config.Env,
WindowTitle: config.WindowTitle,
Path: commandPath,
Args: config.Args,
EnvironmentVariables: config.EnvironmentVariables,
WindowTitle: config.WindowTitle,
}, nil
}