@luffysolution/omnischolar-pi 0.1.16 → 0.1.17
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.en.md +6 -0
- package/README.md +4 -0
- package/docs/INSTALLATION.en.md +1 -0
- package/docs/INSTALLATION.md +1 -0
- package/package.json +1 -1
- package/pi-extension/dist/index.js +1 -1
package/README.en.md
CHANGED
|
@@ -48,8 +48,14 @@ Codex plugin:
|
|
|
48
48
|
```sh
|
|
49
49
|
codex plugin marketplace add luffysolution-svg/omnischolar --ref main
|
|
50
50
|
codex plugin add omnischolar@omnischolar
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Update the installed Codex plugin:
|
|
54
|
+
|
|
55
|
+
```sh
|
|
51
56
|
codex plugin marketplace upgrade omnischolar
|
|
52
57
|
codex plugin remove omnischolar@omnischolar
|
|
58
|
+
codex plugin add omnischolar@omnischolar
|
|
53
59
|
```
|
|
54
60
|
|
|
55
61
|
Claude Code plugin:
|
package/README.md
CHANGED
|
@@ -59,7 +59,11 @@ uv tool install --reinstall luffysolution-omnischolar
|
|
|
59
59
|
```sh
|
|
60
60
|
codex plugin marketplace add luffysolution-svg/omnischolar --ref main
|
|
61
61
|
codex plugin add omnischolar@omnischolar
|
|
62
|
+
|
|
63
|
+
# 更新已安装的 Codex 插件
|
|
62
64
|
codex plugin marketplace upgrade omnischolar
|
|
65
|
+
codex plugin remove omnischolar@omnischolar
|
|
66
|
+
codex plugin add omnischolar@omnischolar
|
|
63
67
|
```
|
|
64
68
|
|
|
65
69
|
ChatGPT 桌面应用中重启应用后打开 **Plugins**,选择 **OmniScholar** 并安装或启用;Codex CLI 可运行 `/plugins` 浏览插件。插件已经包含 Skills,并通过下面的命令启动 PyPI 最新 MCP:
|
package/docs/INSTALLATION.en.md
CHANGED
package/docs/INSTALLATION.md
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Client } from "@modelcontextprotocol/sdk/client/index.js";
|
|
2
2
|
import { StdioClientTransport } from "@modelcontextprotocol/sdk/client/stdio.js";
|
|
3
3
|
import { Type } from "typebox";
|
|
4
|
-
const CLIENT_INFO = { name: "omnischolar-pi", version: "0.1.
|
|
4
|
+
const CLIENT_INFO = { name: "omnischolar-pi", version: "0.1.17" };
|
|
5
5
|
export function resultText(result) {
|
|
6
6
|
return result.content
|
|
7
7
|
.map((item) => {
|