claude-threads 0.25.0 → 0.26.0
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 +5 -0
- package/dist/index.js +13 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.26.0] - 2026-01-02
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- **Show active task in sticky message** - When Claude is working on tasks, the currently active (in-progress) task is now displayed in the sticky session message. This gives visibility into what Claude is currently working on without scrolling through the thread.
|
|
14
|
+
|
|
10
15
|
## [0.25.0] - 2026-01-02
|
|
11
16
|
|
|
12
17
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -20792,6 +20792,15 @@ function getTaskProgress(session) {
|
|
|
20792
20792
|
}
|
|
20793
20793
|
return null;
|
|
20794
20794
|
}
|
|
20795
|
+
function getActiveTask(session) {
|
|
20796
|
+
if (!session.lastTasksContent)
|
|
20797
|
+
return null;
|
|
20798
|
+
const match = session.lastTasksContent.match(/\uD83D\uDD04 \*\*([^*]+)\*\*/);
|
|
20799
|
+
if (match) {
|
|
20800
|
+
return match[1].trim();
|
|
20801
|
+
}
|
|
20802
|
+
return null;
|
|
20803
|
+
}
|
|
20795
20804
|
function getSessionTopic(session) {
|
|
20796
20805
|
if (session.sessionTitle) {
|
|
20797
20806
|
return session.sessionTitle;
|
|
@@ -20876,6 +20885,10 @@ async function buildStickyMessage(sessions, platformId, config) {
|
|
|
20876
20885
|
if (session.sessionDescription) {
|
|
20877
20886
|
lines.push(` _${session.sessionDescription}_`);
|
|
20878
20887
|
}
|
|
20888
|
+
const activeTask = getActiveTask(session);
|
|
20889
|
+
if (activeTask) {
|
|
20890
|
+
lines.push(` \uD83D\uDD04 _${activeTask}_`);
|
|
20891
|
+
}
|
|
20879
20892
|
}
|
|
20880
20893
|
lines.push("");
|
|
20881
20894
|
lines.push("_Mention me to start a session_ \xB7 `npm i -g claude-threads`");
|