open-computer-use-mcp 0.1.3 → 0.1.4
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 +1 -1
- package/bin/open-codex-computer-use-mcp +9 -1
- package/bin/open-computer-use +9 -1
- package/bin/open-computer-use-mcp +9 -1
- package/dist/Open Computer Use.app/Contents/Info.plist +2 -2
- package/dist/Open Computer Use.app/Contents/MacOS/OpenComputerUse +0 -0
- package/package.json +1 -1
- package/plugins/open-computer-use/.codex-plugin/plugin.json +1 -1
package/README.md
CHANGED
|
@@ -62,7 +62,7 @@ open-computer-use install-codex-plugin
|
|
|
62
62
|
|
|
63
63
|
## Notes
|
|
64
64
|
|
|
65
|
-
- Version: `0.1.
|
|
65
|
+
- Version: `0.1.4`
|
|
66
66
|
- Platform: macOS 14+
|
|
67
67
|
- Architectures: `arm64` and `x64` via a universal app bundle
|
|
68
68
|
- The host terminal or app still needs macOS `Accessibility` and `Screen Recording` permissions
|
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
#!/usr/bin/env bash
|
|
2
2
|
set -euo pipefail
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
script_path="${BASH_SOURCE[0]}"
|
|
5
|
+
while [[ -L "${script_path}" ]]; do
|
|
6
|
+
script_dir="$(cd "$(dirname "${script_path}")" && pwd)"
|
|
7
|
+
script_path="$(readlink "${script_path}")"
|
|
8
|
+
if [[ "${script_path}" != /* ]]; then
|
|
9
|
+
script_path="${script_dir}/${script_path}"
|
|
10
|
+
fi
|
|
11
|
+
done
|
|
12
|
+
package_root="$(cd "$(dirname "${script_path}")/.." && pwd)"
|
|
5
13
|
app_binary="${package_root}/dist/Open Computer Use.app/Contents/MacOS/OpenComputerUse"
|
|
6
14
|
install_script="${package_root}/scripts/install-codex-plugin.sh"
|
|
7
15
|
|
package/bin/open-computer-use
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
#!/usr/bin/env bash
|
|
2
2
|
set -euo pipefail
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
script_path="${BASH_SOURCE[0]}"
|
|
5
|
+
while [[ -L "${script_path}" ]]; do
|
|
6
|
+
script_dir="$(cd "$(dirname "${script_path}")" && pwd)"
|
|
7
|
+
script_path="$(readlink "${script_path}")"
|
|
8
|
+
if [[ "${script_path}" != /* ]]; then
|
|
9
|
+
script_path="${script_dir}/${script_path}"
|
|
10
|
+
fi
|
|
11
|
+
done
|
|
12
|
+
package_root="$(cd "$(dirname "${script_path}")/.." && pwd)"
|
|
5
13
|
app_binary="${package_root}/dist/Open Computer Use.app/Contents/MacOS/OpenComputerUse"
|
|
6
14
|
install_script="${package_root}/scripts/install-codex-plugin.sh"
|
|
7
15
|
|
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
#!/usr/bin/env bash
|
|
2
2
|
set -euo pipefail
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
script_path="${BASH_SOURCE[0]}"
|
|
5
|
+
while [[ -L "${script_path}" ]]; do
|
|
6
|
+
script_dir="$(cd "$(dirname "${script_path}")" && pwd)"
|
|
7
|
+
script_path="$(readlink "${script_path}")"
|
|
8
|
+
if [[ "${script_path}" != /* ]]; then
|
|
9
|
+
script_path="${script_dir}/${script_path}"
|
|
10
|
+
fi
|
|
11
|
+
done
|
|
12
|
+
package_root="$(cd "$(dirname "${script_path}")/.." && pwd)"
|
|
5
13
|
app_binary="${package_root}/dist/Open Computer Use.app/Contents/MacOS/OpenComputerUse"
|
|
6
14
|
install_script="${package_root}/scripts/install-codex-plugin.sh"
|
|
7
15
|
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
<key>CFBundlePackageType</key>
|
|
20
20
|
<string>APPL</string>
|
|
21
21
|
<key>CFBundleShortVersionString</key>
|
|
22
|
-
<string>0.1.
|
|
22
|
+
<string>0.1.4</string>
|
|
23
23
|
<key>CFBundleVersion</key>
|
|
24
|
-
<string>
|
|
24
|
+
<string>17</string>
|
|
25
25
|
<key>LSMinimumSystemVersion</key>
|
|
26
26
|
<string>14.0</string>
|
|
27
27
|
<key>LSUIElement</key>
|
|
Binary file
|
package/package.json
CHANGED