threadwell 0.0.1 → 0.0.3
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 +3 -0
- package/README.md +402 -668
- package/dist/core/settings-manager.d.ts.map +1 -1
- package/dist/core/settings-manager.js +1 -1
- package/dist/core/settings-manager.js.map +1 -1
- package/dist/core/slash-commands.d.ts.map +1 -1
- package/dist/core/slash-commands.js +1 -0
- package/dist/core/slash-commands.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts +6 -0
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +75 -15
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/dist/utils/version-check.d.ts +3 -1
- package/dist/utils/version-check.d.ts.map +1 -1
- package/dist/utils/version-check.js +9 -5
- package/dist/utils/version-check.js.map +1 -1
- package/docs/settings.md +1 -1
- package/docs/usage.md +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -4,12 +4,15 @@
|
|
|
4
4
|
|
|
5
5
|
### Added
|
|
6
6
|
|
|
7
|
+
- Added `/update` to show Threadwell self-update instructions from inside the TUI.
|
|
7
8
|
- Added native continuity, enabled by default, that persists project-local continuity checkpoints, detects operational intent in normal user messages, updates native plan/queue state, and injects bounded re-entry context through the native context-provider path. The `continuity` setting can disable it.
|
|
8
9
|
- Added Ctrl+V smart paste on Windows for clipboard text and images, with Alt+V kept as a fallback.
|
|
9
10
|
- Added a `skillsEnabled` setting to toggle installed skills without deleting or moving skill files.
|
|
10
11
|
|
|
11
12
|
### Changed
|
|
12
13
|
|
|
14
|
+
- Changed Threadwell version checks to read the latest release from the npm registry and made update notices show the exact command to run.
|
|
15
|
+
- Changed startup What's New to include both the built-in highlights and changelog-derived entries when changelog content is available.
|
|
13
16
|
- Changed update, version-check, package manifest, and changelog link surfaces to use Engram branding and Engram-only runtime names.
|
|
14
17
|
|
|
15
18
|
## [0.73.1] - 2026-05-07
|