8010245981
Default ayanamsa to Raman with true_pushya support, attach governed Raman packets, restore Path C questionnaires and eight-method verification copy, and keep unique-minute confirmation blocked. Co-authored-by: Cursor <cursoragent@cursor.com>
49 lines
3.0 KiB
TypeScript
49 lines
3.0 KiB
TypeScript
import assert from "node:assert/strict";
|
|
import { readFileSync } from "node:fs";
|
|
import test from "node:test";
|
|
|
|
const voice = readFileSync(new URL("../src/mastra/product-voice.ts", import.meta.url), "utf8");
|
|
const mastra = readFileSync(new URL("../src/mastra/index.ts", import.meta.url), "utf8");
|
|
const route = readFileSync(new URL("../src/app/api/consult/route.ts", import.meta.url), "utf8");
|
|
const binding = readFileSync(new URL("../src/mastra/skill-binding.ts", import.meta.url), "utf8");
|
|
const workflow = readFileSync(new URL("../src/mastra/consultation-workflow.ts", import.meta.url), "utf8");
|
|
|
|
test("product voice uses the skill Level 2 report skeleton in the answer body", () => {
|
|
assert.match(voice, /VISIBLE VOICE \(skill Level 2 report in Simplified Chinese\)/);
|
|
assert.match(voice, /governs METHOD, TECHNIQUE INVOCATION, TRUTH BOUNDARIES/);
|
|
assert.match(voice, /Raman six-step house judgment/);
|
|
assert.match(voice, /Yoga table/);
|
|
assert.match(voice, /Technique Audit Table at the end of the answer body/);
|
|
assert.match(voice, /已执行 \/ 阻塞 \/ 不适用/);
|
|
assert.match(voice, /governed_support_only_candidate_ready/);
|
|
assert.match(voice, /Skip an executed layer the question needs/);
|
|
assert.match(voice, /你更适合把已经积累的专业能力做成长期事业|先列本盘岁差/);
|
|
|
|
assert.match(mastra, /productConversationVoice/);
|
|
assert.match(mastra, /skill Level 2 report skeleton/);
|
|
assert.match(mastra, /Paste that Technique Audit Table at the end of the answer body/);
|
|
assert.match(binding, /Follow this method and its truth boundaries/);
|
|
assert.match(binding, /present its Level 2 report template in the chat body/);
|
|
assert.match(mastra, /The bound skill method is this product's answering contract/);
|
|
assert.match(mastra, /Do not use a restricted technique/);
|
|
assert.match(mastra, /must_use_layers is the executed shortlist/);
|
|
assert.match(mastra, /do not invent it from model knowledge/);
|
|
assert.match(mastra, /search_period is the searched observation window/);
|
|
assert.match(mastra, /Do not announce a skipped-domain inventory/);
|
|
assert.match(workflow, /template: "skill_level_2"/);
|
|
assert.match(workflow, /raman_six_step/);
|
|
assert.doesNotMatch(mastra, /Name the domains you did cover, say plainly that the remaining ones were not calculated/);
|
|
assert.doesNotMatch(mastra, /2-5 short paragraphs/);
|
|
assert.doesNotMatch(voice, /Do not paste the Technique Audit Table/);
|
|
});
|
|
|
|
test("consult user turn no longer dumps tool JSON that the model would parrot", () => {
|
|
const chartBranch = route.slice(route.indexOf("const toolInput = consultationInputSchema.parse"));
|
|
|
|
assert.match(chartBranch, /请按 skill Level 2 模板回答下面的问题[\s\S]*?resolvedQuestion\.modelQuestion/);
|
|
assert.doesNotMatch(chartBranch, /JSON\.stringify\(toolInput\)/);
|
|
assert.doesNotMatch(chartBranch, /经过服务端校验的工具参数/);
|
|
assert.match(route, /文末技法审计表/);
|
|
assert.match(chartBranch, /await runConsultationWorkflow\(toolInput/);
|
|
});
|