nomadexapp 0.2.11 → 0.2.13
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/bin/nomadex.mjs +112 -0
- package/dist/assets/{dist-DyfJ87Ux.js → dist-CTWWhiBh.js} +1 -1
- package/dist/assets/{dist-CcieNA8K.js → dist-Cak5lMNy.js} +1 -1
- package/dist/assets/{dist-DVITUlAU.js → dist-Cqzr_DCa.js} +1 -1
- package/dist/assets/{dist-Dho1EwmW.js → dist-DNqt8MHx.js} +1 -1
- package/dist/assets/{dist-DeGTfEC_.js → dist-DRzGZjDt.js} +1 -1
- package/dist/assets/{dist-22aE7IJe.js → dist-DduosfWn.js} +1 -1
- package/dist/assets/{dist-xQmvp0Cx.js → dist-Dtpf7w8X.js} +1 -1
- package/dist/assets/{dist-DOrnGctf.js → dist-IpM6T-qb.js} +1 -1
- package/dist/assets/{dist-BtMM3ETy.js → dist-NkFmGBjd.js} +1 -1
- package/dist/assets/{dist-BgB3YJ59.js → dist-OQrDSD0x.js} +1 -1
- package/dist/assets/{dist-DyWETSf1.js → dist-U_mjwZCu.js} +1 -1
- package/dist/assets/{dist-BEmb2evM.js → dist-Yla7bF1n.js} +1 -1
- package/dist/assets/{dist-BgKty7Io.js → dist-nrStOW9Y.js} +1 -1
- package/dist/assets/{dist-lkpIIMWg.js → dist-wBBtv2LZ.js} +1 -1
- package/dist/assets/index-PxP2PEL9.js +214 -0
- package/dist/index.html +1 -1
- package/docs/ARCHITECTURE.md +2 -2
- package/docs/SETUP.md +3 -3
- package/package.json +1 -1
- package/dist/assets/index-Bt2yX8J-.js +0 -214
package/dist/index.html
CHANGED
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
}
|
|
50
50
|
})();
|
|
51
51
|
</script>
|
|
52
|
-
<script type="module" crossorigin src="/assets/index-
|
|
52
|
+
<script type="module" crossorigin src="/assets/index-PxP2PEL9.js"></script>
|
|
53
53
|
<link rel="modulepreload" crossorigin href="/assets/dist-DhhFPaYP.js">
|
|
54
54
|
<link rel="stylesheet" crossorigin href="/assets/index-4RdQK1cC.css">
|
|
55
55
|
</head>
|
package/docs/ARCHITECTURE.md
CHANGED
|
@@ -164,9 +164,9 @@ Persisted locally:
|
|
|
164
164
|
- selected provider in `localStorage`
|
|
165
165
|
- app-owned steer history entries per thread in `localStorage`
|
|
166
166
|
|
|
167
|
-
Stored
|
|
167
|
+
Stored on disk outside the active project:
|
|
168
168
|
|
|
169
|
-
- uploads under provider-specific
|
|
169
|
+
- uploads under provider-specific Nomadex storage folders such as `~/.nomadex/uploads/codex/images`
|
|
170
170
|
|
|
171
171
|
Mostly in-memory UI state:
|
|
172
172
|
|
package/docs/SETUP.md
CHANGED
|
@@ -192,9 +192,9 @@ Current behavior:
|
|
|
192
192
|
|
|
193
193
|
- images can be pasted into the composer
|
|
194
194
|
- non-image files go through `Attach`
|
|
195
|
-
- uploaded assets are written
|
|
196
|
-
-
|
|
197
|
-
-
|
|
195
|
+
- uploaded assets are written outside the active project under a dedicated Nomadex storage root such as:
|
|
196
|
+
- `~/.nomadex/uploads/codex/images`
|
|
197
|
+
- `~/.nomadex/uploads/codex/files`
|
|
198
198
|
|
|
199
199
|
The runtime injects file mentions into the prompt manifest so the live agent can see attached file paths consistently.
|
|
200
200
|
|