memgineering 0.18.0 → 0.18.1
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.md +10 -0
- package/assets/MEMGINEERING.md +1 -1
- package/dist/index.js +11 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,16 @@ language the reader wants. The bilingual rule the monorepo applies to
|
|
|
11
11
|
|
|
12
12
|
## [Unreleased]
|
|
13
13
|
|
|
14
|
+
## [0.18.1] — 2026-08-30
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- **Choosing "in an account" now actually connects you to the brain it made.**
|
|
19
|
+
0.18.0 created the hosted brain on the server and stopped there, so the
|
|
20
|
+
command right after a finished setup could answer "no brain is connected"
|
|
21
|
+
while the brain sat there, real and unreachable. Setup records which brain
|
|
22
|
+
this machine reads, the way `push` and `use` already did.
|
|
23
|
+
|
|
14
24
|
## [0.18.0] — 2026-08-30
|
|
15
25
|
|
|
16
26
|
### Added
|
package/assets/MEMGINEERING.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: memgineering
|
|
3
3
|
description: Use whenever the user refers to something they told you before, asks what was decided, tells you something worth keeping, or settles something that should hold next time. The memory lives in their own folder and outlives this session; check it before answering from guesswork, and write to it when you learn something durable.
|
|
4
4
|
type: skill
|
|
5
|
-
version: 0.18.
|
|
5
|
+
version: 0.18.1
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# memgineering
|
package/dist/index.js
CHANGED
|
@@ -5723,6 +5723,12 @@ var init_init = __esm({
|
|
|
5723
5723
|
});
|
|
5724
5724
|
|
|
5725
5725
|
// src/lib/cloud-pointer.ts
|
|
5726
|
+
var cloud_pointer_exports = {};
|
|
5727
|
+
__export(cloud_pointer_exports, {
|
|
5728
|
+
pointConfigAt: () => pointConfigAt,
|
|
5729
|
+
printRepoint: () => printRepoint,
|
|
5730
|
+
repointJson: () => repointJson
|
|
5731
|
+
});
|
|
5726
5732
|
async function pointConfigAt(destination) {
|
|
5727
5733
|
const config = await loadConfig();
|
|
5728
5734
|
const previous = config.brain.cloud ?? null;
|
|
@@ -7042,6 +7048,11 @@ async function applyAnswers(setupToken, claim, detected) {
|
|
|
7042
7048
|
parts.push(`created ${made.root}`);
|
|
7043
7049
|
}
|
|
7044
7050
|
}
|
|
7051
|
+
if (answers.location === "cloud" && claim.brain) {
|
|
7052
|
+
const { pointConfigAt: pointConfigAt2 } = await Promise.resolve().then(() => (init_cloud_pointer(), cloud_pointer_exports));
|
|
7053
|
+
await pointConfigAt2({ brainId: claim.brain.id, name: claim.brain.name, apiUrl: apiUrl() });
|
|
7054
|
+
parts.push(`pointed at ${claim.brain.name}`);
|
|
7055
|
+
}
|
|
7045
7056
|
if (answers.location === "cloud" && answers.upload_path) {
|
|
7046
7057
|
await report2(setupToken, "applying", "\uB178\uD2B8\uB97C \uC62C\uB9AC\uB294 \uC911\uC774\uC5D0\uC694.");
|
|
7047
7058
|
const { pushCommand: pushCommand2 } = await Promise.resolve().then(() => (init_push(), push_exports));
|
package/package.json
CHANGED