ai-cli-mcp 2.8.2 → 2.9.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/.github/workflows/publish.yml +15 -0
- package/CHANGELOG.md +14 -0
- package/dist/cli-builder.js +1 -1
- package/package.json +1 -1
- package/server.json +2 -2
- package/src/cli-builder.ts +1 -1
|
@@ -47,3 +47,18 @@ jobs:
|
|
|
47
47
|
env:
|
|
48
48
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
49
49
|
run: npx semantic-release
|
|
50
|
+
|
|
51
|
+
- name: Install mcp-publisher
|
|
52
|
+
run: |
|
|
53
|
+
curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher
|
|
54
|
+
|
|
55
|
+
- name: Authenticate to MCP Registry
|
|
56
|
+
run: ./mcp-publisher login github-oidc
|
|
57
|
+
|
|
58
|
+
- name: Set version in server.json
|
|
59
|
+
run: |
|
|
60
|
+
VERSION=$(node -p "require('./package.json').version")
|
|
61
|
+
jq --arg v "$VERSION" '.version = $v | .packages[0].version = $v' server.json > server.tmp && mv server.tmp server.json
|
|
62
|
+
|
|
63
|
+
- name: Publish to MCP Registry
|
|
64
|
+
run: ./mcp-publisher publish
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [2.9.1](https://github.com/mkXultra/ai-cli-mcp/compare/v2.9.0...v2.9.1) (2026-03-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add --skip-git-repo-check flag for Codex CLI ([ca185a1](https://github.com/mkXultra/ai-cli-mcp/commit/ca185a17dc90e25eca206248832d47ad5232d391)), closes [mkXultra/ai-cli-mcp#12](https://github.com/mkXultra/ai-cli-mcp/issues/12)
|
|
7
|
+
|
|
8
|
+
# [2.9.0](https://github.com/mkXultra/ai-cli-mcp/compare/v2.8.2...v2.9.0) (2026-03-02)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* MCP Registry公開をCI/CDに統合 ([366d4db](https://github.com/mkXultra/ai-cli-mcp/commit/366d4db1ab63dcf6290c0f72f16fe875f9846464))
|
|
14
|
+
|
|
1
15
|
## [2.8.2](https://github.com/mkXultra/ai-cli-mcp/compare/v2.8.1...v2.8.2) (2026-03-02)
|
|
2
16
|
|
|
3
17
|
|
package/dist/cli-builder.js
CHANGED
|
@@ -117,7 +117,7 @@ export function buildCliCommand(options) {
|
|
|
117
117
|
if (resolvedModel) {
|
|
118
118
|
args.push('--model', resolvedModel);
|
|
119
119
|
}
|
|
120
|
-
args.push('--full-auto', '--json', prompt);
|
|
120
|
+
args.push('--skip-git-repo-check', '--full-auto', '--json', prompt);
|
|
121
121
|
}
|
|
122
122
|
else if (agent === 'gemini') {
|
|
123
123
|
cliPath = options.cliPaths.gemini;
|
package/package.json
CHANGED
package/server.json
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"url": "https://github.com/mkXultra/ai-cli-mcp",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "2.8.
|
|
9
|
+
"version": "2.8.2",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "ai-cli-mcp",
|
|
14
|
-
"version": "2.8.
|
|
14
|
+
"version": "2.8.2",
|
|
15
15
|
"transport": {
|
|
16
16
|
"type": "stdio"
|
|
17
17
|
}
|
package/src/cli-builder.ts
CHANGED
|
@@ -156,7 +156,7 @@ export function buildCliCommand(options: BuildCliCommandOptions): CliCommand {
|
|
|
156
156
|
args.push('--model', resolvedModel);
|
|
157
157
|
}
|
|
158
158
|
|
|
159
|
-
args.push('--full-auto', '--json', prompt);
|
|
159
|
+
args.push('--skip-git-repo-check', '--full-auto', '--json', prompt);
|
|
160
160
|
|
|
161
161
|
} else if (agent === 'gemini') {
|
|
162
162
|
cliPath = options.cliPaths.gemini;
|