一键导入
release-v5-acp
Release @mcpc/acp-ai-provider package for AI SDK v5 (0.1.x versions) from release-v5 branch. Handles version bump, tagging, and publishing workflow.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Release @mcpc/acp-ai-provider package for AI SDK v5 (0.1.x versions) from release-v5 branch. Handles version bump, tagging, and publishing workflow.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Creates presentation slides using Slidev with Markdown syntax. Configures themes, layouts, animations, and exports to PDF/PPTX. Use for building interactive web-based presentations for developers.
Build agentic MCP servers using @mcpc/core by composing existing MCP tools. Use when creating, extending, or debugging MCPC agentic servers — including setting up compositions, choosing execution modes, writing plugins, loading skills, and connecting transports.
Upgrades mcpc package versions and their dependencies. Handles core version bump and syncs all dependent packages accordingly. Also updates CLI version in code.
| name | release-v5-acp |
| description | Release @mcpc/acp-ai-provider package for AI SDK v5 (0.1.x versions) from release-v5 branch. Handles version bump, tagging, and publishing workflow. |
Release @mcpc/acp-ai-provider package for the AI SDK v5 compatibility line
(version 0.1.x).
| ACP Version | AI SDK Version | Branch |
|---|---|---|
0.2.x | v6 | main |
0.1.x | v5 | release-v5 |
git checkout release-v5
git pull origin release-v5
Cherry-pick fixes from main:
git cherry-pick <commit-hash>
Or manually apply changes. Note: release-v5 uses AI SDK V2 types
(LanguageModelV2StreamPart), main uses V3 (LanguageModelV3StreamPart).
Edit packages/acp-ai-provider/deno.json:
{
"version": "0.1.x" // Increment patch version
}
deno fmt packages/acp-ai-provider/
deno check packages/acp-ai-provider/mod.ts
deno test --allow-all packages/acp-ai-provider/tests/
git add packages/acp-ai-provider/deno.json
git commit -m "chore(acp-ai-provider): bump version to 0.1.x"
git tag v0.1.x # Use the new version
git push origin release-v5
git push origin v0.1.x
If core or other packages need to use the new version:
Update packages/core/deno.json:
"@mcpc/acp-ai-provider": "npm:@mcpc-tech/acp-ai-provider@^0.1.x"
Bump core version (0.3.x → 0.3.x+1)
Sync all dependent packages to use new core version
Tag core: git tag v0.3.x+1
| Aspect | release-v5 | main |
|---|---|---|
| AI SDK | V2 | V3 |
| Version | 0.1.x | 0.2.x |
| Types | LanguageModelV2StreamPart | LanguageModelV3StreamPart |
| ACP SDK | ^0.4.8 | ^0.14.1 |
chore(acp-ai-provider): prefix for version bumpsv0.1.x (matches the package version)