glad-web 1.0.21 → 1.0.23
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.md +2 -2
- package/README.zh-CN.md +2 -2
- package/bin/cli.js +1 -1
- package/lib/ai-tools/registry.js +1 -1
- package/lib/codex/structured-session.js +668 -0
- package/lib/commands/web.js +63 -2
- package/lib/session/session-manager.js +74 -11
- package/lib/web/index.html +419 -13
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -63,7 +63,7 @@ Requirements:
|
|
|
63
63
|
- Node.js `>=18`
|
|
64
64
|
|
|
65
65
|
```bash
|
|
66
|
-
git clone https://github.com/
|
|
66
|
+
git clone https://github.com/Anonymous/Glad.git
|
|
67
67
|
cd glad
|
|
68
68
|
npm install
|
|
69
69
|
node bin/cli.js
|
|
@@ -192,4 +192,4 @@ See [SECURITY.md](./SECURITY.md) for details.
|
|
|
192
192
|
|
|
193
193
|
## License
|
|
194
194
|
|
|
195
|
-
MIT. Glad is maintained by [
|
|
195
|
+
MIT. Glad is maintained by [anonymous](https://github.com/Anonymous/Glad).
|
package/README.zh-CN.md
CHANGED
|
@@ -63,7 +63,7 @@ glad
|
|
|
63
63
|
- Node.js `>=18`
|
|
64
64
|
|
|
65
65
|
```bash
|
|
66
|
-
git clone https://github.com/
|
|
66
|
+
git clone https://github.com/Anonymous/Glad.git
|
|
67
67
|
cd glad
|
|
68
68
|
npm install
|
|
69
69
|
node bin/cli.js
|
|
@@ -192,4 +192,4 @@ Glad 面向受信任的本机或局域网环境使用。
|
|
|
192
192
|
|
|
193
193
|
## 开源协议
|
|
194
194
|
|
|
195
|
-
本项目使用 MIT 协议,由 [
|
|
195
|
+
本项目使用 MIT 协议,由 [anonymous](https://github.com/Anonymous/Glad) 维护。
|
package/bin/cli.js
CHANGED
|
@@ -57,7 +57,7 @@ program.on('--help', () => {
|
|
|
57
57
|
console.log('Supported AI Tools:');
|
|
58
58
|
console.log(' • Claude Code, Aider, GitHub Copilot, Gemini CLI, and more...');
|
|
59
59
|
console.log('');
|
|
60
|
-
console.log('Source: https://gitee.com/
|
|
60
|
+
console.log('Source: https://gitee.com/anonymous/glad');
|
|
61
61
|
console.log('');
|
|
62
62
|
});
|
|
63
63
|
|
package/lib/ai-tools/registry.js
CHANGED
|
@@ -200,7 +200,7 @@ const AI_TOOLS = {
|
|
|
200
200
|
args: [require('path').join(__dirname, 'demo', 'index.js')],
|
|
201
201
|
displayName: 'Demo',
|
|
202
202
|
description: 'Interactive demo for testing (no AI installation required)',
|
|
203
|
-
website: 'https://gitee.com/
|
|
203
|
+
website: 'https://gitee.com/anonymous/glad',
|
|
204
204
|
checkInstalled: async () => true // Always available
|
|
205
205
|
}
|
|
206
206
|
};
|