自动化 Skill 指纹同步并发布 AGC 0.1.10
新增 skill-pack-manifest 脚本统一计算并校验内置 AGC Skill 内容摘要,--write 模式自动递增清单版本并同步 SHA-256。 新增 check-skill-pack 只读门禁与 Node 回归测试,无参数默认只读,只有单个 --write 才进入写入模式。 AGC typecheck 与 release build 接入 Skill 清单指纹校验,内容漂移时直接列出 Skill 与实际摘要阻断构建。 修正 agc-client-projection 清单指纹并升级 Skill pack 版本到 2026-08-26.3。 升级 AGC 标准版到 0.1.10,同步 package、Cargo、Tauri 与 npm 工作区锁文件。 首页空输入占位符锚定到编辑区,避免整页滚动后占位文本脱离输入框。 更新 AGC 实施计划中 Skill 指纹同步与只读门禁说明。
This commit is contained in:
@@ -174,7 +174,7 @@ export function collectNpmWorkspaceErrors(rootDir) {
|
||||
);
|
||||
}
|
||||
const expectedWorkspaceVersion =
|
||||
workspacePath === 'apps/ai-game-creator-shell' ? '0.1.9' : '0.1.0';
|
||||
workspacePath === 'apps/ai-game-creator-shell' ? '0.1.10' : '0.1.0';
|
||||
if (manifest.version !== expectedWorkspaceVersion) {
|
||||
errors.push(
|
||||
`${manifestPath}: workspace version must be ${expectedWorkspaceVersion}`,
|
||||
|
||||
@@ -79,7 +79,7 @@ function createValidFixture() {
|
||||
name: workspaceNames[workspacePath],
|
||||
private: true,
|
||||
version:
|
||||
workspacePath === 'apps/ai-game-creator-shell' ? '0.1.9' : '0.1.0',
|
||||
workspacePath === 'apps/ai-game-creator-shell' ? '0.1.10' : '0.1.0',
|
||||
dependencies: localDependencies[workspacePath],
|
||||
};
|
||||
writeJson(rootDir, `${workspacePath}/package.json`, manifest);
|
||||
|
||||
Reference in New Issue
Block a user