oh-my-magento 0.3.7 → 0.3.9
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/README.ja.md +2 -2
- package/README.ko.md +2 -2
- package/README.md +8 -6
- package/README.ru.md +3 -3
- package/README.zh-cn.md +2 -2
- package/dist/cli/index.js +1919 -542
- package/dist/cli/model-fallback-types.d.ts +3 -0
- package/dist/cli/run/continuation-state.d.ts +2 -1
- package/dist/create-managers.d.ts +14 -0
- package/dist/features/boulder-state/storage.d.ts +1 -1
- package/dist/features/boulder-state/types.d.ts +1 -0
- package/dist/features/claude-code-plugin-loader/loader.d.ts +15 -0
- package/dist/features/claude-code-plugin-loader/types.d.ts +1 -1
- package/dist/features/mcp-oauth/provider.d.ts +1 -0
- package/dist/features/skill-mcp-manager/types.d.ts +1 -1
- package/dist/hooks/atlas/background-launch-session-tracking.d.ts +11 -0
- package/dist/hooks/atlas/boulder-continuation-injector.d.ts +2 -1
- package/dist/hooks/atlas/task-context.d.ts +7 -0
- package/dist/hooks/atlas/types.d.ts +1 -0
- package/dist/hooks/runtime-fallback/auto-retry-signal.d.ts +4 -0
- package/dist/hooks/runtime-fallback/error-classifier.d.ts +1 -5
- package/dist/index.js +941 -529
- package/dist/oh-my-magento.schema.json +4 -4
- package/dist/shared/agent-display-names.d.ts +1 -0
- package/dist/shared/plugin-identity.d.ts +2 -1
- package/dist/tools/background-task/constants.d.ts +1 -1
- package/dist/tools/delegate-task/resolve-call-id.d.ts +2 -0
- package/package.json +17 -19
package/README.ja.md
CHANGED
|
@@ -289,10 +289,10 @@ oh-my-magentoを削除するには:
|
|
|
289
289
|
|
|
290
290
|
```bash
|
|
291
291
|
# ユーザー設定を削除
|
|
292
|
-
rm -f ~/.config/opencode/oh-my-
|
|
292
|
+
rm -f ~/.config/opencode/oh-my-opencode.json ~/.config/opencode/oh-my-opencode.jsonc
|
|
293
293
|
|
|
294
294
|
# プロジェクト設定を削除(存在する場合)
|
|
295
|
-
rm -f .opencode/oh-my-
|
|
295
|
+
rm -f .opencode/oh-my-opencode.json .opencode/oh-my-opencode.jsonc
|
|
296
296
|
```
|
|
297
297
|
|
|
298
298
|
3. **削除の確認**
|
package/README.ko.md
CHANGED
|
@@ -277,10 +277,10 @@ oh-my-magento를 지우려면:
|
|
|
277
277
|
|
|
278
278
|
```bash
|
|
279
279
|
# 사용자 설정 제거
|
|
280
|
-
rm -f ~/.config/opencode/oh-my-
|
|
280
|
+
rm -f ~/.config/opencode/oh-my-opencode.json ~/.config/opencode/oh-my-opencode.jsonc
|
|
281
281
|
|
|
282
282
|
# 프로젝트 설정 제거 (있는 경우)
|
|
283
|
-
rm -f .opencode/oh-my-
|
|
283
|
+
rm -f .opencode/oh-my-opencode.json .opencode/oh-my-opencode.jsonc
|
|
284
284
|
```
|
|
285
285
|
|
|
286
286
|
3. **제거 확인**
|
package/README.md
CHANGED
|
@@ -111,7 +111,7 @@ Fetch the installation guide and follow it:
|
|
|
111
111
|
curl -s https://raw.githubusercontent.com/caravanglory/oh-my-magento/refs/heads/dev/docs/guide/installation.md
|
|
112
112
|
```
|
|
113
113
|
|
|
114
|
-
**Note**: Use the published package and binary name `oh-my-magento`. Inside `opencode.json`, the compatibility layer now prefers the plugin entry `oh-my-openagent`, while legacy `oh-my-magento` entries still load with a warning. Plugin config files
|
|
114
|
+
**Note**: Use the published package and binary name `oh-my-magento`. Inside `opencode.json`, the compatibility layer now prefers the plugin entry `oh-my-openagent`, while legacy `oh-my-magento` entries still load with a warning. Plugin config files use `oh-my-opencode.json[c]` as the canonical basename; former `oh-my-magento.json[c]` and legacy `oh-my-openagent.json[c]` are also recognized during the transition.
|
|
115
115
|
|
|
116
116
|
---
|
|
117
117
|
|
|
@@ -288,12 +288,14 @@ To remove oh-my-magento:
|
|
|
288
288
|
|
|
289
289
|
```bash
|
|
290
290
|
# Remove plugin config files recognized during the compatibility window
|
|
291
|
-
rm -f ~/.config/opencode/oh-my-
|
|
292
|
-
~/.config/opencode/oh-my-magento.jsonc ~/.config/opencode/oh-my-magento.json
|
|
291
|
+
rm -f ~/.config/opencode/oh-my-opencode.jsonc ~/.config/opencode/oh-my-opencode.json \
|
|
292
|
+
~/.config/opencode/oh-my-magento.jsonc ~/.config/opencode/oh-my-magento.json \
|
|
293
|
+
~/.config/opencode/oh-my-openagent.jsonc ~/.config/opencode/oh-my-openagent.json
|
|
293
294
|
|
|
294
295
|
# Remove project config (if exists)
|
|
295
|
-
rm -f .opencode/oh-my-
|
|
296
|
-
.opencode/oh-my-magento.jsonc .opencode/oh-my-magento.json
|
|
296
|
+
rm -f .opencode/oh-my-opencode.jsonc .opencode/oh-my-opencode.json \
|
|
297
|
+
.opencode/oh-my-magento.jsonc .opencode/oh-my-magento.json \
|
|
298
|
+
.opencode/oh-my-openagent.jsonc .opencode/oh-my-openagent.json
|
|
297
299
|
```
|
|
298
300
|
|
|
299
301
|
3. **Verify removal**
|
|
@@ -332,7 +334,7 @@ Opinionated defaults, adjustable if you insist.
|
|
|
332
334
|
See [Configuration Documentation](docs/reference/configuration.md).
|
|
333
335
|
|
|
334
336
|
**Quick Overview:**
|
|
335
|
-
- **Config Locations**: The compatibility layer recognizes
|
|
337
|
+
- **Config Locations**: The canonical config file is `oh-my-opencode.json[c]`. The compatibility layer also recognizes former `oh-my-magento.json[c]` and legacy `oh-my-openagent.json[c]` basenames.
|
|
336
338
|
- **JSONC Support**: Comments and trailing commas supported
|
|
337
339
|
- **Agents**: Override models, temperatures, prompts, and permissions for any agent
|
|
338
340
|
- **Built-in Skills**: `playwright` (browser automation), `git-master` (atomic commits)
|
package/README.ru.md
CHANGED
|
@@ -271,10 +271,10 @@ project/
|
|
|
271
271
|
|
|
272
272
|
```bash
|
|
273
273
|
# Удалить пользовательский конфиг
|
|
274
|
-
rm -f ~/.config/opencode/oh-my-
|
|
274
|
+
rm -f ~/.config/opencode/oh-my-opencode.json ~/.config/opencode/oh-my-opencode.jsonc
|
|
275
275
|
|
|
276
276
|
# Удалить конфиг проекта (если существует)
|
|
277
|
-
rm -f .opencode/oh-my-
|
|
277
|
+
rm -f .opencode/oh-my-opencode.json .opencode/oh-my-opencode.jsonc
|
|
278
278
|
```
|
|
279
279
|
|
|
280
280
|
3. **Проверьте удаление**
|
|
@@ -311,7 +311,7 @@ project/
|
|
|
311
311
|
|
|
312
312
|
**Краткий обзор:**
|
|
313
313
|
|
|
314
|
-
- **Расположение конфигов**: `.opencode/oh-my-
|
|
314
|
+
- **Расположение конфигов**: `.opencode/oh-my-opencode.jsonc` или `.opencode/oh-my-opencode.json` (проект), `~/.config/opencode/oh-my-opencode.jsonc` или `~/.config/opencode/oh-my-opencode.json` (пользователь)
|
|
315
315
|
- **Поддержка JSONC**: Комментарии и конечные запятые поддерживаются
|
|
316
316
|
- **Агенты**: Переопределение моделей, температур, промптов и разрешений для любого агента
|
|
317
317
|
- **Встроенные навыки**: `playwright` (автоматизация браузера), `git-master` (атомарные коммиты)
|
package/README.zh-cn.md
CHANGED
|
@@ -288,10 +288,10 @@ Agent 会自动顺藤摸瓜加载对应的 Context,免去了你所有的手动
|
|
|
288
288
|
|
|
289
289
|
```bash
|
|
290
290
|
# 移除全局用户配置
|
|
291
|
-
rm -f ~/.config/opencode/oh-my-
|
|
291
|
+
rm -f ~/.config/opencode/oh-my-opencode.json ~/.config/opencode/oh-my-opencode.jsonc
|
|
292
292
|
|
|
293
293
|
# 移除当前项目的配置
|
|
294
|
-
rm -f .opencode/oh-my-
|
|
294
|
+
rm -f .opencode/oh-my-opencode.json .opencode/oh-my-opencode.jsonc
|
|
295
295
|
```
|
|
296
296
|
|
|
297
297
|
3. **确认卸载成功**
|