codex-weixin 0.3.6 → 0.3.8
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/CHANGELOG.md +223 -209
- package/LICENSE +21 -21
- package/NOTICE +5 -5
- package/README.en.md +216 -216
- package/README.md +2 -2
- package/dist/bridge/service.js +13 -8
- package/dist/bridge/service.js.map +1 -1
- package/dist/server/index.js +0 -0
- package/dist/server/update-manager.js +1 -0
- package/dist/server/update-manager.js.map +1 -1
- package/dist/web/app.js +1452 -1452
- package/dist/web/favicon.svg +10 -10
- package/dist/web/index.html +390 -390
- package/dist/web/styles.css +418 -418
- package/package.json +62 -62
- package/src/web/favicon.svg +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,214 +1,228 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
3
|
All notable changes to `codex-weixin` are documented in this file.
|
|
4
4
|
|
|
5
|
-
## [0.3.
|
|
6
|
-
|
|
7
|
-
### Added
|
|
8
|
-
|
|
9
|
-
- Added `/resume` in WeChat to list the current sender's managed sessions and switch back to a selected Codex thread by number.
|
|
10
|
-
- Added recent user-prompt summaries and timestamps to the session list so users can identify historical conversations before switching, including lazy recovery for sessions created by older versions.
|
|
11
|
-
|
|
12
|
-
### Security
|
|
13
|
-
|
|
14
|
-
- Kept Codex thread IDs and local attachment paths out of `/resume` replies while preserving attachment names in useful session summaries.
|
|
15
|
-
|
|
16
|
-
## [0.3.5] - 2026-07-17
|
|
17
|
-
|
|
18
|
-
### Fixed
|
|
19
|
-
|
|
20
|
-
- Prevented visible Node.js console windows from repeatedly appearing on Windows when the Web UI checks the Codex CLI, starts the Codex app-server, or falls back to `codex exec`.
|
|
21
|
-
|
|
22
|
-
## [0.3.4] - 2026-07-16
|
|
23
|
-
|
|
24
|
-
### Changed
|
|
25
|
-
|
|
26
|
-
- Raised the shared inbound attachment limit from 50 MiB to 100 MiB, matching Tencent's official connector: Web turns accept up to 10 files totaling 100 MiB, while each WeChat attachment may be up to 100 MiB.
|
|
27
|
-
- Migrated the previous 50 MiB default automatically and clamped manually configured values so the service never accepts attachments above 100 MiB.
|
|
5
|
+
## [0.3.8] - 2026-07-20
|
|
28
6
|
|
|
29
7
|
### Fixed
|
|
30
8
|
|
|
31
|
-
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
###
|
|
43
|
-
|
|
44
|
-
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
-
|
|
99
|
-
|
|
100
|
-
## [0.
|
|
101
|
-
|
|
102
|
-
###
|
|
103
|
-
|
|
104
|
-
-
|
|
105
|
-
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
###
|
|
132
|
-
|
|
133
|
-
-
|
|
134
|
-
|
|
135
|
-
## [0.2.
|
|
136
|
-
|
|
137
|
-
###
|
|
138
|
-
|
|
139
|
-
- Added
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
###
|
|
167
|
-
|
|
168
|
-
-
|
|
169
|
-
|
|
170
|
-
## [0.2.
|
|
171
|
-
|
|
172
|
-
###
|
|
173
|
-
|
|
174
|
-
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
-
|
|
181
|
-
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
[0.2.
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
9
|
+
- Fixed Windows Web updates failing with exit code 1 when Node.js is installed under a path containing spaces such as `C:\Program Files\nodejs`; the updater now invokes the bundled `npm-cli.js` through Node instead of passing `npm.cmd` through `cmd.exe`.
|
|
10
|
+
|
|
11
|
+
## [0.3.7] - 2026-07-20
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Replaced numeric `/resume` selection with distinct `R1`, `R2`, and similar codes so a list position cannot be confused with default titles such as `会话 6`.
|
|
16
|
+
- Rejected bare numeric selections with an explanatory reply, preventing users from accidentally switching to the wrong historical session.
|
|
17
|
+
|
|
18
|
+
## [0.3.6] - 2026-07-20
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
|
|
22
|
+
- Added `/resume` in WeChat to list the current sender's managed sessions and switch back to a selected Codex thread by number.
|
|
23
|
+
- Added recent user-prompt summaries and timestamps to the session list so users can identify historical conversations before switching, including lazy recovery for sessions created by older versions.
|
|
24
|
+
|
|
25
|
+
### Security
|
|
26
|
+
|
|
27
|
+
- Kept Codex thread IDs and local attachment paths out of `/resume` replies while preserving attachment names in useful session summaries.
|
|
28
|
+
|
|
29
|
+
## [0.3.5] - 2026-07-17
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
|
|
33
|
+
- Prevented visible Node.js console windows from repeatedly appearing on Windows when the Web UI checks the Codex CLI, starts the Codex app-server, or falls back to `codex exec`.
|
|
34
|
+
|
|
35
|
+
## [0.3.4] - 2026-07-16
|
|
36
|
+
|
|
37
|
+
### Changed
|
|
38
|
+
|
|
39
|
+
- Raised the shared inbound attachment limit from 50 MiB to 100 MiB, matching Tencent's official connector: Web turns accept up to 10 files totaling 100 MiB, while each WeChat attachment may be up to 100 MiB.
|
|
40
|
+
- Migrated the previous 50 MiB default automatically and clamped manually configured values so the service never accepts attachments above 100 MiB.
|
|
41
|
+
|
|
42
|
+
### Fixed
|
|
43
|
+
|
|
44
|
+
- Replied directly in WeChat when an attachment exceeds 100 MiB instead of sending a download-failure marker to Codex and producing a misleading retry response.
|
|
45
|
+
- Accounted for AES padding at the exact WeChat attachment boundary so a 100 MiB plaintext file is not rejected because its encrypted payload is slightly larger.
|
|
46
|
+
- Fixed macOS Web updates failing with `spawn npm ENOENT` when the service is launched without Homebrew in `PATH`; the updater now locates the active Node installation's `npm-cli.js` and starts it with an absolute Node path.
|
|
47
|
+
|
|
48
|
+
## [0.3.3] - 2026-07-16
|
|
49
|
+
|
|
50
|
+
### Added
|
|
51
|
+
|
|
52
|
+
- Added an account-removal dialog that lets users retain session history or delete it permanently, with retention selected by default.
|
|
53
|
+
- Added credential-free retained-account matching so the same WeChat user can scan again and recover the previous local remark, authorization, active-session state, and managed sessions.
|
|
54
|
+
|
|
55
|
+
### Security
|
|
56
|
+
|
|
57
|
+
- Removed account login credentials immediately in both deletion modes. The retained recovery index stores only the local account ID, stable WeChat user ID, optional remark, and retention timestamp; it never stores tokens or service endpoints.
|
|
58
|
+
|
|
59
|
+
## [0.3.2] - 2026-07-16
|
|
60
|
+
|
|
61
|
+
### Fixed
|
|
62
|
+
|
|
63
|
+
- Fixed Windows Web updates treating a shared global npm prefix as a local project, which could attempt to move other global packages such as a running `@openai/codex` executable and fail with `EBUSY / -4082`.
|
|
64
|
+
- Detected Windows and Unix global npm layouts and updated them with an explicit `--global --prefix`, while preserving the existing layout for isolated Unix runtimes.
|
|
65
|
+
- Used the active package root consistently for cwd lock release and post-install verification across global and isolated layouts.
|
|
66
|
+
|
|
67
|
+
### Upgrade Note
|
|
68
|
+
|
|
69
|
+
- An affected Windows service still running an older updater from a shared global npm prefix cannot apply this fix to itself. Stop the service once, run `npm install -g codex-weixin@0.3.2` from outside the package directory, and start `codex-weixin` again. Services already moved to an isolated runtime can update normally from the Web page.
|
|
70
|
+
|
|
71
|
+
## [0.3.1] - 2026-07-16
|
|
72
|
+
|
|
73
|
+
### Fixed
|
|
74
|
+
|
|
75
|
+
- Fixed macOS background restarts reporting that Codex CLI was missing when Codex was provided only by the ChatGPT or Codex desktop app bundle outside the service `PATH`.
|
|
76
|
+
- Reused desktop CLI discovery for the Web status probe, app-server, and `codex exec` while continuing to prefer an existing CLI available on `PATH`.
|
|
77
|
+
|
|
78
|
+
## [0.3.0] - 2026-07-16
|
|
79
|
+
|
|
80
|
+
### Fixed
|
|
81
|
+
|
|
82
|
+
- Fixed Windows npm self-updates failing with `EBUSY` when the service process used the active `node_modules/codex-weixin` directory as its working directory.
|
|
83
|
+
- Moved the parent service cwd out of the package tree before installation and started npm from the owning runtime prefix, allowing Windows to rename and replace the package.
|
|
84
|
+
- Converted unsigned Windows process exit codes such as `4294963214` back to signed libuv values and reported this case as `-4082 / EBUSY`.
|
|
85
|
+
|
|
86
|
+
## [0.2.9] - 2026-07-15
|
|
87
|
+
|
|
88
|
+
### Changed
|
|
89
|
+
|
|
90
|
+
- Replaced the update dialog arrow with a quiet vertical divider between the current and latest versions.
|
|
91
|
+
- Changed Web updates to install into the npm prefix that owns the running `codex-weixin` package instead of always installing globally.
|
|
92
|
+
|
|
93
|
+
### Fixed
|
|
94
|
+
|
|
95
|
+
- Fixed Windows and other isolated local runtimes restarting the old package after npm had successfully updated an unrelated global copy.
|
|
96
|
+
- Verified the installed package version and server entry point before stopping the old service, preventing false successful-update responses.
|
|
97
|
+
- Rejected Web installation from source checkouts with an actionable message instead of mutating or restarting the wrong installation.
|
|
98
|
+
|
|
99
|
+
### Upgrade Note
|
|
100
|
+
|
|
101
|
+
- Users already running 0.2.8 or earlier from an isolated local runtime must update that runtime to 0.2.9 once manually; subsequent Web updates will target the correct runtime automatically.
|
|
102
|
+
|
|
103
|
+
## [0.2.8] - 2026-07-15
|
|
104
|
+
|
|
105
|
+
### Added
|
|
106
|
+
|
|
107
|
+
- Added a manual "Check for updates" control to Settings that bypasses the server cache and reports when the installed version is current.
|
|
108
|
+
|
|
109
|
+
### Changed
|
|
110
|
+
|
|
111
|
+
- Preserved the existing six-hour automatic update-check interval while refining the update dialog into a balanced, responsive version-flow layout.
|
|
112
|
+
|
|
113
|
+
## [0.2.7] - 2026-07-15
|
|
114
|
+
|
|
115
|
+
### Added
|
|
116
|
+
|
|
117
|
+
- Added process-progress delivery from Codex app-server to WeChat and the Web session page, with global and per-session controls plus the `/stream` WeChat command.
|
|
118
|
+
- Added collapsible Web progress timelines that stay open while processing, collapse after completion, and display the total processing time.
|
|
119
|
+
|
|
120
|
+
### Changed
|
|
121
|
+
|
|
122
|
+
- Enabled process progress by default for new installations and configurations that have not explicitly chosen a value.
|
|
123
|
+
- Kept final answers out of token-level streaming so Web and WeChat render one stable answer, splitting WeChat messages only when the platform length limit requires it.
|
|
124
|
+
|
|
125
|
+
### Fixed
|
|
126
|
+
|
|
127
|
+
- Preserved complete long answers in bounded WeChat chunks instead of losing the tail after many paragraph-level sends.
|
|
128
|
+
- Kept Web and WeChat final-answer content aligned while separating public progress commentary from the authoritative final response.
|
|
129
|
+
|
|
130
|
+
## [0.2.6] - 2026-07-15
|
|
131
|
+
|
|
132
|
+
### Added
|
|
133
|
+
|
|
134
|
+
- Added non-blocking Web update checks with a "Later" or "Update now" prompt when a newer stable npm release is available.
|
|
135
|
+
- Added automatic npm Registry selection between the official registry and npmmirror, including stale-mirror verification and installation through the selected source.
|
|
136
|
+
- Added guarded global package installation followed by a detached, cross-platform service restart and automatic Web reconnection.
|
|
137
|
+
|
|
138
|
+
### Security
|
|
139
|
+
|
|
140
|
+
- Restricted Web-triggered updates to a server-verified stable `codex-weixin` version and fixed Registry allowlist, protected by the existing localhost, Origin, and request-token checks.
|
|
141
|
+
|
|
142
|
+
## [0.2.5] - 2026-07-15
|
|
143
|
+
|
|
144
|
+
### Added
|
|
145
|
+
|
|
146
|
+
- Added a responsive GitHub shortcut to the Web header that opens the codex-weixin repository in a new tab.
|
|
147
|
+
|
|
148
|
+
## [0.2.4] - 2026-07-15
|
|
149
|
+
|
|
150
|
+
### Fixed
|
|
151
|
+
|
|
152
|
+
- Added a browser favicon matching the terminal-and-WeChat mark in the Web header and reused it as the README logo.
|
|
153
|
+
|
|
154
|
+
## [0.2.3] - 2026-07-15
|
|
155
|
+
|
|
156
|
+
### Added
|
|
157
|
+
|
|
158
|
+
- Added session-scoped `/model` and `/effort` WeChat commands with numbered capability-aware choices, persistent overrides, and `default` inheritance.
|
|
159
|
+
- Passed session model and reasoning-effort overrides through both app-server and `codex exec` fallback turns, including Web continuation of the same session.
|
|
160
|
+
- Added expandable Bot ID and User ID details to each Web account card, displayed the codex-weixin package version in the header, and added session-level model and reasoning-effort selectors to Web chat.
|
|
161
|
+
|
|
162
|
+
### Fixed
|
|
163
|
+
|
|
164
|
+
- Reused the existing local account when the same WeChat identity scans again with a new iLink bot ID, preserving its remark, authorization, sessions, and inbound state while refreshing credentials.
|
|
165
|
+
|
|
166
|
+
## [0.2.2] - 2026-07-14
|
|
167
|
+
|
|
168
|
+
### Fixed
|
|
169
|
+
|
|
170
|
+
- Reused the Codex runner's cross-platform command resolver in the Web status probe, preventing Windows `codex.cmd` installations from being reported as missing when Codex was actually available.
|
|
171
|
+
|
|
172
|
+
## [0.2.1] - 2026-07-14
|
|
173
|
+
|
|
174
|
+
### Changed
|
|
175
|
+
|
|
176
|
+
- Restored the README logo, feature-status tables, and screenshot locations for phone-based WeChat examples.
|
|
177
|
+
- Added a sanitized Web session-management preview generated from the actual local management page.
|
|
178
|
+
|
|
179
|
+
### Fixed
|
|
180
|
+
|
|
181
|
+
- Marked the built server entry point executable so npm keeps the `codex-weixin` command in the published package.
|
|
182
|
+
|
|
183
|
+
## [0.2.0] - 2026-07-14
|
|
184
|
+
|
|
185
|
+
### Added
|
|
186
|
+
|
|
187
|
+
- Local-only Web management page for account, session, workspace, model, and reasoning-effort settings.
|
|
188
|
+
- Concurrent multi-account WeChat login and monitoring with local account remarks and sender authorization.
|
|
189
|
+
- Managed Codex sessions grouped by WeChat account, including history, Markdown rendering, continued chat, and create, rename, activate, reset, and delete actions.
|
|
190
|
+
- Web prompt attachments and history playback, preview, or download for images, videos, and files.
|
|
191
|
+
- WeChat inbound and outbound image, audio, video, and file handling.
|
|
192
|
+
- Codex app-server V2 support with dynamic model metadata and `codex exec` fallback.
|
|
193
|
+
- GPT-5.6 Sol, Terra, and Luna model options for the IkunCoding provider.
|
|
194
|
+
- Web typing state and `/status` output for the effective model and reasoning effort.
|
|
195
|
+
|
|
196
|
+
### Changed
|
|
197
|
+
|
|
198
|
+
- Replaced the command-oriented CLI with the `codex-weixin` local server entry point.
|
|
199
|
+
- Unified service state and the default Codex workspace under `~/.codex-weixin`.
|
|
200
|
+
- Made app-server the preferred backend for both new and resumed sessions.
|
|
201
|
+
|
|
202
|
+
### Fixed
|
|
203
|
+
|
|
204
|
+
- Prevented duplicate WeChat deliveries from producing duplicate Codex replies.
|
|
205
|
+
- Preserved session ownership and numbering per WeChat account when creating sessions from the Web page.
|
|
206
|
+
- Restored connection and history continuation for newly created Web sessions.
|
|
207
|
+
- Displayed Codex-generated media in Web session history.
|
|
208
|
+
- Kept GPT-5.6 options available after selecting a different model.
|
|
209
|
+
- Removed extra message spacing and hid internal WeChat and Codex routing identifiers from the normal UI.
|
|
210
|
+
|
|
211
|
+
[0.3.7]: https://github.com/XavierJiezou/codex-weixin/releases/tag/v0.3.7
|
|
212
|
+
[0.3.6]: https://github.com/XavierJiezou/codex-weixin/releases/tag/v0.3.6
|
|
213
|
+
[0.3.5]: https://github.com/XavierJiezou/codex-weixin/releases/tag/v0.3.5
|
|
214
|
+
[0.3.4]: https://github.com/XavierJiezou/codex-weixin/releases/tag/v0.3.4
|
|
215
|
+
[0.3.3]: https://github.com/XavierJiezou/codex-weixin/releases/tag/v0.3.3
|
|
216
|
+
[0.3.2]: https://github.com/XavierJiezou/codex-weixin/releases/tag/v0.3.2
|
|
217
|
+
[0.3.1]: https://github.com/XavierJiezou/codex-weixin/releases/tag/v0.3.1
|
|
218
|
+
[0.3.0]: https://github.com/XavierJiezou/codex-weixin/releases/tag/v0.3.0
|
|
219
|
+
[0.2.9]: https://github.com/XavierJiezou/codex-weixin/releases/tag/v0.2.9
|
|
220
|
+
[0.2.8]: https://github.com/XavierJiezou/codex-weixin/releases/tag/v0.2.8
|
|
221
|
+
[0.2.7]: https://github.com/XavierJiezou/codex-weixin/releases/tag/v0.2.7
|
|
222
|
+
[0.2.6]: https://github.com/XavierJiezou/codex-weixin/releases/tag/v0.2.6
|
|
223
|
+
[0.2.5]: https://github.com/XavierJiezou/codex-weixin/releases/tag/v0.2.5
|
|
224
|
+
[0.2.4]: https://github.com/XavierJiezou/codex-weixin/releases/tag/v0.2.4
|
|
225
|
+
[0.2.3]: https://github.com/XavierJiezou/codex-weixin/releases/tag/v0.2.3
|
|
226
|
+
[0.2.2]: https://github.com/XavierJiezou/codex-weixin/releases/tag/v0.2.2
|
|
227
|
+
[0.2.1]: https://github.com/XavierJiezou/codex-weixin/releases/tag/v0.2.1
|
|
228
|
+
[0.2.0]: https://github.com/XavierJiezou/codex-weixin/releases/tag/v0.2.0
|
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 Xuechao Zou
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Xuechao Zou
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/NOTICE
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
codex-weixin is a clean-room independent WeChat bridge for OpenAI Codex.
|
|
2
|
-
|
|
3
|
-
The project structure and protocol boundaries were informed by the MIT-licensed
|
|
4
|
-
Tencent/openclaw-weixin package and by public documentation in the WeChat/Codex
|
|
5
|
-
bridge ecosystem. Source code from AGPL-licensed projects is not copied.
|
|
1
|
+
codex-weixin is a clean-room independent WeChat bridge for OpenAI Codex.
|
|
2
|
+
|
|
3
|
+
The project structure and protocol boundaries were informed by the MIT-licensed
|
|
4
|
+
Tencent/openclaw-weixin package and by public documentation in the WeChat/Codex
|
|
5
|
+
bridge ecosystem. Source code from AGPL-licensed projects is not copied.
|