xcode-copilot-server 1.0.0 → 1.0.1
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 +6 -2
- package/config.json5 +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# xcode-copilot-server
|
|
1
|
+
# xcode-copilot-server [](https://www.npmjs.com/package/xcode-copilot-server)
|
|
2
2
|
|
|
3
3
|
An OpenAI-compatible proxy API server that lets you use GitHub Copilot in Xcode.
|
|
4
4
|
|
|
@@ -69,6 +69,10 @@ There's an additional step if you want to use Xcode MCP server (requires Xcode 2
|
|
|
69
69
|
1. Open Xcode and go to Settings > Intelligence
|
|
70
70
|
2. Enable "Xcode Tools" under "Model Context Protocol"
|
|
71
71
|
|
|
72
|
+
### Agent skills
|
|
73
|
+
|
|
74
|
+
The underlying Copilot CLI session can access and invoke [Agent skills](https://docs.github.com/en/copilot/customizing-copilot/extending-copilot-coding-agent-with-agent-skills), which are folders of instructions, scripts, and resources that improve Copilot's performance on specialised tasks. Skills which are stored in your repository (`.github/skills/` or `.claude/skills/`) and personal skills in your home directory (`~/.copilot/skills/` or `~/.claude/skills/`) are automatically available.
|
|
75
|
+
|
|
72
76
|
## Configuration
|
|
73
77
|
|
|
74
78
|
The server reads its configuration from a `config.json5` file. By default, it uses the bundled one, but you can point to your own with `--config`:
|
|
@@ -105,7 +109,7 @@ The config file uses [JSON5](https://json5.org/) format, which supports comments
|
|
|
105
109
|
// Reasoning effort for models that support it: "low", "medium", "high", "xhigh"
|
|
106
110
|
reasoningEffort: "xhigh",
|
|
107
111
|
|
|
108
|
-
// Auto-approve
|
|
112
|
+
// Auto-approve permission requests.
|
|
109
113
|
// true to approve all, false to deny all,
|
|
110
114
|
// or an array of kinds: "read", "write", "shell", "mcp", "url"
|
|
111
115
|
autoApprovePermissions: ["read", "mcp"],
|
package/config.json5
CHANGED
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
// E.g: "low", "medium", "high", "xhigh"
|
|
42
42
|
reasoningEffort: "xhigh",
|
|
43
43
|
|
|
44
|
-
// Auto-approve
|
|
44
|
+
// Auto-approve permission requests.
|
|
45
45
|
// - true: approve all
|
|
46
46
|
// - false: deny all
|
|
47
47
|
// - ["read", "mcp"]: approve only listed kinds (e.g: "read", "write", "shell", "mcp", "url")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xcode-copilot-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "OpenAI-compatible proxy API server for Xcode, powered by GitHub Copilot",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://github.com/theblixguy/xcode-copilot-server.git"
|
|
10
10
|
},
|
|
11
|
-
"engines": {
|
|
11
|
+
"engines": {
|
|
12
12
|
"node": "25.6.0"
|
|
13
13
|
},
|
|
14
14
|
"bin": {
|