threadnote 0.7.7 → 0.7.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/README.md +11 -2
- package/dist/mcp_server.cjs +233 -196
- package/dist/threadnote.cjs +1673 -252
- package/docs/agent-instructions.md +2 -2
- package/docs/index.html +56 -32
- package/docs/share.md +20 -6
- package/manager/app.css +858 -0
- package/manager/app.js +37361 -0
- package/manager/index.html +14 -0
- package/package.json +15 -6
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<meta name="color-scheme" content="dark" />
|
|
7
|
+
<title>Threadnote Manager</title>
|
|
8
|
+
<link rel="stylesheet" href="/app.css" />
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<div id="root"></div>
|
|
12
|
+
<script src="/app.js"></script>
|
|
13
|
+
</body>
|
|
14
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "threadnote",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.9",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"main": "dist/threadnote.cjs",
|
|
6
6
|
"description": "Shared local context and handoffs for development agents",
|
|
@@ -35,21 +35,22 @@
|
|
|
35
35
|
"dist/",
|
|
36
36
|
"docs/",
|
|
37
37
|
"LICENSE",
|
|
38
|
+
"manager/",
|
|
38
39
|
"README.md",
|
|
39
40
|
"scripts/"
|
|
40
41
|
],
|
|
41
42
|
"scripts": {
|
|
42
|
-
"build": "npm run clean --silent && esbuild src/threadnote.ts --bundle --platform=node --format=cjs --target=node20 --outfile=dist/threadnote.cjs && esbuild src/mcp_server.ts --bundle --platform=node --format=cjs --target=node20 --outfile=dist/mcp_server.cjs",
|
|
43
|
+
"build": "npm run clean --silent && esbuild src/threadnote.ts --bundle --platform=node --format=cjs --target=node20 --outfile=dist/threadnote.cjs && esbuild src/mcp_server.ts --bundle --platform=node --format=cjs --target=node20 --outfile=dist/mcp_server.cjs && esbuild src/manager_ui.tsx --bundle --platform=browser --format=iife --target=es2020 --outfile=manager/app.js",
|
|
43
44
|
"clean": "rm -rf dist",
|
|
44
45
|
"dev": "tsx src/threadnote.ts",
|
|
45
46
|
"dev:mcp-server": "tsx src/mcp_server.ts",
|
|
46
|
-
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
47
|
-
"lint:fix": "eslint \"src/**/*.ts\" \"test/**/*.ts\" --fix",
|
|
47
|
+
"lint": "eslint \"src/**/*.{ts,tsx}\" \"test/**/*.ts\"",
|
|
48
|
+
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" \"test/**/*.ts\" --fix",
|
|
48
49
|
"prepare": "husky",
|
|
49
50
|
"precommit": "npm run lint && npm run prettier:check && npm run test",
|
|
50
51
|
"prepack": "npm run build",
|
|
51
|
-
"prettier:check": "prettier --check \"**/*.{ts,js,cjs,json,md,yaml,yml}\"",
|
|
52
|
-
"prettier:write": "prettier --write \"**/*.{ts,js,cjs,json,md,yaml,yml}\"",
|
|
52
|
+
"prettier:check": "prettier --check \"**/*.{ts,tsx,js,cjs,json,md,yaml,yml,css,html}\"",
|
|
53
|
+
"prettier:write": "prettier --write \"**/*.{ts,tsx,js,cjs,json,md,yaml,yml,css,html}\"",
|
|
53
54
|
"test": "vitest run",
|
|
54
55
|
"test:watch": "vitest",
|
|
55
56
|
"test:coverage": "vitest run --coverage",
|
|
@@ -67,6 +68,8 @@
|
|
|
67
68
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
68
69
|
"@types/js-yaml": "^4.0.9",
|
|
69
70
|
"@types/node": "^25.6.0",
|
|
71
|
+
"@types/react": "^19.2.16",
|
|
72
|
+
"@types/react-dom": "^19.2.3",
|
|
70
73
|
"@vitest/coverage-v8": "^4.1.7",
|
|
71
74
|
"commander": "^14.0.3",
|
|
72
75
|
"esbuild": "^0.27.7",
|
|
@@ -75,10 +78,16 @@
|
|
|
75
78
|
"husky": "^9.1.7",
|
|
76
79
|
"js-yaml": "^4.1.1",
|
|
77
80
|
"prettier": "^3.8.3",
|
|
81
|
+
"react": "^19.2.7",
|
|
82
|
+
"react-dom": "^19.2.7",
|
|
78
83
|
"tsx": "^4.21.0",
|
|
79
84
|
"typescript": "^6.0.3",
|
|
80
85
|
"typescript-eslint": "^8.59.2",
|
|
81
86
|
"vitest": "^4.1.7",
|
|
82
87
|
"zod": "^4.4.3"
|
|
88
|
+
},
|
|
89
|
+
"dependencies": {
|
|
90
|
+
"react-markdown": "^10.1.0",
|
|
91
|
+
"remark-gfm": "^4.0.1"
|
|
83
92
|
}
|
|
84
93
|
}
|