YeonGyu-Kim
0dab3116b7
fix: resolve 3 bugs ( #3366 , #3272 , #3222 )
...
- shell-env: detect Git Bash via MSYSTEM env var when SHELL is unset (#3366 )
On some Git Bash installations SHELL is not set but MSYSTEM (MINGW64/MSYS)
is always present. Check MSYSTEM before PSModulePath to avoid emitting
PowerShell syntax in bash shells.
- session-state: resolve legacy agent names in resolveRegisteredAgentName (#3272 )
Historical sessions stored agent names like 'Sisyphus (Ultraworker)' which
don't match the current registered format. Fall back to getAgentConfigKey
for legacy/parenthesized name resolution before returning the raw name.
- config-migration: skip backup when file content is unchanged (#3222 )
Compare serialized config with existing file content before creating a
timestamped .bak file. Only create backup when the on-disk content
actually differs from the migrated content.
2026-04-15 10:43:44 +09:00
YeonGyu-Kim
051ab840d6
Merge pull request #3348 from code-yeongyu/refactor/ulw-repo-cleanup-20260411
...
refactor: simplify nullish guards and remove dead no-op paths
2026-04-12 18:04:43 +09:00
YeonGyu-Kim
3bfa3bd608
fix(background-agent): pass query directory to session.get in 4 call-sites ( #2937 )
...
resolveSubagentSpawnContext and related lookups called client.session.get
without the query.directory parameter, causing project-scoped sessions
to 404 under newer OpenCode SDK versions. Threaded directory through
SpawnerContext/BackgroundManager so all four call-sites pass it.
🤖 Generated with OhMyOpenCode assistance
https://github.com/code-yeongyu/oh-my-opencode
2026-04-12 02:30:01 +09:00
YeonGyu-Kim
a6e4f211a3
fix(shared): normalize claude model IDs for anthropic provider ( #3290 )
...
Anthropic API accepts claude-opus-4.6 (dot format) but not
claude-opus-4-6 (dash format). Added anthropic case to
transformModelForProvider to normalize dash-format model IDs before
they reach the provider. Updated model config snapshots and test
expectations to match the new dot-format output.
🤖 Generated with OhMyOpenCode assistance
https://github.com/code-yeongyu/oh-my-opencode
2026-04-12 02:28:27 +09:00
YeonGyu-Kim
141798efed
refactor(background-agent): standardize loop detector null guards
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-12 00:42:52 +09:00
YeonGyu-Kim
4de02094ab
test(background-agent): lock nullish loop detector behavior
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-12 00:42:25 +09:00
YeonGyu-Kim
50df6f0d3e
test(claude-code-plugin-loader): cover plugin path nullish resolution
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-12 00:07:10 +09:00
YeonGyu-Kim
cd8352c108
refactor(claude-code-mcp-loader): simplify env expansion null guard
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-12 00:07:10 +09:00
YeonGyu-Kim
79a475d60f
refactor(background-agent): simplify loop detector null guard
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-12 00:07:10 +09:00
YeonGyu-Kim
44ebf4b809
Merge pull request #3343 from code-yeongyu/refactor/ultrawork-cleanup-pass
...
refactor: trim duplicate logic and dead internal exports
2026-04-11 23:12:16 +09:00
YeonGyu-Kim
40411f3218
docs(agents): add AGENTS.md documentation for prometheus, hephaestus, sisyphus variants, and builtin-skills
...
- src/agents/prometheus/: Strategic planner documentation
- src/agents/hephaestus/: GPT-5.4 autonomous worker documentation
- src/agents/sisyphus/: Model-specific orchestrator variants documentation
- src/features/builtin-skills/: 8 built-in skills catalog
🤖 Generated with OhMyOpenCode assistance
2026-04-11 22:33:22 +09:00
YeonGyu-Kim
0c5cd3a1c4
chore(agents): update all AGENTS.md generation dates to 2026-04-11
...
🤖 Generated with OhMyOpenCode assistance
2026-04-11 22:33:22 +09:00
YeonGyu-Kim
9d89bbb03a
refactor(commands): keep builtin command options internal
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-11 22:29:08 +09:00
YeonGyu-Kim
4180a0ba0a
test(features): update background agent, MCP loader, and tmux tests
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-10 15:53:30 +09:00
YeonGyu-Kim
e9b3ef0328
feat(skill-mcp-manager): improve connection handling and client implementations
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-10 15:53:02 +09:00
YeonGyu-Kim
33ac57ba7a
refactor: update remaining modules to use plugin-identity constants
...
Update various modules to use centralized constants from plugin-identity:
- get-local-version/formatter: Use PUBLISHED_PACKAGE_NAME
- run/session-resolver: Use PUBLISHED_PACKAGE_NAME
- background-agent/task-poller: Use PUBLISHED_PACKAGE_NAME
- mcp-oauth/provider: Use PUBLISHED_PACKAGE_NAME
- auto-update-checker/constants: Use ACCEPTED_PACKAGE_NAMES
- comment-checker/downloader: Use PUBLISHED_PACKAGE_NAME
- legacy-plugin-toast/hook: Use PLUGIN_NAME
- shared/data-path: Use CACHE_DIR_NAME
- shared/external-plugin-detector: Use ACCEPTED_PACKAGE_NAMES
- shared/logger: Use LOG_FILENAME
- tools/ast-grep/downloader: Use PUBLISHED_PACKAGE_NAME
- tools/call-omo-agent/tools: Use PUBLISHED_PACKAGE_NAME
- tools/delegate-task/category-resolver: Use PUBLISHED_PACKAGE_NAME
- tools/grep/constants: Use PUBLISHED_PACKAGE_NAME
- tools/grep/downloader: Use PUBLISHED_PACKAGE_NAME
- tools/lsp/lsp-client-wrapper: Use PUBLISHED_PACKAGE_NAME
🤖 Generated with assistance of OhMyOpenCode
2026-04-10 11:16:16 +09:00
YeonGyu-Kim
58be69114f
docs: update AGENTS.md hierarchy with openclaw, runtime-fallback, skill-mcp-manager
...
- Add src/openclaw/AGENTS.md: bidirectional Discord/Telegram/webhook integration
- Add src/hooks/runtime-fallback/AGENTS.md: reactive provider error recovery
- Add src/features/skill-mcp-manager/AGENTS.md: tier-3 MCP lifecycle
- Update root AGENTS.md: refresh commit hash, add openclaw/IntentGate/Hashline refs
- Fix src/features/AGENTS.md: skill-mcp-manager file count 14→18, complexity MEDIUM→HIGH
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-09 15:14:40 +09:00
GeonWoo Jeon (Jay)
ade57474be
fix(merge): resolve dev conflicts for openclaw branch
2026-04-09 12:23:38 +09:00
GeonWoo Jeon (Jay)
687e7bb243
fix(test): align zombie pane tmux mocks
2026-04-09 12:09:09 +09:00
YeonGyu-Kim
545c444a85
Merge remote-tracking branch 'origin/dev' into fix/delegate-task-depth-guard-rebased
2026-04-09 11:06:31 +09:00
YeonGyu-Kim
d781b7537f
Merge pull request #3226 from code-yeongyu/fix/plan-progress-and-trust
...
fix(plan): skill MCP trust + non-ASCII names + simple-mode progress + ralph-loop cap
2026-04-08 17:40:51 +09:00
YeonGyu-Kim
bdf6e4195a
Merge pull request #3225 from code-yeongyu/fix/agent-name-safety
...
fix(agent): narrow ULW auto-start + strip ZWSP on background path + fix auto-update identity
2026-04-08 17:40:48 +09:00
YeonGyu-Kim
c37e440ba8
Merge pull request #3224 from code-yeongyu/fix/oauth-wiring
...
fix(oauth): wire refresh mutex + post-request auth handler
2026-04-08 17:40:46 +09:00
YeonGyu-Kim
7f8ed7b056
test(tmux): add missing tmux exports to zombie-pane mock module
2026-04-08 17:36:27 +09:00
YeonGyu-Kim
600d68da04
test(tmux): add missing tmux exports to zombie-pane mock module
2026-04-08 17:36:26 +09:00
YeonGyu-Kim
d53be83634
test(tmux): add missing tmux exports to zombie-pane mock module
2026-04-08 17:36:24 +09:00
YeonGyu-Kim
4c0225a23f
test(tmux): add missing tmux exports to zombie-pane mock module
2026-04-08 17:36:23 +09:00
YeonGyu-Kim
85fa939051
test(skill-mcp): fix connection env var tests after oauth-handler import changes
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-08 17:26:00 +09:00
YeonGyu-Kim
119c23342a
test(background): fix variant propagation test to match parent-context resolution
2026-04-08 17:25:54 +09:00
YeonGyu-Kim
bbbbf68382
fix(ralph-loop): update template to reflect 500 iteration cap
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-08 17:18:37 +09:00
YeonGyu-Kim
0cb938e3ac
fix(boulder): count only top-level checkboxes in simple-mode plan progress
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-08 17:18:29 +09:00
YeonGyu-Kim
001d29ea8e
fix(skill-mcp): treat opencode-project and local scopes as untrusted for env var access
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-08 17:18:17 +09:00
YeonGyu-Kim
359f74132a
fix(delegate-task): strip ZWSP from agent names on background launch path
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-08 17:17:26 +09:00
YeonGyu-Kim
0479693ca3
fix(oauth): wire post-request 401/403 handler into skill-mcp withOperationRetry
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-08 17:16:36 +09:00
YeonGyu-Kim
63ba16bcce
fix(oauth): wire refresh mutex into provider.refresh() for concurrent deduplication
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-08 17:16:28 +09:00
YeonGyu-Kim
80c74c8849
fix(background): prevent double-decrement of descendant quota in processKey error cleanup
2026-04-08 17:15:18 +09:00
YeonGyu-Kim
1cf4119dd4
fix(background): use parent session variant in notifyParentSession instead of child task variant
2026-04-08 17:15:02 +09:00
YeonGyu-Kim
ed16dc0608
fix(chat-params): complete maxOutputTokens migration in session prompt params
2026-04-08 17:14:17 +09:00
YeonGyu-Kim
06b825dd74
fix(start-work): reuse registered opencode agent names
2026-04-08 16:18:26 +09:00
YeonGyu-Kim
b28567251d
fix(plugin-loader): filter project-scoped plugins by cwd
...
discoverInstalledPlugins read scope from installed_plugins.json but
never filtered by it, so project/local scoped Claude Code plugins
leaked into every session regardless of process.cwd().
Add projectPath to PluginInstallation and InstalledPluginEntryV3,
propagate it through v3EntryToInstallation, and introduce
shouldLoadPluginForCwd which reuses shared/contains-path for safe
symlink- and ancestor-aware matching and expands a leading tilde.
user and managed scopes still always load; project and local without
a projectPath are skipped as a safe default.
Covered by 13 new shouldLoadPluginForCwd unit tests (including tilde
expansion against a mocked homedir) and 13 new discoverInstalledPlugins
integration tests spanning v1, v2, and v3 database formats plus the
existing enabledPluginsOverride path.
Fixes #3216
2026-04-08 15:28:17 +09:00
YeonGyu-Kim
ab0e1e3be0
fix(oauth): refresh-once handler for 401/403 responses
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-08 13:28:17 +09:00
YeonGyu-Kim
7ba41d388a
fix(oauth): atomic storage writes for token safety
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-08 13:28:14 +09:00
YeonGyu-Kim
7be285ef89
feat(oauth): add per-server refresh mutex
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-08 13:28:08 +09:00
YeonGyu-Kim
c3fe0ae09e
fix(background): propagate variant in parent notifications
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-08 13:23:08 +09:00
YeonGyu-Kim
35f778db2d
test(skill-mcp): add scope field to test fixtures
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-08 13:11:28 +09:00
YeonGyu-Kim
fa140b0375
fix(skill-loader): propagate scope to MCP connections
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-08 13:10:41 +09:00
YeonGyu-Kim
05efb20fda
feat(skill-mcp): add scope field to connection types
2026-04-08 13:10:20 +09:00
YeonGyu-Kim
b81fdef5d9
fix(skill-mcp): redact sensitive data from connection errors
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-08 13:10:06 +09:00
YeonGyu-Kim
78e6d780eb
fix(plugin): verify event hook compatibility with v1.4.0
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-08 13:08:03 +09:00
GeonWoo Jeon (Jay)
9491bede5b
fix(tmux): expose tracked pane ids for openclaw routing
2026-04-07 22:54:03 +09:00