threadnote 1.3.0 → 1.3.2
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.
|
@@ -137,6 +137,11 @@ The MCP tool `share_publish` runs the same scrubber as the CLI and refuses to pu
|
|
|
137
137
|
patterns (PEM private keys, `sk-...`, `gh[pousr]_...`, `Bearer ...`, `AKIA...`, `xox[abprs]-...`). It writes and pushes
|
|
138
138
|
the shared copy first, then removes the personal copy after the push succeeds.
|
|
139
139
|
|
|
140
|
+
When creating a GitHub PR or otherwise opening a review request, check for configured Threadnote shares first with
|
|
141
|
+
`threadnote share list` or the equivalent available share-team lookup. If one or more shares exist, ask the user whether
|
|
142
|
+
they want to publish a durable feature memory to help reviewers before sharing anything. If more than one share exists,
|
|
143
|
+
show the available teams as an option select when supported, or list the teams and ask which one to use.
|
|
144
|
+
|
|
140
145
|
The MCP tool `share_skill` shares a local Codex/Claude `SKILL.md` file or Claude command markdown file into the team's
|
|
141
146
|
`agent-artifacts/` catalog after the same scrubber checks. Shared artifacts are recallable after sync, but local
|
|
142
147
|
installation remains opt-in with `threadnote share install-artifacts --apply`.
|
|
@@ -197,6 +202,7 @@ threadnote compact --project example --topic active-issue --dry-run
|
|
|
197
202
|
threadnote archive viking://user/example/memories/handoffs/active/example/old-issue.md
|
|
198
203
|
threadnote forget viking://user/example/memories/events/duplicate.md
|
|
199
204
|
threadnote handoff --project example --topic active-issue --task "short task summary" --tests "checks run" --next-step "what to do next"
|
|
205
|
+
threadnote share list
|
|
200
206
|
threadnote share init git@github.com:org/team-memories.git
|
|
201
207
|
threadnote share publish viking://user/example/memories/durable/projects/foo/bar.md
|
|
202
208
|
threadnote share publish-artifact ~/.codex/skills/example/SKILL.md
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "threadnote",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"main": "dist/threadnote.cjs",
|
|
6
6
|
"description": "Shared local context and handoffs for development agents",
|
|
@@ -73,11 +73,11 @@
|
|
|
73
73
|
"@types/react-dom": "^19.2.3",
|
|
74
74
|
"@vitest/coverage-v8": "^4.1.7",
|
|
75
75
|
"commander": "^15.0.0",
|
|
76
|
-
"esbuild": "^0.
|
|
76
|
+
"esbuild": "^0.28.1",
|
|
77
77
|
"eslint": "^10.3.0",
|
|
78
78
|
"globals": "^17.6.0",
|
|
79
79
|
"husky": "^9.1.7",
|
|
80
|
-
"js-yaml": "^4.
|
|
80
|
+
"js-yaml": "^4.2.0",
|
|
81
81
|
"prettier": "^3.8.3",
|
|
82
82
|
"react": "^19.2.7",
|
|
83
83
|
"react-dom": "^19.2.7",
|