-
-
Notifications
You must be signed in to change notification settings - Fork 35
feat(plugin): add Feishu channel support for Codex App Server #82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
5805ac8
cef5767
a1fb175
edc91cb
f3e85d5
ddfc98d
2019bc2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,9 @@ | ||
| { | ||
| "name": "openclaw-codex-app-server", | ||
| "version": "0.0.0", | ||
| "version": "0.5.0", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh that's not how we handle versioning... we leave the version as 0.0.0 in the package.json so it's clear we're running an unreleased version. |
||
| "description": "Independent OpenClaw plugin for the Codex App Server protocol", | ||
| "author": "PwrDrvr LLC", | ||
| "license": "MIT", | ||
| "packageManager": "pnpm@10.29.3", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why would this be deleted? |
||
| "type": "module", | ||
| "openclaw": { | ||
| "extensions": [ | ||
|
|
@@ -19,16 +18,6 @@ | |
| "pluginSdkVersion": "2026.3.22" | ||
| } | ||
| }, | ||
| "scripts": { | ||
| "project:sync": "node ./.agents/skills/project-manager/scripts/sync-work-items.mjs", | ||
| "test": "vitest run", | ||
| "typecheck": "tsc --noEmit", | ||
| "smoke:app-server-permissions": "node ./scripts/app-server-permissions-smoke.mjs", | ||
| "smoke:app-server-thread-permissions": "node ./scripts/app-server-thread-permissions-smoke.mjs", | ||
| "pack:smoke": "node ./scripts/pack-smoke.mjs", | ||
| "release:metadata": "node ./scripts/release-metadata.mjs", | ||
| "release:apply-version": "node ./scripts/apply-release-version.mjs" | ||
| }, | ||
| "peerDependencies": { | ||
| "openclaw": ">=2026.3.22" | ||
| }, | ||
|
|
@@ -40,5 +29,15 @@ | |
| "typescript": "^5.9.2", | ||
| "vitest": "^3.2.4", | ||
| "yaml": "^2.8.2" | ||
| }, | ||
| "scripts": { | ||
| "project:sync": "node ./.agents/skills/project-manager/scripts/sync-work-items.mjs", | ||
| "test": "vitest run", | ||
| "typecheck": "tsc --noEmit", | ||
| "smoke:app-server-permissions": "node ./scripts/app-server-permissions-smoke.mjs", | ||
| "smoke:app-server-thread-permissions": "node ./scripts/app-server-thread-permissions-smoke.mjs", | ||
| "pack:smoke": "node ./scripts/pack-smoke.mjs", | ||
| "release:metadata": "node ./scripts/release-metadata.mjs", | ||
| "release:apply-version": "node ./scripts/apply-release-version.mjs" | ||
|
eeelvn-bot marked this conversation as resolved.
|
||
| } | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are these changes here at all? Just bad base branch?