chore(workflow): 移除已退役 PDC 项目别名
This commit is contained in:
parent
d585e8706d
commit
c7a74bda61
@ -167,7 +167,6 @@ Windows 上的 stdio MCP 客户端通过 `wsl.exe` 启动 Debian Bash;Node、
|
||||
| `mcp` | `mcp/ktWorkflow` |
|
||||
| `napcat` | `GitHub/NapCatQQ` |
|
||||
| `networkAgent` | `Go/kt-network-agent` |
|
||||
| `palworld` | `Go/palworld-direct-connect` |
|
||||
| `api` | `Node/kt-template-online-api` |
|
||||
| `admin` | `Vue/kt-template-admin` |
|
||||
| `blog` | `Vue/kt-blog-web` |
|
||||
|
||||
@ -13,11 +13,14 @@ import {
|
||||
import { buildVerificationPlan } from "../../tools/verification.js";
|
||||
import { buildDbSyncPlan } from "../../tools/workflow.js";
|
||||
|
||||
test("keeps both network runtimes inside project inspection and default global review", () => {
|
||||
test("keeps only the active generic network runtime in project inspection and review", () => {
|
||||
assert.equal(projectAliases.networkAgent, "Go/kt-network-agent");
|
||||
assert.equal(defaultReviewProjects.includes("networkAgent"), true);
|
||||
assert.equal(projectAliases.palworld, "Go/palworld-direct-connect");
|
||||
assert.equal(defaultReviewProjects.includes("palworld"), true);
|
||||
assert.equal("palworld" in projectAliases, false);
|
||||
assert.equal(
|
||||
(defaultReviewProjects as readonly string[]).includes("palworld"),
|
||||
false,
|
||||
);
|
||||
});
|
||||
|
||||
test("adds refactor-specific before-edit and behavior-preservation guardrails", () => {
|
||||
|
||||
@ -8,7 +8,6 @@ export const projectAliases = {
|
||||
mcp: 'mcp/ktWorkflow',
|
||||
napcat: 'GitHub/NapCatQQ',
|
||||
networkAgent: 'Go/kt-network-agent',
|
||||
palworld: 'Go/palworld-direct-connect',
|
||||
playground: 'Vue/kt-template-online-playground',
|
||||
root: '.',
|
||||
web: 'Vue/kt-template-online-web',
|
||||
@ -23,7 +22,6 @@ export const projectLabels = {
|
||||
mcp: 'KT Workflow MCP',
|
||||
napcat: 'NapCatQQ Fork',
|
||||
networkAgent: 'KT Network Agent',
|
||||
palworld: 'Palworld Direct Connect PoC',
|
||||
playground: 'Playground 编辑器',
|
||||
root: 'KT 协作根目录',
|
||||
web: 'Web 前台展示',
|
||||
|
||||
@ -21,7 +21,6 @@ export const defaultReviewProjects = [
|
||||
"mcp",
|
||||
"napcat",
|
||||
"networkAgent",
|
||||
"palworld",
|
||||
"knife4j",
|
||||
"fnosK8s",
|
||||
] as const;
|
||||
|
||||
@ -7,7 +7,6 @@ export type ProjectAlias =
|
||||
| 'mcp'
|
||||
| 'napcat'
|
||||
| 'networkAgent'
|
||||
| 'palworld'
|
||||
| 'playground'
|
||||
| 'root'
|
||||
| 'web';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user