oh-my-opencode-lite 0.1.0 → 0.1.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/dist/cli/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -220,7 +220,7 @@ async function addPluginToOpenCodeConfig() {
|
|
|
220
220
|
const config = parsedConfig ?? {};
|
|
221
221
|
const plugins = config.plugin ?? [];
|
|
222
222
|
const filteredPlugins = plugins.filter((p) => p !== PACKAGE_NAME && !p.startsWith(`${PACKAGE_NAME}@`));
|
|
223
|
-
filteredPlugins.push(PACKAGE_NAME);
|
|
223
|
+
filteredPlugins.push(`${PACKAGE_NAME}@latest`);
|
|
224
224
|
config.plugin = filteredPlugins;
|
|
225
225
|
writeConfig(configPath, config);
|
|
226
226
|
return { success: true, configPath };
|
package/dist/index.js
CHANGED
|
@@ -21261,7 +21261,7 @@ function buildMemoryInstructions(sessionID, project) {
|
|
|
21261
21261
|
Persistent memory is available through thoth-mem. Follow this protocol.
|
|
21262
21262
|
|
|
21263
21263
|
IMPORTANT: Your current session_id is \`${sessionID}\` and project is \`${project}\`.
|
|
21264
|
-
Always pass these values when calling memory tools that accept them (mem_session_summary, mem_save,
|
|
21264
|
+
Always pass these values when calling memory tools that accept them (mem_session_summary, mem_save, mem_capture_passive, etc.).
|
|
21265
21265
|
|
|
21266
21266
|
WHEN TO SAVE
|
|
21267
21267
|
- Call \`mem_save\` IMMEDIATELY after bug fixes, architecture decisions, discoveries, config changes, reusable patterns, and user preferences.
|
package/package.json
CHANGED