@ouro.bot/cli 0.1.0-alpha.807 → 0.1.0-alpha.809
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.json +16 -0
- package/deploy/unraid/sanctuary.ouro/bundle-meta.json +1 -1
- package/deploy/unraid/sanctuary.xml +1 -1
- package/dist/heart/core.js +156 -188
- package/dist/heart/mailbox/readers/sessions.js +2 -3
- package/dist/heart/session-activity.js +3 -1
- package/dist/heart/session-events.js +167 -55
- package/dist/heart/session-redaction-repair-cli-main.js +31 -0
- package/dist/heart/session-redaction-repair.js +543 -0
- package/dist/heart/session-transcript.js +1 -1
- package/dist/mind/session-transaction.js +180 -31
- package/dist/senses/shared-turn.js +5 -3
- package/npm-shrinkwrap.json +94 -100
- package/package.json +2 -2
package/changelog.json
CHANGED
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_note": "This changelog is maintained as part of the PR/version-bump workflow. Agent-curated, not auto-generated. Agents read this file directly via read_file to understand what changed between versions.",
|
|
3
3
|
"versions": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.1.0-alpha.809",
|
|
6
|
+
"changes": [
|
|
7
|
+
"D-004: keep native device/inode checks exact for large filesystem identities in confined session transactions and private repair artifacts."
|
|
8
|
+
]
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"version": "0.1.0-alpha.808",
|
|
12
|
+
"changes": [
|
|
13
|
+
"Keep engine retry controls and rejected attempts out of canonical conversation history while preserving accepted execution receipts.",
|
|
14
|
+
"Honor exact raw session redaction markers consistently across conversation readers and context rebuilds.",
|
|
15
|
+
"Add a private, confined eight-event Sanctuary session repair bound to exact native IDs, with canonical system-first projection, manifest/CAS readback, idempotence, and conditional rollback.",
|
|
16
|
+
"Validate required source assets in pre-build release checks while keeping compiled package checks strict.",
|
|
17
|
+
"Refresh existing multipart, mail-parsing, and test-tool dependencies to clear security advisories without changing the Bitwarden CLI version."
|
|
18
|
+
]
|
|
19
|
+
},
|
|
4
20
|
{
|
|
5
21
|
"version": "0.1.0-alpha.807",
|
|
6
22
|
"changes": [
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<?xml version="1.0"?>
|
|
2
2
|
<Container version="2">
|
|
3
3
|
<Name>ouro-butler</Name>
|
|
4
|
-
<Repository>ghcr.io/ourostack/ouroboros-butler:0.1.0-alpha.
|
|
4
|
+
<Repository>ghcr.io/ourostack/ouroboros-butler:0.1.0-alpha.809</Repository>
|
|
5
5
|
<Registry>https://github.com/ourostack/ouroboros/pkgs/container/ouroboros-butler</Registry>
|
|
6
6
|
<Network>host</Network>
|
|
7
7
|
<Shell>sh</Shell>
|