Branches (9)

dev (default)

1293888 docs(README): bump to v0.19.3-fork.1

Click to expand commit body
Assisted-by: Claude Sonnet 4 via Crush

Amolith created

upstream

f508c6b chore(legal): @masroor-ahmad has signed the CLA

Charm created

add-slash-hint

2689348 feat(tui): show / hint when editor is empty

Click to expand commit body
Assisted-by: Claude Opus 4.5 via Crush

Amolith created

1224-interaction-notifications

e964d1e docs(notification): add 'em

Amolith created

1224-interaction-notifications-v2

a18fffb refactor(permission): remove duplicate code

Amolith created

fix-open-in-editor

2891a65 fix(editor): execute EDITOR with interp

Click to expand commit body
Current Crush gives the following error when I try to open my `EDITOR`
with `ctrl+o`:

```
Error reported error="exec: \"zed --wait\": executable file not found in $PATH" source=path/to/internal/tui/util/util.go:27
```

`exec.CommandContext` expect the first argument to be the executable
path, not include flags or other arguments or variables. This commit
introduces `ExecShell` in `internal/tui/util/util.go`, which uses
`mvdan.cc/sh/v3/interp` to parse and execute the EDITOR value as a full
line of shell.

Assisted-by: Claude Sonnet 4.5 via Crush

Amolith created

open-project-in-editor

793b933 feat(editor): add ctrl+. to open cwd

Click to expand commit body
Assisted-by: Claude Sonnet 4.5 via Crush

Amolith created

acp

281e7fa docs(readme): update "aws bedrock" to "amazon bedrock" (#1478)

Micah Walter created

load-user-context-files

59d95f1 feat(prompt): distinguish user/project context

Click to expand commit body
Separate user-defined memory paths from project-specific context paths.
Previously, memory paths were appended to context paths. Now, they are
passed distinctly to the prompt generator.

The CoderPrompt now formats project context within <project_context>
tags and user memory within <user_preferences> tags, each with a
specific explanatory header for the LLM. This allows for clearer
separation and potential prioritization by the model.

Issue: charmbracelet/crush#1050

Amolith created