dsh-daoing-memory 0.1.15 → 0.1.17

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.
Files changed (37) hide show
  1. package/LICENSE +21 -21
  2. package/cordis.patch.yml +22 -22
  3. package/lib/client.js +11438 -11348
  4. package/lib/client.js.map +1 -1
  5. package/lib/index.js +4780 -4780
  6. package/lib/tools.js +124 -0
  7. package/lib/typert.host.d.ts +3 -3
  8. package/lib/typert.host.js +4600 -4600
  9. package/lib/typert.remote-client.d.ts +176 -176
  10. package/lib/typert.remote-client.js +3670 -3670
  11. package/lib/types/client/ExperiencePage.js +79 -10
  12. package/lib/types/client/FactDiaryPage.js +8 -7
  13. package/lib/types/client/HumanOpsPage.js +4 -4
  14. package/lib/types/client/MemoryFooterAction.d.ts +21 -21
  15. package/lib/types/client/MemoryFooterAction.js +14 -14
  16. package/lib/types/client/MemoryHeaderAction.d.ts +30 -0
  17. package/lib/types/client/MemoryHeaderAction.js +14 -0
  18. package/lib/types/client/MemorySidebarEntry.d.ts +18 -0
  19. package/lib/types/client/MemorySidebarEntry.js +28 -0
  20. package/lib/types/client/ReasonDialog.d.ts +31 -0
  21. package/lib/types/client/ReasonDialog.js +104 -0
  22. package/lib/types/client/Workbench.d.ts +14 -12
  23. package/lib/types/client/Workbench.js +40 -49
  24. package/lib/types/client/actions.d.ts +25 -1
  25. package/lib/types/client/actions.js +6 -0
  26. package/lib/types/client/index.d.ts +13 -6
  27. package/lib/types/client/index.js +43 -26
  28. package/lib/types/client/navStore.d.ts +21 -24
  29. package/lib/types/client/navStore.js +44 -23
  30. package/lib/types/index.d.ts +75 -74
  31. package/lib/types/index.js +113 -106
  32. package/lib/types/service.js +33 -33
  33. package/lib/types/store.js +237 -237
  34. package/lib/types/tools.d.ts +1 -0
  35. package/lib/types/tools.js +86 -14
  36. package/package.json +116 -116
  37. package/skill/memory-extraction.md +82 -62
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 daoing
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2026 daoing
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/cordis.patch.yml CHANGED
@@ -1,22 +1,22 @@
1
- # dsh-daoing-memory bundle patch
2
- #
3
- # Inserts the self-evolving memory plugin into a DSH profile composition.
4
- # Applied as a patch layer by `dsh plugin add` (the CLI reconciles this
5
- # package into `dsh.profile.bundles` because its manifest declares
6
- # `dsh.bundle.patch`).
7
- #
8
- # Row ids `memory` / `memory-tools` follow the DSH memory convention. Patch
9
- # rows are last-write-wins per id, so if the profile's base bundle already
10
- # carries an in-box memory row, installing this plugin re-points that row to
11
- # the dsh-daoing-memory implementation instead of duplicating it. If the
12
- # profile has no memory row yet, this patch simply adds one.
13
- #
14
- # The browser workbench half rides the `memory` row's dsh.client declaration
15
- # in package.json; the model-facing tools live behind the `memory-tools` row.
16
-
17
- - insert:
18
- - id: memory
19
- name: 'dsh-daoing-memory'
20
-
21
- - id: memory-tools
22
- name: 'dsh-daoing-memory/tools'
1
+ # dsh-daoing-memory bundle patch
2
+ #
3
+ # Inserts the self-evolving memory plugin into a DSH profile composition.
4
+ # Applied as a patch layer by `dsh plugin add` (the CLI reconciles this
5
+ # package into `dsh.profile.bundles` because its manifest declares
6
+ # `dsh.bundle.patch`).
7
+ #
8
+ # Row ids `memory` / `memory-tools` follow the DSH memory convention. Patch
9
+ # rows are last-write-wins per id, so if the profile's base bundle already
10
+ # carries an in-box memory row, installing this plugin re-points that row to
11
+ # the dsh-daoing-memory implementation instead of duplicating it. If the
12
+ # profile has no memory row yet, this patch simply adds one.
13
+ #
14
+ # The browser workbench half rides the `memory` row's dsh.client declaration
15
+ # in package.json; the model-facing tools live behind the `memory-tools` row.
16
+
17
+ - insert:
18
+ - id: memory
19
+ name: 'dsh-daoing-memory'
20
+
21
+ - id: memory-tools
22
+ name: 'dsh-daoing-memory/tools'