opencode
opencode copied to clipboard
[FEATURE]: update base prompt to remove obvious comments
Feature hasn't been suggested before.
- [x] I have verified this feature I'm about to request hasn't been suggested before.
Describe the enhancement you want to request
code output generates obvious comments which needs cleanup manually with using extra tokens.
⋮ 95 │ // Create parent directories if they don't exist
⋮ 96 │ dir := filepath.Dir(rootCfg.Path)
⋮ 97 │ if err := os.MkdirAll(dir, 0755); err != nil {
⋮ 98 │ return err
⋮ 99 │ }
⋮ 100│