oh-my-adhd 0.2.23 → 0.2.25
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.
|
@@ -122,8 +122,13 @@ export function registerWikiImport(server) {
|
|
|
122
122
|
await fs.rename(tmp, threadFile);
|
|
123
123
|
}
|
|
124
124
|
// Project only allowed ThreadMeta fields — no arbitrary spread
|
|
125
|
-
const meta = {
|
|
126
|
-
|
|
125
|
+
const meta = {
|
|
126
|
+
id,
|
|
127
|
+
title,
|
|
128
|
+
updatedAt: typeof thread.updatedAt === "string" && Number.isFinite(Date.parse(thread.updatedAt))
|
|
129
|
+
? thread.updatedAt
|
|
130
|
+
: new Date().toISOString(),
|
|
131
|
+
};
|
|
127
132
|
if (typeof thread.is_open === "boolean")
|
|
128
133
|
meta.is_open = thread.is_open;
|
|
129
134
|
if (typeof thread.is_done === "boolean")
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oh-my-adhd",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.25",
|
|
4
4
|
"description": "ADHD second brain — zero-friction capture, auto context restore, unstick. MCP-native Claude Code plugin.",
|
|
5
|
-
"author": "
|
|
5
|
+
"author": "Haechan Jeong",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git+https://github.com/Yeachan-Heo/oh-my-adhd.git"
|