YeonGyu-Kim
655a39b275
chore(deps): add posthog-node dependency
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-10 15:53:17 +09:00
github-actions[bot]
fbd3e7aabe
release: v3.16.0
2026-04-08 10:04:19 +00:00
YeonGyu-Kim
f4eabf9f0e
chore(deps): upgrade @opencode-ai/{plugin,sdk} to 1.4.0 and restore zod v4
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-08 12:57:45 +09:00
YeonGyu-Kim
205269421d
fix(deps): downgrade zod to v3 for opencode compatibility ( #3151 )
...
opencode 1.3.16 bundles zod v3 internally and accesses _zod.def in
toJsonSchema. When oh-my-openagent installed zod v4, schemas from our
plugin caused a TypeError crash on any tool execution.
We only use basic z.* APIs with no v4-specific features, so pinning
to ^3.24.0 is safe and restores full compatibility.
2026-04-06 14:11:29 +09:00
github-actions[bot]
abda3c52f0
release: v3.15.3
2026-04-06 03:59:11 +00:00
github-actions[bot]
1562b7d148
release: v3.15.1
2026-04-05 00:54:58 +00:00
YeonGyu-Kim
aff29a9856
chore: bump version to 3.15.1
2026-04-05 09:39:35 +09:00
YeonGyu-Kim
86cc6ddf3d
chore: bump version to 3.15.0
2026-04-05 01:08:51 +09:00
YeonGyu-Kim
da86b57f23
test: fix CI test isolation - upgrade Bun, fix mock contamination and fresh-import patterns
2026-04-05 01:01:19 +09:00
YeonGyu-Kim
1071d4defb
Pin Bun to 1.3.10 in CI and remove test:ci script
...
- Pin bun-version to 1.3.10 across all CI workflows to avoid
mock.module() barrel export regression introduced in 1.3.11
- Remove test:ci script from package.json (use bun test directly)
- Update publish-workflow.test.ts to expect "bun test" instead
🤖 GENERATED WITH ASSISTANCE OF OhMyOpenCode
2026-04-04 18:56:25 +09:00
YeonGyu-Kim
2c081e1999
fix(ci): restore isolated Bun test execution for mock.module suites
...
Running Linux CI in one Bun process still leaks mock.module registrations across files, so the workflows now use a CI-specific test runner that isolates mock-heavy targets before executing the remaining suite together.
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-04-04 15:51:54 +09:00
YeonGyu-Kim
34a37dc946
3.14.1
2026-04-02 15:16:39 +09:00
YeonGyu-Kim
fece331736
fix: add ./ prefix to package.json main field for OpenCode-Go plugin loading ( #2966 )
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-03-31 16:27:35 +09:00
YeonGyu-Kim
d2c576c510
fix: resolve 25 pre-publish blockers
...
- postinstall.mjs: fix alias package detection
- migrate-legacy-plugin-entry: dedupe + regression tests
- task_system: default consistency across runtime paths
- task() contract: consistent tool behavior
- runtime model selection, tool cap, stale-task cancellation
- recovery sanitization, context-limit gating
- Ralph semantic DONE hardening, Atlas fallback persistence
- native-skill description/content, skill path traversal guard
- publish workflow: platform awaited via reusable workflow job
- release: version edits reapplied before commit/tag
- JSONC plugin migration: top-level plugin key safety
- cold-cache: user fallback models skip disconnected providers
- docs/version/release framing updates
Verified: bun test (4599 pass), tsc --noEmit clean, bun run build clean
2026-03-28 15:24:18 +09:00
Ravi Tharuma
5043cc21ac
fix(model-capabilities): harden canonical alias guardrails
2026-03-25 22:11:45 +01:00
Ravi Tharuma
2af9324400
feat: add models.dev-backed model capabilities
2026-03-25 14:47:46 +01:00
YeonGyu-Kim
5b5235c000
Bump AST tooling and Bun types in root manifest
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-03-11 15:44:32 +09:00
YeonGyu-Kim
a883647b46
Bump OpenCode SDK packages in root manifest
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-03-11 15:43:03 +09:00
YeonGyu-Kim
63ed7a5448
fix: update repository URLs to oh-my-openagent for npm provenance
...
npm --provenance validates repository.url against the actual GitHub
repo. Since the repo was renamed to oh-my-openagent, all platform
binary publishes failed with E422 provenance mismatch.
2026-03-08 02:59:40 +09:00
YeonGyu-Kim
f3be710a73
release: v3.11.0
2026-03-08 01:59:20 +09:00
wousp112
f6d8d44aba
fix(install): build dist for git-based plugin installs
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-03-06 21:25:51 +00:00
github-actions[bot]
de59825d0c
release: v3.10.1
2026-03-06 11:57:16 +00:00
YeonGyu-Kim
a61f8bb853
Update @opencode-ai/plugin and SDK to v1.2.x and align system transform handler signature
...
- Bump @opencode-ai/plugin ^1.1.19 → ^1.2.16, @opencode-ai/sdk ^1.1.19 → ^1.2.17
- Update system-transform handler input type to match new plugin contract (optional sessionID, required model)
- Add @opencode-ai/sdk override in bun.lock
🤖 Generated with assistance of [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode )
2026-03-05 11:18:12 +09:00
YeonGyu-Kim
d43c5c68bd
Merge pull request #2131 from maou-shonen/fix/comment-checker-dependency-version
...
fix(comment-checker): bump dependency to ^0.7.0 for --prompt support
2026-03-02 23:27:59 +09:00
github-actions[bot]
f27fd9a6de
release: v3.10.0
2026-03-02 06:27:47 +00:00
github-actions[bot]
ae54fd31f4
release: v3.9.0
2026-02-26 19:30:38 +00:00
YeonGyu-Kim
cc5e9d1e9b
fix(ci): add baseline CPU variant binaries for legacy hardware support
...
Closes #2121
2026-02-26 21:00:45 +09:00
maou shonen
acb51d1702
fix(comment-checker): bump dependency to ^0.7.0 for --prompt support
2026-02-26 09:48:57 +00:00
YeonGyu-Kim
fcb90d92a4
refactor(hashline-edit): replace custom diff with diff library
...
🤖 Generated with assistance of [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode )
2026-02-24 22:30:06 +09:00
github-actions[bot]
55b9ad60d8
release: v3.8.5
2026-02-24 09:45:36 +00:00
github-actions[bot]
ebd26b7421
release: v3.8.4
2026-02-23 17:11:38 +00:00
github-actions[bot]
ffa2a255d9
release: v3.8.3
2026-02-22 06:46:51 +00:00
github-actions[bot]
d0b18787ba
release: v3.8.2
2026-02-22 06:35:05 +00:00
github-actions[bot]
e84fce3121
release: v3.8.1
2026-02-22 03:37:21 +00:00
github-actions[bot]
d6939229b3
release: v3.8.0
2026-02-21 17:56:31 +00:00
YeonGyu-Kim
c1c7d18133
fix: resolve 4 publish blockers — CLI bin, schema export, security vulns, doc link
...
- Remove leading ./ from bin entry (npm strips invalid paths)
- Write schema to dist/ for export map compatibility (keep assets/ for GitHub URL)
- Remove unused codex dep + bump @modelcontextprotocol/sdk to ^1.25.2
- Fix broken relative link in configuration.md (../guide/installation.md)
🤖 Generated with assistance of OhMyOpenCode (https://github.com/code-yeongyu/oh-my-opencode )
2026-02-21 13:59:53 +09:00
YeonGyu-Kim
42b34fb5d2
chore(deps): add codex dependency
...
🤖 Generated with OhMyOpenCode assistance
2026-02-20 17:47:07 +09:00
github-actions[bot]
5dc437f45d
release: v3.7.4
2026-02-18 17:09:59 +00:00
github-actions[bot]
9c5d80af1d
release: v3.7.3
2026-02-18 06:05:04 +00:00
github-actions[bot]
19cd79070e
release: v3.7.2
2026-02-17 17:16:40 +00:00
github-actions[bot]
538aba0d0f
release: v3.7.1
2026-02-17 05:32:02 +00:00
github-actions[bot]
7e1293d273
release: v3.7.0
2026-02-17 04:35:13 +00:00
github-actions[bot]
fcf26d9898
release: v3.6.0
2026-02-16 15:02:43 +00:00
github-actions[bot]
8c0354225c
release: v3.5.6
2026-02-16 07:24:09 +00:00
github-actions[bot]
18442a1637
release: v3.5.5
2026-02-15 05:48:47 +00:00
github-actions[bot]
c8172697d9
release: v3.5.4
2026-02-15 04:40:15 +00:00
github-actions[bot]
50afb6b2de
release: v3.5.3
2026-02-12 15:31:06 +00:00
github-actions[bot]
2df61a2199
release: v3.5.2
2026-02-11 08:38:47 +00:00
github-actions[bot]
7e0ab828f9
release: v3.5.1
2026-02-11 01:01:58 +00:00
github-actions[bot]
074d8dff09
release: v3.5.0
2026-02-10 16:25:32 +00:00