@draht/coding-agent 2026.3.2-7 → 2026.3.2-9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/README.md +85 -94
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +1 -1
- package/dist/config.js.map +1 -1
- package/dist/migrations.d.ts +1 -1
- package/dist/migrations.d.ts.map +1 -1
- package/dist/migrations.js +3 -3
- package/dist/migrations.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +1 -1
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/dist/modes/interactive/theme/dark.json +1 -1
- package/dist/modes/interactive/theme/light.json +1 -1
- package/docs/compaction.md +12 -12
- package/docs/custom-provider.md +6 -6
- package/docs/development.md +1 -1
- package/docs/extensions.md +8 -8
- package/docs/json.md +4 -4
- package/docs/providers.md +1 -1
- package/docs/session.md +5 -5
- package/docs/themes.md +2 -2
- package/docs/tui.md +1 -1
- package/examples/extensions/README.md +2 -2
- package/examples/extensions/doom-overlay/README.md +1 -1
- package/examples/extensions/dynamic-resources/dynamic.json +1 -1
- package/examples/extensions/subagent/README.md +11 -11
- package/examples/sdk/README.md +1 -1
- package/package.json +5 -5
|
@@ -2338,7 +2338,7 @@ export class InteractiveMode {
|
|
|
2338
2338
|
showNewVersionNotification(newVersion) {
|
|
2339
2339
|
const action = theme.fg("accent", getUpdateInstruction("@draht/coding-agent"));
|
|
2340
2340
|
const updateInstruction = theme.fg("muted", `New version ${newVersion} is available. `) + action;
|
|
2341
|
-
const changelogUrl = theme.fg("accent", "https://github.com/
|
|
2341
|
+
const changelogUrl = theme.fg("accent", "https://github.com/draht-dev/draht/blob/main/packages/coding-agent/CHANGELOG.md");
|
|
2342
2342
|
const changelogLine = theme.fg("muted", "Changelog: ") + changelogUrl;
|
|
2343
2343
|
this.chatContainer.addChild(new Spacer(1));
|
|
2344
2344
|
this.chatContainer.addChild(new DynamicBorder((text) => theme.fg("warning", text)));
|