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` |
|
| `mcp` | `mcp/ktWorkflow` |
|
||||||
| `napcat` | `GitHub/NapCatQQ` |
|
| `napcat` | `GitHub/NapCatQQ` |
|
||||||
| `networkAgent` | `Go/kt-network-agent` |
|
| `networkAgent` | `Go/kt-network-agent` |
|
||||||
| `palworld` | `Go/palworld-direct-connect` |
|
|
||||||
| `api` | `Node/kt-template-online-api` |
|
| `api` | `Node/kt-template-online-api` |
|
||||||
| `admin` | `Vue/kt-template-admin` |
|
| `admin` | `Vue/kt-template-admin` |
|
||||||
| `blog` | `Vue/kt-blog-web` |
|
| `blog` | `Vue/kt-blog-web` |
|
||||||
|
|||||||
@ -13,11 +13,14 @@ import {
|
|||||||
import { buildVerificationPlan } from "../../tools/verification.js";
|
import { buildVerificationPlan } from "../../tools/verification.js";
|
||||||
import { buildDbSyncPlan } from "../../tools/workflow.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(projectAliases.networkAgent, "Go/kt-network-agent");
|
||||||
assert.equal(defaultReviewProjects.includes("networkAgent"), true);
|
assert.equal(defaultReviewProjects.includes("networkAgent"), true);
|
||||||
assert.equal(projectAliases.palworld, "Go/palworld-direct-connect");
|
assert.equal("palworld" in projectAliases, false);
|
||||||
assert.equal(defaultReviewProjects.includes("palworld"), true);
|
assert.equal(
|
||||||
|
(defaultReviewProjects as readonly string[]).includes("palworld"),
|
||||||
|
false,
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
test("adds refactor-specific before-edit and behavior-preservation guardrails", () => {
|
test("adds refactor-specific before-edit and behavior-preservation guardrails", () => {
|
||||||
|
|||||||
@ -8,7 +8,6 @@ export const projectAliases = {
|
|||||||
mcp: 'mcp/ktWorkflow',
|
mcp: 'mcp/ktWorkflow',
|
||||||
napcat: 'GitHub/NapCatQQ',
|
napcat: 'GitHub/NapCatQQ',
|
||||||
networkAgent: 'Go/kt-network-agent',
|
networkAgent: 'Go/kt-network-agent',
|
||||||
palworld: 'Go/palworld-direct-connect',
|
|
||||||
playground: 'Vue/kt-template-online-playground',
|
playground: 'Vue/kt-template-online-playground',
|
||||||
root: '.',
|
root: '.',
|
||||||
web: 'Vue/kt-template-online-web',
|
web: 'Vue/kt-template-online-web',
|
||||||
@ -23,7 +22,6 @@ export const projectLabels = {
|
|||||||
mcp: 'KT Workflow MCP',
|
mcp: 'KT Workflow MCP',
|
||||||
napcat: 'NapCatQQ Fork',
|
napcat: 'NapCatQQ Fork',
|
||||||
networkAgent: 'KT Network Agent',
|
networkAgent: 'KT Network Agent',
|
||||||
palworld: 'Palworld Direct Connect PoC',
|
|
||||||
playground: 'Playground 编辑器',
|
playground: 'Playground 编辑器',
|
||||||
root: 'KT 协作根目录',
|
root: 'KT 协作根目录',
|
||||||
web: 'Web 前台展示',
|
web: 'Web 前台展示',
|
||||||
|
|||||||
@ -21,7 +21,6 @@ export const defaultReviewProjects = [
|
|||||||
"mcp",
|
"mcp",
|
||||||
"napcat",
|
"napcat",
|
||||||
"networkAgent",
|
"networkAgent",
|
||||||
"palworld",
|
|
||||||
"knife4j",
|
"knife4j",
|
||||||
"fnosK8s",
|
"fnosK8s",
|
||||||
] as const;
|
] as const;
|
||||||
|
|||||||
@ -7,7 +7,6 @@ export type ProjectAlias =
|
|||||||
| 'mcp'
|
| 'mcp'
|
||||||
| 'napcat'
|
| 'napcat'
|
||||||
| 'networkAgent'
|
| 'networkAgent'
|
||||||
| 'palworld'
|
|
||||||
| 'playground'
|
| 'playground'
|
||||||
| 'root'
|
| 'root'
|
||||||
| 'web';
|
| 'web';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user