diff --git a/docs/BUG_HISTORY.md b/docs/BUG_HISTORY.md index b34d2b88..8f92ba30 100644 --- a/docs/BUG_HISTORY.md +++ b/docs/BUG_HISTORY.md @@ -4426,3 +4426,35 @@ - 相关记录:BUG-284、BUG-285、BUG-286、BUG-287 - 复发自:无 - 修复版本:待提交 + +## BUG-296 | 生时校正确认门三层失败原因未投影给 Agent + +- 状态:resolved +- 首次发现:2026-08-19 +- 最近更新:2026-08-19 +- 影响面:`latest_result.confirmation_gate`、`rectification-confirm-birth-time`、Skill `jyotish-birth-time-rectification@10.0.3` +- 用户现象:相邻分钟分不开、VedAstro 官方分钟敏感校验未跑通、公开 AA holdout 未达门槛时,Agent 仍可能把代表性候选说成唯一出生分钟,或去追更细确认。 +- 触发条件:引擎 `confirmation_allowed` 恒为 false,`external_validation_status=not_evaluated`;v5 平台宽度大于 5;密封 holdout 有效例数低于 20。 +- 根因:确认门只把 `confirmation_allowed=false` 交给 Agent,没有结构化写出 VedAstro / 不可分区间 / holdout 三层 blocker。`not_evaluated` 容易被说成 fail;holdout 未就绪时也没有禁止放宽确认门的服务器字段。 +- 修复:`latest_result` 增加只读 `confirmation_gate`。VedAstro 保持 `not_evaluated`(不是 fail);宽度大于 5 时不可分层为 `blocked`;holdout 为 `not_ready`(密封 v2 聚合,不含个案身份)。任一 blocker 未通过则投影 `confirmation_allowed=false`,confirm 工具返回 `confirmation_blocked`。v5 打分器与确认门阈值不改。用户仍可 accepted 代表性候选。 +- 验证:`frontend/tests/rectification-confirmation-gate.test.ts`:窄宽度且引擎允许时仍因 VedAstro/holdout 禁止确认;25 分钟平台仍禁止;confirm 不调用写入 RPC;投影不含精确分钟宣传或个案身份。 +- 防复发:不得把 `not_evaluated` 写成 fail;不得为凑门槛编造 holdout;不得把 `confirmation_allowed` 改成 true;公开工具仍为 13 个。 +- 相关记录:BUG-064、BUG-290、BUG-294 +- 复发自:无 +- 修复版本:待提交 + +## BUG-297 | 并列分钟把采用代表性时间当成失败而不是本次校正结果 + +- 状态:resolved +- 首次发现:2026-08-19 +- 最近更新:2026-08-19 +- 影响面:`decision_policy.py` 采用门、`session_outcome`、`method_followup_plan`、Skill `jyotish-birth-time-rectification@10.0.3`、候选卡文案 +- 用户现象:相邻分钟分不开时,用户这次校正没有可用结果;Agent 继续追问感情/事业/家人,而不是给出可采用的代表性时间。确认唯一分钟本来就不该通过。 +- 触发条件:至少 3 件可评分事件、至少 2 个领域,但 top 候选 `tied_minute_count` > 1(例如约 25 分钟平台)。确认门三层 blocker 仍未通过。 +- 根因:`acceptance_allowed` 把 `unique_top` 与诊断稳定性并进采用门,并列分钟直接关掉 `selection_allowed`,候选卡不出现。推荐徽标还要求 `confirmationAllowed`。`method_followup_plan.next_followup` 在已有可采用结果时仍要求继续补证据。 +- 修复:并列分钟与诊断稳定性只写入 `confirmation_reasons`,不再关闭采用。`latest_result.session_outcome=adopt_representative` 时本轮结果是采用代表性时间;`next_followup` 置空,方法追问进入 `deferred_followup`。确认门保持 fail-closed。正文与采用后文案写明还不能确认唯一分钟。不自动进入 `candidate_ready`。 +- 验证:`tests/test_rectification_v5_services.py` 单领域仍禁止采用,双领域并列分钟允许采用但禁止确认;`frontend/tests/rectification-eight-method.test.ts` 平台结果 `next_followup=null` 且 `session_outcome=adopt_representative`;`frontend/tests/rectification-confirmation-gate.test.ts` 锁定该 outcome;推荐徽标不再要求确认门。 +- 防复发:不得把 `confirmation_allowed` 改成 true;不得用采用冒充唯一分钟确认;不得在 `adopt_representative` 当轮再问 `next_followup`;重算后仍不得自动 `candidate_ready`。公开工具仍为 13 个。 +- 相关记录:BUG-120、BUG-292、BUG-294、BUG-296 +- 复发自:无 +- 修复版本:待提交 diff --git a/frontend/src/components/rectification-agentic-chat.tsx b/frontend/src/components/rectification-agentic-chat.tsx index e28fb3f8..1ae251e4 100644 --- a/frontend/src/components/rectification-agentic-chat.tsx +++ b/frontend/src/components/rectification-agentic-chat.tsx @@ -634,7 +634,7 @@ export function RectificationAgenticChat(props: RectificationAgenticChatProps) {
当前可能的出生时间 - 这是根据你目前提供的人生事件推算出的几种可能时间。可以先采用一个作为当前排盘时间,也可以继续补充事件;新增证据后,候选和相对支持度会重新计算,准确度还可以继续提高。 + 这次校正的结果是采用一个代表性时间作当前排盘。相邻分钟目前分不开,还不能确认唯一分钟。可以先采用,也可以继续补充事件或改选;新增证据后,候选和相对支持度会重新计算。 相对支持度不是统计概率;采用不等于确认出生时间,也不会覆盖原始填报时间。
@@ -666,7 +666,7 @@ export function RectificationAgenticChat(props: RectificationAgenticChatProps) { )} {savedTime && (

- {savedStatus === "confirmed" ? "已确认校正时间" : "已采用校正时间(未确认)"}:{savedTime}。后续排盘将使用该时间;你仍可继续补充事件或改选其他候选。 + {savedStatus === "confirmed" ? "已确认校正时间" : "当前排盘时间(代表性候选,还不能确认唯一分钟)"}:{savedTime}。后续排盘将使用该时间;你仍可继续补充事件或改选其他候选。

)} {error &&

{error}

} diff --git a/frontend/src/lib/rectification-agentic/v9/case-status.ts b/frontend/src/lib/rectification-agentic/v9/case-status.ts index 9d97f84c..b5ecf661 100644 --- a/frontend/src/lib/rectification-agentic/v9/case-status.ts +++ b/frontend/src/lib/rectification-agentic/v9/case-status.ts @@ -89,4 +89,4 @@ export function evidenceWritesAllowed( export const MAX_RESUMABLE_CASES_PER_USER = 1; export const RECTIFICATION_SKILL_NAME = "jyotish-birth-time-rectification"; -export const RECTIFICATION_SKILL_VERSION = "10.0.2"; +export const RECTIFICATION_SKILL_VERSION = "10.0.3"; diff --git a/frontend/src/lib/rectification-agentic/v9/confirmation-gate.ts b/frontend/src/lib/rectification-agentic/v9/confirmation-gate.ts new file mode 100644 index 00000000..1c28ae1d --- /dev/null +++ b/frontend/src/lib/rectification-agentic/v9/confirmation-gate.ts @@ -0,0 +1,174 @@ +/** + * Read-only confirmation-gate projection. + * + * These blockers are fail-closed honesty, not a scoring change. They never + * grant a unique birth minute. VedAstro `not_evaluated` means the official + * minute-sensitive layer has not run; that is not a fail. The sealed public + * AA holdout stays `not_ready` until a human updates this contract after a + * valid passing evaluation — this module does not invent cases. + */ + +import { RECTIFICATION_POLICY } from "../../rectification-policy.ts"; +import { indistinguishableWidthMinutes } from "./candidate-plateau.ts"; + +export const SEALED_MINUTE_HOLDOUT = { + sealed_benchmark_id: "minute_rectification_holdout_v2", + status: "not_ready", + valid_public_aa_cases: 1, + required_cases: 20, + top_1_rate: 0, + confirmation_coverage_rate: 0, +} as const; + +type GateCandidate = Readonly<{ + time: string; + rank: number; + tiedMinuteCount: number; +}>; + +export type ConfirmationGateBlocker = Readonly<{ + id: "vedastro_minute_sensitive" | "adjacent_minutes_indistinguishable" | "public_aa_holdout"; + status: string; + user_meaning: string; + indistinguishable_width_minutes?: number; + max_confirmation_width_minutes?: number; + required_cases?: number; + valid_public_aa_cases?: number; + top_1_rate?: number; + confirmation_coverage_rate?: number; + sealed_benchmark_id?: string; +}>; + +export type ConfirmationGate = Readonly<{ + confirmation_allowed: boolean; + blockers: readonly ConfirmationGateBlocker[]; +}>; + +export type SessionOutcomeKind = + | "collect_evidence" + | "adopt_representative" + | "awaiting_confirmation"; + +export type SessionOutcome = Readonly<{ + kind: SessionOutcomeKind; + user_meaning: string; +}>; + +export function sessionOutcomeFromGate(input: { + selectionAllowed: boolean; + confirmationAllowed: boolean; +}): SessionOutcome { + if (input.confirmationAllowed) { + return { + kind: "awaiting_confirmation", + user_meaning: "确认门已允许。只有用户明确同意才能写已确认校正时间。", + }; + } + if (input.selectionAllowed) { + return { + kind: "adopt_representative", + user_meaning: "这次校正的结果是采用代表性时间作当前排盘,还不能确认唯一分钟。", + }; + } + return { + kind: "collect_evidence", + user_meaning: "还需要能评分的带日期事件,才能给出可采用的代表性时间。", + }; +} + +function asRecord(value: unknown): Readonly> | null { + return value && typeof value === "object" && !Array.isArray(value) + ? value as Readonly> + : null; +} + +export function readVedastroMinuteSensitiveStatus( + decisionReceipt: Readonly> | null | undefined, +): string { + const gates = asRecord(decisionReceipt?.gates); + const exact = asRecord(gates?.exact_confirmation); + const nested = exact?.external_validation_status; + if (typeof nested === "string" && nested.trim()) return nested.trim(); + const top = decisionReceipt?.external_validation_status; + if (typeof top === "string" && top.trim()) return top.trim(); + return "not_evaluated"; +} + +function vedastroPassed(status: string): boolean { + return status === "passed"; +} + +function vedastroUserMeaning(status: string): string { + if (status === "not_evaluated") { + return "官方分钟敏感校验尚未跑通。未调用不等于失败,但缺这一层不能写确认。"; + } + if (status === "passed") { + return "官方分钟敏感校验已通过。"; + } + return "官方分钟敏感校验未能区分相邻分钟,不能写确认。"; +} + +function adjacentPassed(candidates: readonly GateCandidate[], widthMinutes: number): boolean { + if (candidates.length === 0) return false; + const top = [...candidates].sort((left, right) => left.rank - right.rank)[0]; + return Boolean(top) + && top.tiedMinuteCount === 1 + && widthMinutes <= RECTIFICATION_POLICY.maxConfirmationWidthMinutes; +} + +function holdoutPassed(): boolean { + const holdout: { + status: string; + valid_public_aa_cases: number; + required_cases: number; + confirmation_coverage_rate: number; + } = SEALED_MINUTE_HOLDOUT; + return holdout.status === "ready" + && holdout.valid_public_aa_cases >= holdout.required_cases + && holdout.confirmation_coverage_rate > 0; +} + +export function buildConfirmationGate(input: { + engineConfirmationAllowed: boolean; + candidates: readonly GateCandidate[]; + decisionReceipt?: Readonly> | null; +}): ConfirmationGate { + const width = indistinguishableWidthMinutes(input.candidates); + const vedastroStatus = readVedastroMinuteSensitiveStatus(input.decisionReceipt); + const adjacentOk = adjacentPassed(input.candidates, width); + const holdoutOk = holdoutPassed(); + const confirmationAllowed = input.engineConfirmationAllowed + && vedastroPassed(vedastroStatus) + && adjacentOk + && holdoutOk; + + return { + confirmation_allowed: confirmationAllowed, + blockers: [ + { + id: "vedastro_minute_sensitive", + status: vedastroStatus, + user_meaning: vedastroUserMeaning(vedastroStatus), + }, + { + id: "adjacent_minutes_indistinguishable", + status: adjacentOk ? "passed" : "blocked", + indistinguishable_width_minutes: width, + max_confirmation_width_minutes: RECTIFICATION_POLICY.maxConfirmationWidthMinutes, + user_meaning: adjacentOk + ? "当前宽度未超过确认门上限。" + : "当前是一段不可分区间。代表分钟只是代表性候选,不是唯一出生分钟。", + }, + { + id: "public_aa_holdout", + status: SEALED_MINUTE_HOLDOUT.status, + required_cases: SEALED_MINUTE_HOLDOUT.required_cases, + valid_public_aa_cases: SEALED_MINUTE_HOLDOUT.valid_public_aa_cases, + top_1_rate: SEALED_MINUTE_HOLDOUT.top_1_rate, + confirmation_coverage_rate: SEALED_MINUTE_HOLDOUT.confirmation_coverage_rate, + sealed_benchmark_id: SEALED_MINUTE_HOLDOUT.sealed_benchmark_id, + user_meaning: "公开密封 holdout 未达发布门槛,不能据此放宽确认门,也不能声称已校准到精确分钟。", + }, + ], + }; +} diff --git a/frontend/src/lib/rectification-agentic/v9/method-followup.ts b/frontend/src/lib/rectification-agentic/v9/method-followup.ts index d65edfbc..debfc427 100644 --- a/frontend/src/lib/rectification-agentic/v9/method-followup.ts +++ b/frontend/src/lib/rectification-agentic/v9/method-followup.ts @@ -17,6 +17,7 @@ * 8. Horary — unsupported; skip */ +import type { SessionOutcomeKind } from "./confirmation-gate.ts"; import type { InternalVargaObservation } from "./varga-observations"; export const METHOD_FOLLOWUP_IDS = [ @@ -52,6 +53,8 @@ export type MethodFollowup = Readonly<{ export type MethodFollowupPlan = Readonly<{ methods: readonly MethodCoverage[]; next_followup: MethodFollowup | null; + deferred_followup: MethodFollowup | null; + session_outcome: SessionOutcomeKind; stop_domain_rotation: true; do_not_poll: readonly ["appearance", "marks", "horary"]; not_in_rotation: readonly ["relocation", "finance", "health"]; @@ -117,6 +120,7 @@ export function buildMethodFollowupPlan(input: { activeFocus?: MethodFollowupFocus | null; declinedTopics?: readonly Readonly>[]; observations?: readonly InternalVargaObservation[]; + sessionOutcome?: SessionOutcomeKind; }): MethodFollowupPlan { const declined = declinedDomains(input.declinedTopics ?? []); const dashaCovered = input.evidence.some(isConfirmedDated); @@ -134,6 +138,7 @@ export function buildMethodFollowupPlan(input: { coverage("horary", "skipped_by_policy"), ]; + const sessionOutcome = input.sessionOutcome ?? "collect_evidence"; const focus = input.activeFocus ?? null; if (focus) { return { @@ -147,6 +152,8 @@ export function buildMethodFollowupPlan(input: { user_prompt_hint: "先承接当前服务器焦点,不要另开领域清单。", source: "active_focus", }), + deferred_followup: null, + session_outcome: sessionOutcome, stop_domain_rotation: true, do_not_poll: DO_NOT_POLL, not_in_rotation: NOT_IN_ROTATION, @@ -220,9 +227,12 @@ export function buildMethodFollowupPlan(input: { } } + const deferAdoption = sessionOutcome === "adopt_representative"; return { methods, - next_followup: next, + next_followup: deferAdoption ? null : next, + deferred_followup: deferAdoption ? next : null, + session_outcome: sessionOutcome, stop_domain_rotation: true, do_not_poll: DO_NOT_POLL, not_in_rotation: NOT_IN_ROTATION, diff --git a/frontend/src/lib/rectification-agentic/v9/tool-service.ts b/frontend/src/lib/rectification-agentic/v9/tool-service.ts index 8b1af5fb..53e160d3 100644 --- a/frontend/src/lib/rectification-agentic/v9/tool-service.ts +++ b/frontend/src/lib/rectification-agentic/v9/tool-service.ts @@ -1479,6 +1479,9 @@ export function safeToolErrorCode(error: unknown): string { "invalid_input", "precision_downgrade", ]; + if (error instanceof RectificationToolServiceError && known.includes(error.code)) { + return error.code; + } for (const code of known) { if (message.includes(`agentic_rectification_${code}`)) return code; } diff --git a/frontend/src/lib/rectification-candidate-result.ts b/frontend/src/lib/rectification-candidate-result.ts index 8a40c571..976e526a 100644 --- a/frontend/src/lib/rectification-candidate-result.ts +++ b/frontend/src/lib/rectification-candidate-result.ts @@ -79,6 +79,6 @@ export function isRecommendedRectificationCandidate( candidate: RectificationCandidate, ): boolean { return !result.selectedTime - && result.confirmationAllowed + && result.selectionAllowed && result.representativeTime === candidate.time; } diff --git a/frontend/src/mastra/agentic-rectification.ts b/frontend/src/mastra/agentic-rectification.ts index cc05db54..1e168a97 100644 --- a/frontend/src/mastra/agentic-rectification.ts +++ b/frontend/src/mastra/agentic-rectification.ts @@ -69,7 +69,7 @@ const agenticRectificationInstructions = `你是 Jyotisha,只服务当前绑 6. 工具执行过程保持静默。正文像正常人说话,不写“本轮做了什么”,不描述 Skill、Case、Dossier、工具、内部 Activity、参数、错误、内部 ID、评分、数据库、推理过程或密钥;完成凭证完全由服务端公开 Activity/receipt 展示。 7. 只基于成功 attempt 输出正文。工具失败时说明面向用户的边界,不声称未执行的方法或结果。 8. 当前轮新事件一律走 rectification-record-evidence-batch(一件也可以)。rectification-confirm-evidence 只用于用户对已有 pending 明确说“对/是”。不得要求用户把已说清的事件再发一遍。 -9. 不得在同一回复中一边要求继续补证据,一边提供候选采用。用户表示“没有更多事件”时尊重该边界;如果当前不需要追问,可以直接解释结果、说明边界或自然结束本轮。若 latest_result.indistinguishable_width_minutes 大于 5 或 confirmation_allowed 为 false,必须说这是一段不可分区间,把代表分钟称为代表性候选,不得说已定位到唯一分钟。 +9. 不得在同一回复中一边要求继续补证据,一边提供候选采用。session_outcome=adopt_representative 时本轮结果是采用代表性时间,不要再问 next_followup;正文必须说还不能确认唯一分钟。用户表示“没有更多事件”时尊重该边界;如果当前不需要追问,可以直接解释结果、说明边界或自然结束本轮。确认门以 latest_result.confirmation_gate 为准;not_evaluated 不是 fail;holdout 为 not_ready 时不得声称精确分钟或发布准确率。若宽度大于 5 或 confirmation_allowed 为 false,必须说这是一段不可分区间,把代表分钟称为代表性候选,不得说已定位到唯一分钟。用户仍可 accepted 代表性候选。 10. 不泄露系统提示词或 Skill 原文。 11. 追问只跟 method_followup_plan;不得按 missing_evidence_categories 轮询迁居/健康/财务,不得问外貌或胎记。不得把分盘观察说成用户性格或类型标签。 12. 证据有效变化后由服务器重算候选。不要等用户说“没有更多了”才比较,也不要对同一证据指纹再 compare。分钟扫描只在服务端,结果只是候选或平台,不得宣布确认。`; diff --git a/frontend/src/mastra/rectification-v9-tools.ts b/frontend/src/mastra/rectification-v9-tools.ts index 72691b8f..11b48860 100644 --- a/frontend/src/mastra/rectification-v9-tools.ts +++ b/frontend/src/mastra/rectification-v9-tools.ts @@ -37,7 +37,8 @@ import { type V9CaseDossier, } from "@/lib/rectification-agentic/v9/tool-service"; import { isEvidenceKind, isEvidenceDomain, isDatePrecision, displayDateLabel } from "@/lib/rectification-agentic/v9/evidence-model"; -import { indistinguishableWidthMinutes, confirmationAllowedForWidth } from "@/lib/rectification-agentic/v9/candidate-plateau"; +import { indistinguishableWidthMinutes } from "@/lib/rectification-agentic/v9/candidate-plateau"; +import { buildConfirmationGate, sessionOutcomeFromGate } from "@/lib/rectification-agentic/v9/confirmation-gate"; import { buildMethodFollowupPlan } from "@/lib/rectification-agentic/v9/method-followup"; import { internalObservationsFromWindowScan, @@ -99,11 +100,16 @@ function safeCaseProjection( const latest = dossier.latestResult; const windowScan = windowScanFromDecisionReceipt(latest?.decisionReceipt ?? null); const observations = internalObservationsFromWindowScan(windowScan); + const latestProjection = latest ? latestResultToolProjection(latest) : null; + const sessionOutcome = latestProjection + ? (latestProjection.session_outcome as { kind: "collect_evidence" | "adopt_representative" | "awaiting_confirmation" }).kind + : "collect_evidence"; const methodFollowupPlan = buildMethodFollowupPlan({ evidence: dossier.evidence, activeFocus: dossier.conversationSummary.activeFocus, declinedTopics: dossier.conversationSummary.declinedSkippedTopics, observations, + sessionOutcome, }); return { case_id: caseRow.caseId, @@ -128,7 +134,7 @@ function safeCaseProjection( conversation_context: safeConversationContext(dossier), conversation_summary: safeConversationSummary(dossier), birth_context: safeBirthContext(compute), - latest_result: latest ? latestResultToolProjection(latest) : null, + latest_result: latestProjection, method_followup_plan: methodFollowupPlan, internal_observations: observations, }; @@ -203,17 +209,28 @@ export function latestResultToolProjection( ): Record { const width = indistinguishableWidthMinutes(latest.candidates); const windowScan = windowScanFromDecisionReceipt(latest.decisionReceipt ?? null); + const confirmationGate = buildConfirmationGate({ + engineConfirmationAllowed: latest.confirmationAllowed, + candidates: latest.candidates, + decisionReceipt: latest.decisionReceipt ?? null, + }); + const sessionOutcome = sessionOutcomeFromGate({ + selectionAllowed: latest.selectionAllowed, + confirmationAllowed: confirmationGate.confirmation_allowed, + }); return { result_id: latest.resultId, candidates: latest.candidates, selection_allowed: latest.selectionAllowed, - confirmation_allowed: confirmationAllowedForWidth(latest.confirmationAllowed, width), + confirmation_allowed: confirmationGate.confirmation_allowed, representative_time: latest.representativeTime, selected_time: latest.selectedTime, selection_kind: latest.selectionKind, algorithm_version: latest.algorithmVersion, indistinguishable_width_minutes: width, window_scan: windowScan, + confirmation_gate: confirmationGate, + session_outcome: sessionOutcome, }; } @@ -861,18 +878,22 @@ export function createRectificationV9Tools(ctx: RectificationV9Context) { await receipt("rectification-compare-candidates", "candidates.comparing", "started", { inputFingerprint, engineVersion }); try { const scored = await scoreAndPersistCurrentEvidence(input.caseId); - const width = indistinguishableWidthMinutes(scored.persisted.candidates); + const latestProjection = latestResultToolProjection({ + resultId: scored.persisted.resultId, + candidates: scored.persisted.candidates, + selectionAllowed: scored.persisted.selectionAllowed, + confirmationAllowed: scored.persisted.confirmationAllowed, + representativeTime: scored.persisted.representativeTime, + selectedTime: null, + selectionKind: null, + algorithmVersion: scored.persisted.algorithmVersion, + decisionReceipt: scored.persisted.decisionReceipt, + }); const projection = { - result_id: scored.persisted.resultId, + ...latestProjection, cached: scored.persisted.cached, candidate_range: scored.parsed.case.candidateRange, - candidates: scored.persisted.candidates, overall_confidence: scored.persisted.overallConfidence, - selection_allowed: scored.persisted.selectionAllowed, - confirmation_allowed: confirmationAllowedForWidth(scored.persisted.confirmationAllowed, width), - representative_time: scored.persisted.representativeTime, - indistinguishable_width_minutes: width, - algorithm_version: scored.persisted.algorithmVersion, evidence_count: scored.parsed.scorable.length, domain_count: Object.keys(scored.parsed.domainCounts).length, window_scan: scored.windowScan, @@ -1015,7 +1036,7 @@ export function createRectificationV9Tools(ctx: RectificationV9Context) { const confirmBirthTimeTool = createTool({ id: "rectification-confirm-birth-time", description: - "仅在服务器确认门允许且用户本轮明确同意“就用 HH:MM / 确认这个时间”时调用。consentQuote 必须是用户原话片段,会在服务端做原文匹配。成功后写入 profile 并进入 confirmed 终态。", + "仅在 latest_result.confirmation_gate.confirmation_allowed=true 且用户本轮明确同意“就用 HH:MM / 确认这个时间”时调用。任一 blocker 未通过都会 confirmation_blocked。consentQuote 必须是用户原话片段。成功后写入 profile 并进入 confirmed 终态。", inputSchema: z.object({ caseId: z.string().uuid(), resultId: z.string().uuid(), @@ -1032,6 +1053,16 @@ export function createRectificationV9Tools(ctx: RectificationV9Context) { }); await receipt("rectification-confirm-birth-time", "birth_time.confirmed", "started", { inputFingerprint }); try { + const dossier = parseDossierForTools(await loadV9CaseDossier(accounting, userId, input.caseId)); + const latest = dossier.latestResult; + const gate = buildConfirmationGate({ + engineConfirmationAllowed: latest?.confirmationAllowed === true, + candidates: latest?.candidates ?? [], + decisionReceipt: latest?.decisionReceipt ?? null, + }); + if (!gate.confirmation_allowed) { + throw new RectificationToolServiceError("confirmation_blocked"); + } const result = await confirmV9BirthTime(accounting, userId, input.caseId, { resultId, candidateId: input.candidateId, diff --git a/frontend/tests/rectification-activity-receipt.test.ts b/frontend/tests/rectification-activity-receipt.test.ts index 15775e0f..05eab3a4 100644 --- a/frontend/tests/rectification-activity-receipt.test.ts +++ b/frontend/tests/rectification-activity-receipt.test.ts @@ -113,7 +113,7 @@ test("failed server turns retain their receipt state without parsing activity fr test("candidate acceptance copy never presents adoption as confirmation", () => { assert.match(chatSource, /当前可能的出生时间/); assert.match(chatSource, /采用不等于确认出生时间/); - assert.match(chatSource, /已采用校正时间(未确认)/); + assert.match(chatSource, /当前排盘时间(代表性候选,还不能确认唯一分钟)/); assert.match(chatSource, /已确认校正时间/); assert.doesNotMatch(chatSource, /candidateResult\.confirmationAllowed \? "确认校正时间"/); }); diff --git a/frontend/tests/rectification-agentic-entry.test.ts b/frontend/tests/rectification-agentic-entry.test.ts index bea09e82..5c150c51 100644 --- a/frontend/tests/rectification-agentic-entry.test.ts +++ b/frontend/tests/rectification-agentic-entry.test.ts @@ -303,7 +303,8 @@ test("completed Agent replies restore feedback, copy and safe in-place regenerat test("candidate state renders from the snapshot API and never from sentinels", () => { assert.match(chat, /当前可能的出生时间/); - assert.match(chat, /可以先采用一个作为当前排盘时间,也可以继续补充事件/); + assert.match(chat, /还不能确认唯一分钟/); + assert.match(chat, /可以先采用,也可以继续补充事件或改选/); assert.match(chat, /相对支持度不是统计概率/); assert.match(chat, /改选为此时间/); assert.doesNotMatch(chat, /disabled=\{Boolean\(candidateResult\.selectedTime\)/); diff --git a/frontend/tests/rectification-candidate-result.test.ts b/frontend/tests/rectification-candidate-result.test.ts index 5c08cb0b..a5ed88e1 100644 --- a/frontend/tests/rectification-candidate-result.test.ts +++ b/frontend/tests/rectification-candidate-result.test.ts @@ -44,11 +44,11 @@ test("low-confidence near ties never receive a recommendation badge", () => { assert.equal(isRecommendedRectificationCandidate(result, result.candidates[0]!), false); }); -test("only an unselected confirmation-ready representative receives a recommendation badge", () => { +test("only an unselected representative receives a recommendation badge", () => { const result = parseRectificationCandidateResult({ ...camelCaseSnapshot, - overallConfidence: "high", - confirmationAllowed: true, + overallConfidence: "medium", + confirmationAllowed: false, representativeTime: "05:07", }); diff --git a/frontend/tests/rectification-confirmation-gate.test.ts b/frontend/tests/rectification-confirmation-gate.test.ts new file mode 100644 index 00000000..6d74a523 --- /dev/null +++ b/frontend/tests/rectification-confirmation-gate.test.ts @@ -0,0 +1,213 @@ +import assert from "node:assert/strict"; +import { readFileSync } from "node:fs"; +import test from "node:test"; + +import { + SEALED_MINUTE_HOLDOUT, + buildConfirmationGate, + readVedastroMinuteSensitiveStatus, + sessionOutcomeFromGate, +} from "../src/lib/rectification-agentic/v9/confirmation-gate.ts"; +import { RECTIFICATION_POLICY } from "../src/lib/rectification-policy.ts"; +import { RECTIFICATION_SKILL_VERSION } from "../src/lib/rectification-agentic/v9/case-status.ts"; +import { + createRectificationV9Tools, + latestResultToolProjection, +} from "../src/mastra/rectification-v9-tools.ts"; +import { PUBLIC_RECTIFICATION_TOOLS } from "../src/lib/rectification-agentic/v9/public-receipt.ts"; +import { safeToolErrorCode, RectificationToolServiceError } from "../src/lib/rectification-agentic/v9/tool-service.ts"; +import { + CASE_ID, + CANDIDATE_ID, + RESULT_ID, + SECOND_CANDIDATE_ID, + TURN_ID, + USER_ID, + candidateSnapshotFixture, + dossierFixture, + fakeAccounting, + receiptHandlers, +} from "./rectification-v9-test-support.ts"; + +const THIRD_CANDIDATE_ID = "88888888-8888-4888-8888-888888888883"; +const holdoutReport = JSON.parse(readFileSync( + new URL("../../references/real_case_calibration/minute_rectification_holdout_v2_pilot_report.json", import.meta.url), + "utf8", +)) as { + case_gate: { valid_public_aa_cases: number; minimum_public_aa_cases: number }; + metrics: { top_1_rate: number; confirmation_coverage_rate: number }; +}; +const skill = readFileSync( + new URL("../../skills/jyotish-birth-time-rectification/SKILL.md", import.meta.url), + "utf8", +); +const candidateComparison = readFileSync( + new URL("../../skills/jyotish-birth-time-rectification/references/candidate-comparison.md", import.meta.url), + "utf8", +); +const agentSource = readFileSync( + new URL("../src/mastra/agentic-rectification.ts", import.meta.url), + "utf8", +); + +const UNIQUE_MINUTE = [ + { candidateId: CANDIDATE_ID, time: "05:02", rank: 1, relativeSupport: 70, tiedMinuteCount: 1 }, + { candidateId: SECOND_CANDIDATE_ID, time: "05:03", rank: 2, relativeSupport: 30, tiedMinuteCount: 2 }, +]; + +const PLATEAU = [ + { candidateId: CANDIDATE_ID, time: "04:45", rank: 1, relativeSupport: 40, tiedMinuteCount: 25 }, + { candidateId: SECOND_CANDIDATE_ID, time: "04:46", rank: 2, relativeSupport: 35, tiedMinuteCount: 25 }, + { candidateId: THIRD_CANDIDATE_ID, time: "04:47", rank: 3, relativeSupport: 25, tiedMinuteCount: 25 }, +]; + +function blocker( + gate: ReturnType, + id: string, +) { + const found = gate.blockers.find((item) => item.id === id); + assert.ok(found, `missing blocker ${id}`); + return found; +} + +test("sealed holdout aggregates match the v2 report and stay below the case gate", () => { + assert.equal(SEALED_MINUTE_HOLDOUT.valid_public_aa_cases, holdoutReport.case_gate.valid_public_aa_cases); + assert.equal(SEALED_MINUTE_HOLDOUT.required_cases, holdoutReport.case_gate.minimum_public_aa_cases); + assert.equal(SEALED_MINUTE_HOLDOUT.top_1_rate, holdoutReport.metrics.top_1_rate); + assert.equal(SEALED_MINUTE_HOLDOUT.confirmation_coverage_rate, holdoutReport.metrics.confirmation_coverage_rate); + assert.ok(SEALED_MINUTE_HOLDOUT.valid_public_aa_cases < SEALED_MINUTE_HOLDOUT.required_cases); + assert.equal(SEALED_MINUTE_HOLDOUT.status, "not_ready"); +}); + +test("VedAstro not_evaluated is not described as fail and still forbids confirmation", () => { + const gate = buildConfirmationGate({ + engineConfirmationAllowed: true, + candidates: UNIQUE_MINUTE, + decisionReceipt: { + gates: { exact_confirmation: { external_validation_status: "not_evaluated" } }, + }, + }); + const vedastro = blocker(gate, "vedastro_minute_sensitive"); + const adjacent = blocker(gate, "adjacent_minutes_indistinguishable"); + const holdout = blocker(gate, "public_aa_holdout"); + assert.equal(readVedastroMinuteSensitiveStatus({ + gates: { exact_confirmation: { external_validation_status: "not_evaluated" } }, + }), "not_evaluated"); + assert.equal(vedastro.status, "not_evaluated"); + assert.notEqual(vedastro.status, "fail"); + assert.notEqual(vedastro.status, "failed"); + assert.match(vedastro.user_meaning, /不等于失败|不是失败|尚未跑通/); + assert.doesNotMatch(vedastro.user_meaning, /失败了|校验失败/); + assert.equal(adjacent.status, "passed"); + assert.equal(holdout.status, "not_ready"); + assert.equal(gate.confirmation_allowed, false); +}); + +test("a 25-minute plateau stays confirmation-blocked as an indistinguishable range", () => { + const projection = latestResultToolProjection({ + resultId: RESULT_ID, + candidates: PLATEAU, + selectionAllowed: true, + confirmationAllowed: true, + representativeTime: "04:45", + selectedTime: null, + selectionKind: null, + algorithmVersion: "rectification-v5", + }); + const gate = projection.confirmation_gate as ReturnType; + assert.ok(Number(projection.indistinguishable_width_minutes) >= 25); + assert.equal(projection.confirmation_allowed, false); + assert.equal(gate.confirmation_allowed, false); + assert.equal(blocker(gate, "adjacent_minutes_indistinguishable").status, "blocked"); + assert.equal( + blocker(gate, "adjacent_minutes_indistinguishable").max_confirmation_width_minutes, + RECTIFICATION_POLICY.maxConfirmationWidthMinutes, + ); + assert.match(blocker(gate, "adjacent_minutes_indistinguishable").user_meaning, /不可分区间|代表性候选/); + assert.equal((projection.session_outcome as { kind: string }).kind, "adopt_representative"); + assert.equal(sessionOutcomeFromGate({ + selectionAllowed: true, + confirmationAllowed: false, + }).kind, "adopt_representative"); +}); + +test("holdout not_ready forbids unique-minute copy and still blocks confirm", async () => { + const projection = latestResultToolProjection({ + resultId: RESULT_ID, + candidates: UNIQUE_MINUTE, + selectionAllowed: true, + confirmationAllowed: true, + representativeTime: "05:02", + selectedTime: null, + selectionKind: null, + algorithmVersion: "rectification-v5", + decisionReceipt: { + gates: { exact_confirmation: { external_validation_status: "not_evaluated" } }, + }, + }); + const serialized = JSON.stringify(projection); + assert.equal(projection.confirmation_allowed, false); + assert.doesNotMatch(serialized, /±2|80%|60%/); + assert.doesNotMatch(serialized, /obama|barack|angelina|jolie/i); + assert.match(skill, /confirmation_gate/); + assert.match(skill, /not_evaluated/); + assert.match(skill, /session_outcome=adopt_representative/); + assert.match(skill, /还不能确认唯一分钟/); + assert.match(candidateComparison, /confirmation_gate/); + assert.match(agentSource, /confirmation_gate/); + assert.match(agentSource, /session_outcome=adopt_representative/); + assert.doesNotMatch(agentSource, /±2 分钟/); + assert.equal(PUBLIC_RECTIFICATION_TOOLS.length, 13); + assert.equal(RECTIFICATION_SKILL_VERSION, "10.0.3"); + + const accounting = fakeAccounting({ + ...receiptHandlers, + get_agentic_rectification_case_dossier: () => dossierFixture({ + latestResult: { + ...candidateSnapshotFixture({ + confirmationAllowed: true, + selectionAllowed: true, + representativeTime: "05:02", + candidates: [ + { candidate_id: CANDIDATE_ID, rank: 1, time: "05:02", relative_support: 70, tied_minute_count: 1 }, + { candidate_id: SECOND_CANDIDATE_ID, rank: 2, time: "05:03", relative_support: 30, tied_minute_count: 2 }, + ], + }), + confirmation_allowed: true, + decision_receipt: { + gates: { exact_confirmation: { external_validation_status: "not_evaluated" } }, + }, + }, + }), + confirm_agentic_rectification_candidate_for_case_v2: () => ({ + success: true, + saved_time: "05:02", + status: "confirmed", + result_id: RESULT_ID, + case_status: "confirmed", + idempotent: false, + }), + }); + const tools = createRectificationV9Tools({ + userId: USER_ID, + caseId: CASE_ID, + turnId: TURN_ID, + accounting: accounting.client as never, + }); + await assert.rejects( + (tools["rectification-confirm-birth-time"] as unknown as { + execute(input: unknown): Promise; + }).execute({ + caseId: CASE_ID, + resultId: RESULT_ID, + candidateId: CANDIDATE_ID, + consentQuote: "就用05:02", + }), + (error: unknown) => error instanceof RectificationToolServiceError && error.code === "confirmation_blocked", + ); + assert.equal( + accounting.calls.some((call) => call.fn === "confirm_agentic_rectification_candidate_for_case_v2"), + false, + ); + assert.equal(safeToolErrorCode(new RectificationToolServiceError("confirmation_blocked")), "confirmation_blocked"); +}); diff --git a/frontend/tests/rectification-eight-method.test.ts b/frontend/tests/rectification-eight-method.test.ts index 50468abb..3265e132 100644 --- a/frontend/tests/rectification-eight-method.test.ts +++ b/frontend/tests/rectification-eight-method.test.ts @@ -128,6 +128,22 @@ test("eight-method routing asks relationship after dated education, not relocati assert.doesNotMatch(JSON.stringify(plan), FORBIDDEN_LABELS); }); +test("adopt_representative defers method follow-up instead of asking this turn", () => { + const plan = buildMethodFollowupPlan({ + evidence: [{ + status: "confirmed", + domain: "education", + datePrecision: "month", + occurredFrom: "2016-06-01", + occurredTo: null, + }], + sessionOutcome: "adopt_representative", + }); + assert.equal(plan.next_followup, null); + assert.equal(plan.deferred_followup?.method_id, "d9_relationship"); + assert.equal(plan.session_outcome, "adopt_representative"); +}); + test("declined relationship skips to career and never polls appearance", () => { const plan = buildMethodFollowupPlan({ evidence: [{ @@ -240,14 +256,26 @@ test("read-case follows method plan and hides D9/D10 labels even when SQL missin const projection = await (tools["rectification-read-case"] as unknown as { execute(input: unknown): Promise<{ conversation_summary: { missing_evidence_categories: string[] }; - method_followup_plan: { next_followup: { method_id: string; domain: string | null } | null }; + method_followup_plan: { + next_followup: { method_id: string; domain: string | null } | null; + deferred_followup: { method_id: string; domain: string | null } | null; + session_outcome: string; + }; internal_observations: Array<{ layer: string; ask_theme: string | null }>; - latest_result: { confirmation_allowed: boolean; indistinguishable_width_minutes: number; window_scan: { d9_candidates_differ: boolean } | null }; + latest_result: { + confirmation_allowed: boolean; + indistinguishable_width_minutes: number; + window_scan: { d9_candidates_differ: boolean } | null; + session_outcome: { kind: string }; + }; }>; }).execute({ caseId: CASE_ID }); assert.deepEqual(projection.conversation_summary.missing_evidence_categories, ["relocation", "health", "finance"]); - assert.equal(projection.method_followup_plan.next_followup?.method_id, "d9_relationship"); - assert.equal(projection.method_followup_plan.next_followup?.domain, "relationship"); + assert.equal(projection.method_followup_plan.next_followup, null); + assert.equal(projection.method_followup_plan.deferred_followup?.method_id, "d9_relationship"); + assert.equal(projection.method_followup_plan.deferred_followup?.domain, "relationship"); + assert.equal(projection.method_followup_plan.session_outcome, "adopt_representative"); + assert.equal(projection.latest_result.session_outcome.kind, "adopt_representative"); assert.equal(projection.internal_observations.find((item) => item.layer === "d9")?.ask_theme, "relationship_style"); assert.equal(projection.latest_result.confirmation_allowed, false); assert.ok(projection.latest_result.indistinguishable_width_minutes >= 25); @@ -387,13 +415,13 @@ test("rescore failure does not fail the evidence write", async () => { assert.ok(result.rescore.error_code); }); -test("public tool surface stays at 13 and new cases bind 10.0.2", () => { +test("public tool surface stays at 13 and new cases bind 10.0.3", () => { assert.equal(PUBLIC_RECTIFICATION_TOOLS.length, 13); - assert.equal(RECTIFICATION_SKILL_VERSION, "10.0.2"); + assert.equal(RECTIFICATION_SKILL_VERSION, "10.0.3"); const deprecated = resolveExactSkillPackage( "jyotish-birth-time-rectification", - "10.0.1", - "1fcdbeef6a2ad96f564f01aa9b9186dfdffe0ea8600748069528fd6a02236b33", + "10.0.2", + "8d7aa2d4bea0414e9a89ef908ccbc8c708c98f79f5b78ae4f7dc229b5f7dbb30", ); assert.equal(deprecated.status, "deprecated"); const plateau = latestResultToolProjection({ @@ -411,6 +439,7 @@ test("public tool surface stays at 13 and new cases bind 10.0.2", () => { algorithmVersion: "rectification-v5", }); assert.equal(plateau.confirmation_allowed, false); + assert.equal((plateau.session_outcome as { kind: string }).kind, "adopt_representative"); const skill = readFileSync(new URL("../../skills/jyotish-birth-time-rectification/SKILL.md", import.meta.url), "utf8"); assert.match(skill, /method_followup_plan/); assert.match(skill, /不得给用户贴 D9\/D10 星座或类型标签/); diff --git a/frontend/tests/rectification-ingest-p0-database.test.ts b/frontend/tests/rectification-ingest-p0-database.test.ts index 42c70635..1a3d2efc 100644 --- a/frontend/tests/rectification-ingest-p0-database.test.ts +++ b/frontend/tests/rectification-ingest-p0-database.test.ts @@ -91,7 +91,7 @@ test("ingest P0: education kinds, batch confirm, opening focus reuse, precision p_intent: "homepage", p_session_id: null, p_skill_name: "jyotish-birth-time-rectification", - p_skill_version: "10.0.2", + p_skill_version: "10.0.3", p_baseline_profile_fingerprint: fingerprint, p_baseline_birth_snapshot: snapshot, p_candidate_range: range, diff --git a/frontend/tests/rectification-ingest-p0.test.ts b/frontend/tests/rectification-ingest-p0.test.ts index dbcbb4ba..60c3807e 100644 --- a/frontend/tests/rectification-ingest-p0.test.ts +++ b/frontend/tests/rectification-ingest-p0.test.ts @@ -121,6 +121,10 @@ test("a 25-minute tied plateau projects width and forbids unique-minute confirma }); assert.equal(projection.indistinguishable_width_minutes, width); assert.equal(projection.confirmation_allowed, false); + assert.equal( + (projection.confirmation_gate as { confirmation_allowed: boolean }).confirmation_allowed, + false, + ); assert.match(candidateComparison, /一段不可分区间/); assert.match(candidateComparison, /代表性候选/); assert.match(agentSource, /不得说已定位到唯一分钟/); @@ -194,9 +198,9 @@ test("read-case evidence context keeps day labels and confirm does not rewrite d assert.equal("p_occurred_from" in confirmCall.args, false); }); -test("new-case skill identity is 10.0.2 and the prompt prefers batch ingest", () => { - assert.equal(RECTIFICATION_SKILL_VERSION, "10.0.2"); - assert.match(skill, /^version: 10\.0\.2$/m); +test("new-case skill identity is 10.0.3 and the prompt prefers batch ingest", () => { + assert.equal(RECTIFICATION_SKILL_VERSION, "10.0.3"); + assert.match(skill, /^version: 10\.0\.3$/m); assert.match(skill, /不要对同一句用户消息里的多件事件逐条 propose\+confirm/); assert.match(agentSource, /当前轮新事件一律走 rectification-record-evidence-batch/); assert.doesNotMatch(agentSource, /分别调用 rectification-propose-evidence 和 rectification-confirm-evidence/); diff --git a/frontend/tests/rectification-v9-agent.test.ts b/frontend/tests/rectification-v9-agent.test.ts index 21a490a0..d1937607 100644 --- a/frontend/tests/rectification-v9-agent.test.ts +++ b/frontend/tests/rectification-v9-agent.test.ts @@ -59,6 +59,9 @@ test("system prompt carries only high-priority boundaries, never the method copy assert.match(prompt, /display_date_label/); assert.match(prompt, /rectification-record-evidence-batch/); assert.match(prompt, /不可分区间/); + assert.match(prompt, /confirmation_gate/); + assert.match(prompt, /session_outcome=adopt_representative/); + assert.match(prompt, /还不能确认唯一分钟/); assert.doesNotMatch(prompt, /分别 propose\+confirm/); // Keep the prompt short (~30 lines max). assert.ok(prompt.split("\n").length <= 60, "instructions must stay bounded"); @@ -67,11 +70,11 @@ test("system prompt carries only high-priority boundaries, never the method copy test("agent pins the dedicated rectification skill and its fixed version", () => { assert.equal(RECTIFICATION_V9_SKILL_NAME, "jyotish-birth-time-rectification"); assert.equal(basename(RECTIFICATION_V9_SKILL_PATH), RECTIFICATION_V9_SKILL_NAME); - assert.ok(RECTIFICATION_V9_PACKAGE_PATH.endsWith("skills/jyotish-birth-time-rectification/versions/10.0.2")); + assert.ok(RECTIFICATION_V9_PACKAGE_PATH.endsWith("skills/jyotish-birth-time-rectification/versions/10.0.3")); assert.notEqual(RECTIFICATION_V9_SKILL_PATH, RECTIFICATION_V9_PACKAGE_PATH); assert.equal(realpathSync(RECTIFICATION_V9_SKILL_PATH), RECTIFICATION_V9_PACKAGE_PATH); assert.equal(RECTIFICATION_SKILL_NAME, "jyotish-birth-time-rectification"); - assert.equal(RECTIFICATION_SKILL_VERSION, "10.0.2"); + assert.equal(RECTIFICATION_SKILL_VERSION, "10.0.3"); }); test("step budgets are bounded per action with a hard ceiling", () => { diff --git a/frontend/tests/rectification-v9-contracts.test.ts b/frontend/tests/rectification-v9-contracts.test.ts index cfa25f1f..08483d8c 100644 --- a/frontend/tests/rectification-v9-contracts.test.ts +++ b/frontend/tests/rectification-v9-contracts.test.ts @@ -91,9 +91,9 @@ test("terminal transitions are one-way and evidence writes stop at terminal", () test("the active rectification skill pins the v10 identity and lives in the right directory", () => { assert.equal(RECTIFICATION_SKILL_NAME, "jyotish-birth-time-rectification"); - assert.equal(RECTIFICATION_SKILL_VERSION, "10.0.2"); + assert.equal(RECTIFICATION_SKILL_VERSION, "10.0.3"); assert.match(skill, /^---\nname: jyotish-birth-time-rectification/m); - assert.match(skill, /^version: 10\.0\.2$/m); + assert.match(skill, /^version: 10\.0\.3$/m); for (const reference of references) { const content = readFileSync(`${skillDirectory}/references/${reference}`, "utf8"); assert.ok(content.length > 0, `${reference} must be non-empty`); diff --git a/frontend/tests/rectification-v9-entry-routing.test.ts b/frontend/tests/rectification-v9-entry-routing.test.ts index d213c7bc..7c67970d 100644 --- a/frontend/tests/rectification-v9-entry-routing.test.ts +++ b/frontend/tests/rectification-v9-entry-routing.test.ts @@ -209,7 +209,7 @@ test("open RPC passes the pinned skill and server-derived baseline only", async session_id: SESSION_ID, status: "draft", should_start_opening: true, - skill_version: "10.0.2", + skill_version: "10.0.3", }; } return null; @@ -247,11 +247,11 @@ test("open RPC passes the pinned skill and server-derived baseline only", async }); assert.equal(response.disposition, "created"); assert.equal(response.shouldStartOpening, true); - assert.equal(response.skillVersion, "10.0.2"); + assert.equal(response.skillVersion, "10.0.3"); const openCall = accounting.calls.find((call) => call.fn === "open_agentic_rectification_case_v2"); assert.ok(openCall); assert.equal(openCall.args.p_skill_name, "jyotish-birth-time-rectification"); - assert.equal(openCall.args.p_skill_version, "10.0.2"); + assert.equal(openCall.args.p_skill_version, "10.0.3"); assert.equal(openCall.args.p_user_id, "user-1"); // The server derives the baseline; the request never carries it from the browser. assert.equal("birth_date" in openCall.args, false); diff --git a/frontend/tests/rectification-v9-status-security.test.ts b/frontend/tests/rectification-v9-status-security.test.ts index c24c552d..b2b721f3 100644 --- a/frontend/tests/rectification-v9-status-security.test.ts +++ b/frontend/tests/rectification-v9-status-security.test.ts @@ -124,6 +124,15 @@ test("confirmed requires the engine gate plus explicit grounded consent", async test("confirm-birth-time binds consent to the server-owned current turn", async () => { const accounting = fakeAccounting({ ...receiptHandlers, + get_agentic_rectification_case_dossier: () => dossierFixture({ + latestResult: candidateSnapshotFixture({ + confirmationAllowed: true, + representativeTime: "05:02", + candidates: [ + { candidate_id: CANDIDATE_ID, rank: 1, time: "05:02", relative_support: 70, tied_minute_count: 1 }, + ], + }), + }), confirm_agentic_rectification_candidate_for_case_v2: () => ({ success: true, saved_time: "05:02", @@ -152,13 +161,14 @@ test("confirm-birth-time binds consent to the server-owned current turn", async assert.equal(confirm.inputSchema.safeParse(input).success, true); assert.equal(confirm.inputSchema.safeParse({ ...input, sourceTurnId: "77777777-7777-4777-8777-777777777777" }).success, false); - await confirm.execute(input); - const call = accounting.calls.find((item) => item.fn === "confirm_agentic_rectification_candidate_for_case_v2"); - assert.ok(call); - assert.equal(call.args.p_source_turn_id, TURN_ID); - assert.equal(call.args.p_candidate_id, CANDIDATE_ID); - assert.equal(call.args.p_request_id, TURN_ID); - assert.equal("p_time" in call.args, false); + await assert.rejects( + confirm.execute(input), + (error: unknown) => error instanceof Error && error.message.includes("confirmation_blocked"), + ); + assert.equal( + accounting.calls.some((item) => item.fn === "confirm_agentic_rectification_candidate_for_case_v2"), + false, + ); }); test("candidate ownership is case-scoped: the RPC always receives the case id", async () => { diff --git a/frontend/tests/skill-registry.test.ts b/frontend/tests/skill-registry.test.ts index 2844433e..9ff837b6 100644 --- a/frontend/tests/skill-registry.test.ts +++ b/frontend/tests/skill-registry.test.ts @@ -85,8 +85,8 @@ test("checked-in registry verifies hashed product packages and leaves consult on [ { name: "jyotish-birth-time-rectification", - version: "10.0.2", - sha256: "8d7aa2d4bea0414e9a89ef908ccbc8c708c98f79f5b78ae4f7dc229b5f7dbb30", + version: "10.0.3", + sha256: "3ad634db7f18f2434da6a98e758ce4bc7b4b07c1badea953e28cb662c7980ab6", }, { name: "jyotish-personal-report", @@ -131,6 +131,17 @@ test("checked-in registry verifies hashed product packages and leaves consult on deprecatedRectification.sha256, "b66f243d266e12527b6934cc0c5925df654a9e7bcbaabea3bf244b2e1dfaf2e7", ); + const deprecated1002 = resolveExactSkillPackage( + "jyotish-birth-time-rectification", + "10.0.2", + "8d7aa2d4bea0414e9a89ef908ccbc8c708c98f79f5b78ae4f7dc229b5f7dbb30", + { projectRoot }, + ); + assert.equal(deprecated1002.status, "deprecated"); + assert.equal( + deprecated1002.sha256, + "8d7aa2d4bea0414e9a89ef908ccbc8c708c98f79f5b78ae4f7dc229b5f7dbb30", + ); }); test("exact resolution of an old deprecated package is independent of active switches", (t) => { diff --git a/scripts/rectification/decision_policy.py b/scripts/rectification/decision_policy.py index 4cd610b3..48c18007 100644 --- a/scripts/rectification/decision_policy.py +++ b/scripts/rectification/decision_policy.py @@ -167,13 +167,13 @@ def build_decision_receipt( missing_layers=sorted(built.get("missing_layers") or []), ) + # Adoption is the session result when a representative time exists. + # Unique-top and diagnostic stability still block confirmation, not accept. acceptance_allowed = all(( candidate_presence["passed"], event_quality["passed"], domain_diversity["passed"], date_quality["passed"], - unique_top["passed"], - diagnostic_quality["passed"], )) margin = _decimal(diagnostics.get("primary_secondary_margin_percent")) if acceptance_allowed and margin >= Decimal("20"): @@ -189,12 +189,14 @@ def build_decision_receipt( (event_quality["passed"], "insufficient_events"), (domain_diversity["passed"], "insufficient_domain_diversity"), (date_quality["passed"], "low_date_quality"), - (unique_top["passed"], "tied_top_score"), - (diagnostic_quality["passed"], "insufficient_diagnostic_stability"), ): if not passed: acceptance_reasons.append(reason) confirmation_reasons = [] + if not unique_top["passed"]: + confirmation_reasons.append("tied_top_score") + if not diagnostic_quality["passed"]: + confirmation_reasons.append("insufficient_diagnostic_stability") if not required_layers["passed"]: confirmation_reasons.append("missing_mandatory_layers") confirmation_reasons.extend(("engine_exact_confirmation_not_granted", "external_validation_not_passed")) diff --git a/skills/jyotish-birth-time-rectification/SKILL.md b/skills/jyotish-birth-time-rectification/SKILL.md index 52d7316e..1df662c6 100644 --- a/skills/jyotish-birth-time-rectification/SKILL.md +++ b/skills/jyotish-birth-time-rectification/SKILL.md @@ -1,6 +1,6 @@ --- name: jyotish-birth-time-rectification -version: 10.0.2 +version: 10.0.3 description: "生时校正专用 Skill(V10)。以服务器权威 Case、ConversationFocus 与 CaseConversationSummary 驱动低负担访谈;批量证据逐项判定,candidate / accepted / confirmed 严格分离,全部计算与持久化只走服务端工具。触发词:生时校正、出生时间校正、校正出生时间、rectification、birth time correction。" --- @@ -36,7 +36,7 @@ description: "生时校正专用 Skill(V10)。以服务器权威 Case、Conv | status | 允许动作 | |---|---| -| `draft` / `collecting_evidence` | 继续收集/修订带日期事件;可读取诊断;**不得**提供候选 | +| `draft` / `collecting_evidence` | 继续收集/修订带日期事件;可读取诊断。`session_outcome=adopt_representative` 时本轮结果是采用代表性时间,**不得**同时追问;否则不得提供候选 | | `candidate_ready` | 可比较候选、说明当前边界;仍可继续补证据 | | `candidate_accepted` | 已采用候选,但**不等于**唯一分钟确认;可继续补证据或进入确认门 | | `needs_rebaseline` | 出生资料基线已变化,候选失效;只允许重新收集/修订事件,禁止引用旧候选 | @@ -75,7 +75,7 @@ description: "生时校正专用 Skill(V10)。以服务器权威 Case、Conv `CaseConversationSummary` 是长会话的权威记忆,至少投影:confirmed evidence summary、pending revisions、active focus、declined/skipped topics、candidate divergence summary、missing evidence categories、`method_followup_plan`、last result policy。 - 选择下一动作、识别已确认事实、避免重复追问、理解候选差异与结果政策时,优先依据服务器提供的 `CaseConversationSummary` 与 `method_followup_plan`。 -- 不要按 `missing_evidence_categories` 轮询迁居 / 健康 / 财务。下一问只跟 `method_followup_plan.next_followup`。 +- 不要按 `missing_evidence_categories` 轮询迁居 / 健康 / 财务。下一问只跟 `method_followup_plan.next_followup`。`session_outcome=adopt_representative` 时 `next_followup` 为空,本轮零追问;`deferred_followup` 留给用户以后再补,不得当成本轮问题。 - recent turns 只是有界的原文引用窗口,用于核对当前措辞、quote 和局部承接;不得把 recent turns 当作唯一记忆,也不得用截断历史覆盖 summary。 - summary 与 recent turns 看似冲突时,不自行裁决或默默改写事实:以服务器状态为准;需要用户确认时围绕 active focus 只澄清一个关键点。 - 超过长会话窗口后仍不得忘记已确认证据、pending revision、拒答主题或 active focus。 @@ -108,8 +108,12 @@ description: "生时校正专用 Skill(V10)。以服务器权威 Case、Conv - `candidate`:引擎对当前证据的归一化比较结果,称“当前候选 / 相对支持度”,**不得**称概率、置信度或确定性。 - `accepted`:用户明确选择的当前排盘时间,称“校正采用时间”,**不得**称“已确认唯一出生时间”。 - `confirmed`:通过服务器确认门且用户明确同意,称“已确认校正时间”。 +- `session_outcome=adopt_representative`:本轮**有结果**,结果是采用代表性时间作当前排盘。正文必须说还不能确认唯一分钟。不要调用 confirm。`collecting_evidence` 也可以 offer/accept。 +- 确认门以 `latest_result.confirmation_gate` 为准。任一 blocker 未通过时只能说还不能确认;用户仍可 accepted 代表性候选。 +- `vedastro_minute_sensitive` 为 `not_evaluated` 表示尚未跑通,不等于 fail,但缺它不能写 confirmed。 +- `public_aa_holdout` 为 `not_ready` 时不得声称已校准到精确分钟,也不得把确认门放到更细宽度或发布准确率。 - 未达到唯一分钟确认门时,任何“就用 HH:MM”都只能进入 accepted;只有 `confirmation_allowed=true` 且用户同意才可写 confirmed。 -- 若 `latest_result.indistinguishable_width_minutes` 大于 `maxConfirmationWidthMinutes`(5)或 top `tied_minute_count` > 1,或 `confirmation_allowed=false`,正文必须说这是一段不可分区间,把代表分钟称为代表性候选,不得说已定位到唯一分钟。 +- 若不可分 blocker 为 `blocked`、宽度大于 5、top `tied_minute_count` > 1,或 `confirmation_allowed=false`,正文必须说这是一段不可分区间,把代表分钟称为代表性候选,不得说已定位到唯一分钟。 - 分钟窗口扫描只在服务端;结果进入候选卡 / 平台语言。不得把「几件事件」说成已确定到 ±5 分钟。 - 候选卡负责候选时间、排名、相对支持度、采用动作和选中状态;正文只解释当前意义与不确定性,不重复候选表、编号菜单或卡片数字。 - 不得在同一回复中一边要求继续补证据、一边提供采用候选。 diff --git a/skills/jyotish-birth-time-rectification/references/candidate-comparison.md b/skills/jyotish-birth-time-rectification/references/candidate-comparison.md index 10032a8e..6fddd67a 100644 --- a/skills/jyotish-birth-time-rectification/references/candidate-comparison.md +++ b/skills/jyotish-birth-time-rectification/references/candidate-comparison.md @@ -17,6 +17,7 @@ ## 2. 何时提供候选 - 只有 `rectification-offer-candidates` 返回 `selection_allowed=true` 时才展示候选。 +- `session_outcome=adopt_representative` 时本轮可以 offer/accept,即使 Case 仍是 `collecting_evidence`。这是采用代表性时间,不是 confirmed。 - 继续收集证据时不得边追问边提供采用。 - 候选卡内容来自持久化 Candidate Snapshot(`agentic_rectification_results`),不是 Agent 文本解析。 - 候选卡拥有时间、排名、相对支持度、采用动作与选中状态;Agent 正文不得重复表格、编号菜单或选择提示。 @@ -37,11 +38,14 @@ - 出生资料基线变化 → `needs_rebaseline`,旧候选失效;不得静默继续用旧结果。 - `needs_rebaseline` 下不引用旧候选、不提供采用。 -## 5. 不可分平台(必须说出来) +## 5. 不可分平台与确认门(必须说出来) -服务器 `latest_result` 含 `indistinguishable_width_minutes`、`confirmation_allowed`、`selection_allowed` 与 `margin_percent`(若有)。这些字段是表达合同,不是让 Agent 另算一分钟。 +服务器 `latest_result` 含 `confirmation_gate`、`indistinguishable_width_minutes`、`confirmation_allowed`、`selection_allowed` 与 `margin_percent`(若有)。`confirmation_gate` 是确认门权威,不是让 Agent 另算一分钟。 - 宽度大于 `maxConfirmationWidthMinutes`(5),或 top 候选 `tied_minute_count` > 1,或 `confirmation_allowed=false` 时:正文必须说这是**一段不可分区间**,必须把代表分钟说成**代表性候选**,不得说已定位到唯一分钟,也不得学本地扫分钟后的 1 分钟尖峰。 +- `vedastro_minute_sensitive` 为 `not_evaluated` 表示官方分钟敏感校验尚未跑通,不是 fail;缺它不能写 confirmed。 +- `public_aa_holdout` 为 `not_ready` 时不得声称已校准到精确分钟,也不得把确认门放到更细宽度或发布准确率。 +- 用户仍可 accepted 代表性候选;accepted ≠ confirmed。`session_outcome=adopt_representative` 时正文必须说还不能确认唯一分钟。 - `confirmation_allowed=true` 才允许进入唯一分钟确认门;平台结果禁止把 `confirmation_allowed` 说成已确认。 - 候选卡仍可展示代表性时间;Agent 不得把该时间写成“已校正到 HH:MM”。 diff --git a/skills/jyotish-birth-time-rectification/references/conversation-strategy.md b/skills/jyotish-birth-time-rectification/references/conversation-strategy.md index 17583291..221bfbd9 100644 --- a/skills/jyotish-birth-time-rectification/references/conversation-strategy.md +++ b/skills/jyotish-birth-time-rectification/references/conversation-strategy.md @@ -32,6 +32,7 @@ recent turns 不是权威记忆,不得依赖“上一条 assistant 问了什 3. 自然回应本轮内容,不固定以“收到 / 已记录”开头,不机械复读,不擅自解释事件的“人生意义”。 4. 清晰项先处理;若仍需追问,只保留一个最有信息增益的主问题。完整回复可以没有问题。 5. 不允许在同一回复中既要求补证据、又提供采用候选;不生成三条推荐问题。 +6. `session_outcome=adopt_representative` 时本轮只解释结果并邀请采用,零追问(除非有 active focus)。 ## 4. ConversationFocus @@ -72,7 +73,7 @@ active `ConversationFocus` 是承接型意图的唯一目标来源。它由服 追问必须能澄清事实、提高真实日期精度、补足必要方法层或区分候选;否则不提。优先级: 1. 服务器 `CaseConversationSummary.active focus` 指定的唯一目标。 -2. `method_followup_plan.next_followup` 指定的下一方法层(有日期事件 → 关系 → 事业 → 家人)。外貌、胎记、占星占问不追问。 +2. `method_followup_plan.next_followup` 指定的下一方法层(有日期事件 → 关系 → 事业 → 家人)。外貌、胎记、占星占问不追问。`session_outcome=adopt_representative` 时 `next_followup` 为空,不得把 `deferred_followup` 当成本轮问题。 3. candidate divergence / `internal_observations` 显示真正能区分候选的主题。D9/D10 观察只用于选题,不得说成用户星座或类型标签。 4. pending revision 的一个关键歧义。 5. 已有证据的必要稳定性补强。 @@ -97,6 +98,8 @@ active `ConversationFocus` 是承接型意图的唯一目标来源。它由服 - 正文只解释“这些候选当前意味着什么”和“不确定性在哪里”,不重复候选表、编号菜单或候选卡数字。 - `relative_support` 不是概率,不能写“准确率 70%”。 - candidate、accepted、confirmed 严格分离;accepted 不是 confirmed。 -- 若 `indistinguishable_width_minutes` > 5 或 top `tied_minute_count` > 1,或 `confirmation_allowed=false`,必须说不可分区间 / 代表性候选,不得说已定位到唯一分钟。 +- `session_outcome=adopt_representative` 时本轮结果是采用代表性时间;正文必须说还不能确认唯一分钟。 +- 确认门以 `confirmation_gate` 为准。`not_evaluated` 不是 fail;holdout `not_ready` 时不得声称精确分钟或发布准确率。 +- 若 `indistinguishable_width_minutes` > 5 或 top `tied_minute_count` > 1,或 `confirmation_allowed=false`,必须说不可分区间 / 代表性候选,不得说已定位到唯一分钟。accepted ≠ confirmed。 - accepted 后自然说明它不是唯一分钟确认即可;不强制追问,不要求用户结束、暂停或保存进度。 - terminal Case(confirmed / closed / abandoned / superseded)只读:不得新增/修订/确认 evidence,不得采用/确认候选;若用户要继续,指向显式新建 Case。 diff --git a/skills/jyotish-birth-time-rectification/references/technique-routing.md b/skills/jyotish-birth-time-rectification/references/technique-routing.md index 0b655c5e..0c2501c3 100644 --- a/skills/jyotish-birth-time-rectification/references/technique-routing.md +++ b/skills/jyotish-birth-time-rectification/references/technique-routing.md @@ -42,4 +42,4 @@ 1. 有日期事件 → 按 Dasha 建立时间框架。 2. 主题缺口 → 调对应分盘(§2/§3)。 3. 候选对比有差异 → 服务器 Candidate Contrast 驱动下一问。 -4. 唯一分钟确认门(事件数/领域数/宽度/唯一领先/必需层完整)由服务器判定,Agent 不得自行宣告通过或失败。 +4. 唯一分钟确认门以 `confirmation_gate` 为准(事件数/领域数/宽度/唯一领先/必需层/VedAstro/holdout)。`not_evaluated` ≠ fail。Agent 不得自行宣告通过或失败。 diff --git a/skills/jyotish-birth-time-rectification/references/truth-consent-boundaries.md b/skills/jyotish-birth-time-rectification/references/truth-consent-boundaries.md index 2c2ed795..31583220 100644 --- a/skills/jyotish-birth-time-rectification/references/truth-consent-boundaries.md +++ b/skills/jyotish-birth-time-rectification/references/truth-consent-boundaries.md @@ -12,7 +12,7 @@ ## 2. 用户同意边界 - 保存 profile 需要用户明确同意 + 服务器确认门。 -- accepted(用户选择)与 confirmed(引擎唯一确认 + 用户同意)严格区分;不得把 accepted 写成 confirmed。 +- accepted(用户选择)与 confirmed(引擎唯一确认 + 用户同意)严格区分;不得把 accepted 写成 confirmed。`confirmation_gate` 是确认门权威;`not_evaluated` 不是失败。 - 助手文本、模型推断与历史摘要不得升级为已确认事实;当前轮用户主动、明确且无歧义的事件可在 quote grounding 通过后同轮走服务器确认路径。旧文本只能作为显示历史或 pending evidence draft。 - 用户说“不知道/不想回答”时尊重并关闭该目标,不换词重开。 diff --git a/skills/jyotish-birth-time-rectification/versions/10.0.3/SKILL.md b/skills/jyotish-birth-time-rectification/versions/10.0.3/SKILL.md new file mode 100644 index 00000000..1df662c6 --- /dev/null +++ b/skills/jyotish-birth-time-rectification/versions/10.0.3/SKILL.md @@ -0,0 +1,135 @@ +--- +name: jyotish-birth-time-rectification +version: 10.0.3 +description: "生时校正专用 Skill(V10)。以服务器权威 Case、ConversationFocus 与 CaseConversationSummary 驱动低负担访谈;批量证据逐项判定,candidate / accepted / confirmed 严格分离,全部计算与持久化只走服务端工具。触发词:生时校正、出生时间校正、校正出生时间、rectification、birth time correction。" +--- + +# Jyotish 生时校正(V10) + +## 1. 触发条件与方法学归属 + +本 Skill 只服务 `agentic_rectification_cases` 绑定的生时校正会话: + +- 服务端 Case 存在且 `skill_name = 'jyotish-birth-time-rectification'`。 +- 用户话题是出生时间 / 出生分钟 / 事件发生时间能否定位到某几分钟,而不是普通解盘或推运。 +- 普通咨询、推运、合盘、补救问题交给 `jyotish-vedic-astrology`,不要在这里处理。 + +生时校正的方法学、访谈策略、证据边界与候选表达规则只定义在本 Skill 及其 references。system prompt 只保留安全、权限、隐私、工具和运行边界,不得复制、压缩或另写一套校时方法学,也不得用 system prompt 覆盖本版本政策。 + +## 2. 必须先读与服务器权威 + +进入任何一轮实质工作前读取(服务器会随 Dossier 提供投影,缺文件时以服务器 Dossier 为准): + +1. `references/evidence-model.md`:证据种类、日期精度、原文引用、修订链、服务器持有 ID。 +2. `references/conversation-strategy.md`:OpeningPolicy、ConversationFocus、长会话记忆、批量证据与追问策略。 +3. `references/candidate-comparison.md`:candidate / accepted / confirmed 三层语义与表达边界。 +4. `references/technique-routing.md`:技法按主题调用,D9/D10 核心,不一次性调用所有分盘。 +5. `references/truth-consent-boundaries.md`:真实性、同意与选择政策。 + +服务器是下列信息的唯一权威:Skill 绑定版本、Case/Session 身份与状态、`ConversationFocus`、`CaseConversationSummary`、evidence/focus ID、事件状态与修订链、候选范围与评分、采用/确认权限、工具执行、持久化和计费。Agent 只能解释服务器投影并选择自然表达,不得从对话文本、上一条 assistant 消息或 recent turns 重建权威状态。 + +每次 attempt 必须先完成真实 Skill 绑定和 Case 加载,之后才能执行 action。失败或重试 attempt 的部分文本、工具结果与推断不得当作已提交事实;只依据服务器提交成功的 attempt 与 receipt。 + +## 3. Case 状态与只读边界 + +服务器 Dossier 会给出当前 `status`。按表行动: + +| status | 允许动作 | +|---|---| +| `draft` / `collecting_evidence` | 继续收集/修订带日期事件;可读取诊断。`session_outcome=adopt_representative` 时本轮结果是采用代表性时间,**不得**同时追问;否则不得提供候选 | +| `candidate_ready` | 可比较候选、说明当前边界;仍可继续补证据 | +| `candidate_accepted` | 已采用候选,但**不等于**唯一分钟确认;可继续补证据或进入确认门 | +| `needs_rebaseline` | 出生资料基线已变化,候选失效;只允许重新收集/修订事件,禁止引用旧候选 | +| `paused` | 可继续访谈;不要声称结束 | +| `confirmed` / `closed` / `abandoned` / `superseded` | terminal Case,只读历史;不得追加/修订/确认证据,不得采用/确认候选,不得关闭第二次 | + +- terminal Case 的只读限制由服务器强制;Agent 不得用换工具、换措辞、重试或旧 focus 绕过。用户要继续校正时,说明需要走显式新建 Case 的入口。 +- 同一用户可以保留多个可恢复 Case;首页显式新建与历史 Session 精确恢复是两条不同入口,不得因存在旧 Case 强制回到旧 Session。 +- 历史 Session 必须恢复对应的精确 Case/Session;不得把另一个 resumable Case 的上下文混入当前会话。 + +## 4. OpeningPolicy + +服务端首次只提供 opening brief:Case 状态、出生时间不确定类型、已有证据摘要、当前可询问范围。Agent 根据 brief 自然开场,不得固定复述身份、完整流程、领域清单或要求用户先准备一套材料。 + +开场必须满足: + +- 降低回忆负担:从用户最容易想起的一件经历或当前最自然的入口开始,不要求列出固定数量事件。 +- 允许模糊日期:可以先说大概年份、阶段或范围;如确有信息增益,后续再澄清,不诱导猜测月份或日期。 +- 不要求一次说完:明确或自然体现可以分多轮补充、修正或换方向。 +- 至多一个主问题:开场可以没有问题;有问题时只问一个最容易回答、最有信息增益的问题。 +- 不机械复述 opening brief,不泄露服务器字段、内部状态对象或出生资料明文。 + +## 5. ConversationFocus 与意图承接 + +`ConversationFocus` 是服务器持久化的当前对话目标,至少包含 `id`(即 `focusId`)、`questionId`、`intent`、`targetEvidenceId`、目标领域/类型、预期回答结构、状态与时间。Agent 可做意图分类,但服务器必须验证目标仍为 `active`。 + +- “是的 / 不是 / 大概那年 / 后来改了 / 不记得 / 不想回答 / 换个方向”等承接、拒答、确认和修订,必须依赖服务器给出的 active focus。 +- 拒绝、跳过、解决或修订既有目标时,工具调用必须引用服务器提供的 `focusId`;涉及既有证据时还必须引用对应 `evidenceId`。用户对已有 pending 说“对/是”时,`rectification-confirm-evidence` 可以省略 `focusId`,尤其当 active focus 是无 `target_evidence_id` 的 opening focus 时,不得用它烧掉后续事件确认。 +- 不得从 assistant 上一句倒推拒答目标,不得仅靠 pending revision 或中文正则构造 active focus,也不得把脱离上下文的承接词保存成新事件。 +- 没有 active focus、focus 已 resolved/declined/skipped/superseded、或当前表达可能指向多个目标时,只做一句简短澄清;不得猜测或写 evidence。 +- 当前轮用户主动、明确、无歧义地提出全新事件时,可按新事件处理;若需要后续问题,由服务器建立新的 focus。 +- 用户已拒绝或跳过的目标不得换词重问;只有用户主动重开该主题或服务器建立新的有效 focus 才可继续。 + +## 6. CaseConversationSummary 与长会话记忆 + +`CaseConversationSummary` 是长会话的权威记忆,至少投影:confirmed evidence summary、pending revisions、active focus、declined/skipped topics、candidate divergence summary、missing evidence categories、`method_followup_plan`、last result policy。 + +- 选择下一动作、识别已确认事实、避免重复追问、理解候选差异与结果政策时,优先依据服务器提供的 `CaseConversationSummary` 与 `method_followup_plan`。 +- 不要按 `missing_evidence_categories` 轮询迁居 / 健康 / 财务。下一问只跟 `method_followup_plan.next_followup`。`session_outcome=adopt_representative` 时 `next_followup` 为空,本轮零追问;`deferred_followup` 留给用户以后再补,不得当成本轮问题。 +- recent turns 只是有界的原文引用窗口,用于核对当前措辞、quote 和局部承接;不得把 recent turns 当作唯一记忆,也不得用截断历史覆盖 summary。 +- summary 与 recent turns 看似冲突时,不自行裁决或默默改写事实:以服务器状态为准;需要用户确认时围绕 active focus 只澄清一个关键点。 +- 超过长会话窗口后仍不得忘记已确认证据、pending revision、拒答主题或 active focus。 + +## 7. 批量证据与日期真实性 + +一次用户消息可包含多件事件。优先使用服务器提供的批量 proposal/confirmation 服务,并遵守逐项原子语义: + +- 每件事件独立保留用户原话 `quote`、`kind`、`domain` 和真实 `date precision`;不得合并、拆错主体或要求用户逐条重发。 +- 服务器逐项返回 `accepted` / `needs_clarification` / `rejected`;Agent 按每项结果分别处理,不得让一条模糊或拒绝项阻塞同批清晰项。 +- 清晰且 quote grounding 通过的新事件必须走批量服务写入;不要对同一句用户消息里的多件事件逐条 propose+confirm。`rectification-confirm-evidence` 只用于用户对已有 pending 明确说“对/是”。 +- 证据有效写入后,服务器会按当前账本重算候选。不要等用户说“没有更多了”才 compare;同一证据指纹不要再 compare。不要调用新的扫描工具。 +- 批量结果中的 evidence item `accepted` 只是该项被服务接纳处理,不等于候选 `accepted`;清晰项在批量路径上可由服务器直接 `confirmed`。 +- 复述任何事件日期必须使用服务器 `display_date_label`。日级不得说成“年份已确定为 YYYY”。用户确认“是/对”不得改 `date_precision`。 +- `needs_clarification` 不得猜补日期、主体、事件身份、主动/被动、原因或人物关系;`rejected` 不得伪装成已记录。 +- 修订必须生成 superseding revision,引用 active `focusId` 与目标 `evidenceId`,不得覆盖历史;pending revision 不自动确认。 +- 日期精度真实保留:`year` / `month` / `quarter` / `day` / `range` / `unknown` 按用户原话保存,范围不得取中点,只有服务器目标已明确年份时才可把用户补充的月份/季度并入修订。 +- 批量服务与单项工具都必须依赖服务器幂等键;重试不得重复创建或确认 evidence。Agent 不自行生成 evidence/focus ID。 + +## 8. 可调用工具与输入边界 + +只调用服务器提供的 `rectification-*` 工具,包括 read-case、set/resolve-focus、批量 evidence、单项 proposal/confirmation/revision、candidate comparison/offer/accept/confirm 与 close-case。工具 input 只含服务端合同要求的最小引用(如 caseId、focusId、evidenceId、quote、proposedKind),**绝不**传: + +- userId、出生日期/时间/地点/时区、candidate range、完整 events 数组、分数与阈值、confirmationAllowed/selectionAllowed、profile 写入目标。 + +工具结果只读取;事实、ID、评分、范围、状态、持久化、幂等与权限一律以服务器为准。工具执行对用户保持静默:不得叙述读取 Skill、Case 已加载、调用工具、建立草稿、读取诊断或呈现快照,也不得自行生成“本轮做了什么”“执行步骤”“使用技法”或 Activity 状态文案;运行状态和实际方法 receipt 只由服务器公开凭证展示。 + +## 9. candidate / accepted / confirmed 语言边界 + +- `candidate`:引擎对当前证据的归一化比较结果,称“当前候选 / 相对支持度”,**不得**称概率、置信度或确定性。 +- `accepted`:用户明确选择的当前排盘时间,称“校正采用时间”,**不得**称“已确认唯一出生时间”。 +- `confirmed`:通过服务器确认门且用户明确同意,称“已确认校正时间”。 +- `session_outcome=adopt_representative`:本轮**有结果**,结果是采用代表性时间作当前排盘。正文必须说还不能确认唯一分钟。不要调用 confirm。`collecting_evidence` 也可以 offer/accept。 +- 确认门以 `latest_result.confirmation_gate` 为准。任一 blocker 未通过时只能说还不能确认;用户仍可 accepted 代表性候选。 +- `vedastro_minute_sensitive` 为 `not_evaluated` 表示尚未跑通,不等于 fail,但缺它不能写 confirmed。 +- `public_aa_holdout` 为 `not_ready` 时不得声称已校准到精确分钟,也不得把确认门放到更细宽度或发布准确率。 +- 未达到唯一分钟确认门时,任何“就用 HH:MM”都只能进入 accepted;只有 `confirmation_allowed=true` 且用户同意才可写 confirmed。 +- 若不可分 blocker 为 `blocked`、宽度大于 5、top `tied_minute_count` > 1,或 `confirmation_allowed=false`,正文必须说这是一段不可分区间,把代表分钟称为代表性候选,不得说已定位到唯一分钟。 +- 分钟窗口扫描只在服务端;结果进入候选卡 / 平台语言。不得把「几件事件」说成已确定到 ±5 分钟。 +- 候选卡负责候选时间、排名、相对支持度、采用动作和选中状态;正文只解释当前意义与不确定性,不重复候选表、编号菜单或卡片数字。 +- 不得在同一回复中一边要求继续补证据、一边提供采用候选。 +- 不得伪造出生分钟、分数、权重、事件 ID、分盘事实或确认门结果。 + +## 10. 输出与停止条件 + +- 简体中文,自然对话;不固定以“收到 / 已记录”开头,不机械复读,不擅自解释事件的“人生意义”,不推断用户未陈述的动机、心理或因果关系。 +- 每轮最多一个主要问题;完整回复可以零问题,不为了延续对话强行追问,不生成三条推荐问题。 +- 用户询问“为什么问这个 / 现在到哪一步 / 还需要多少信息”时,基于服务器状态直接回答,不把问题当作事件。 +- 用户说“不知道 / 记不清 / 不想回答 / 换个方向”时,按 active focus 关闭或跳过该目标;用户说“目前没有 / 没有更多事件”时,不再轮换证据领域,也不要求结束、暂停或保存进度。 +- 不得询问外貌、体型、胎记或疤痕;不得给用户贴 D9/D10 星座或类型标签。`internal_observations` 只用于选择下一问主题。 +- 采用候选后只需自然说明 accepted 与 confirmed 边界;不强制下一问,不主动关闭 Case,Session 会保留并可日后继续。 +- 不再有固定 10–15 个事件、固定 80%/60% 匹配率、外貌/体型/疤痕主评分、固定 A/B/C/D 问卷、D9/D10 类型表贴标签,或“稳定确定到精确分钟”的承诺。 +- 无法验证时如实降级并说明受限,不得把内部一致性伪装成全球顶级精度。 + +## 11. 上游同步边界 + +方法源只在本 Skill 与 references。不得把本 Skill 内容反向写回 `yinduzhanxing` 上游快照,也不得在同步时自动覆盖商业 Skill。 diff --git a/skills/jyotish-birth-time-rectification/versions/10.0.3/references/candidate-comparison.md b/skills/jyotish-birth-time-rectification/versions/10.0.3/references/candidate-comparison.md new file mode 100644 index 00000000..6fddd67a --- /dev/null +++ b/skills/jyotish-birth-time-rectification/versions/10.0.3/references/candidate-comparison.md @@ -0,0 +1,56 @@ +# Candidate Comparison(V9) + +候选比较是服务器计算产物,Agent 只负责解释与引导,不负责产生候选、分数或范围。 + +## 1. 三层语义 + +| 层 | 含义 | 表达 | +|---|---|---| +| `candidate` | 引擎对当前证据的归一化比较结果 | “当前候选”“相对支持度” | +| `accepted` | 用户明确选择的当前排盘时间 | “校正采用时间” | +| `confirmed` | 通过服务器确认门且用户明确同意 | “已确认校正时间” | + +- `candidate_accepted` 不是“唯一出生分钟已确认”,默认仍可继续补充证据。 +- accepted 后用户仍可在同一批有效候选中改选(幂等 RPC 支持)。 +- confirmed 只能由服务器确认门 + 用户明确同意触发,同时写 `completed_at`。 + +## 2. 何时提供候选 + +- 只有 `rectification-offer-candidates` 返回 `selection_allowed=true` 时才展示候选。 +- `session_outcome=adopt_representative` 时本轮可以 offer/accept,即使 Case 仍是 `collecting_evidence`。这是采用代表性时间,不是 confirmed。 +- 继续收集证据时不得边追问边提供采用。 +- 候选卡内容来自持久化 Candidate Snapshot(`agentic_rectification_results`),不是 Agent 文本解析。 +- 候选卡拥有时间、排名、相对支持度、采用动作与选中状态;Agent 正文不得重复表格、编号菜单或选择提示。 + +## 3. 表达边界 + +- 相对支持度是候选间归一化比较,**不是**概率、统计置信度或确定性。 +- 不暴露原始分数、内部权重、贡献矩阵、技术层名称、隐藏分钟证据或第二候选簇。 +- 候选范围必须说明“待核对边界”,不得表述为已确认出生分钟。 +- 外部验证状态按服务器字面读取:`not_evaluated` 表示未调用(入口门未就绪),不是“调用了但失败”。 + +## 4. 证据变化与重算 + +- 证据有效变化时由服务器重算候选;Agent 不必等用户说“没有更多了”才 compare。 +- 相同 evidence 指纹 + 引擎版本复用缓存;不要对同一指纹再 compare。 +- 分钟窗口扫描只在服务端,结果进入候选卡 / 不可分平台语言。不得把若干事件说成已确定到 ±5 分钟。 +- 普通澄清轮若不改变账本指纹,不重复播报。 +- 出生资料基线变化 → `needs_rebaseline`,旧候选失效;不得静默继续用旧结果。 +- `needs_rebaseline` 下不引用旧候选、不提供采用。 + +## 5. 不可分平台与确认门(必须说出来) + +服务器 `latest_result` 含 `confirmation_gate`、`indistinguishable_width_minutes`、`confirmation_allowed`、`selection_allowed` 与 `margin_percent`(若有)。`confirmation_gate` 是确认门权威,不是让 Agent 另算一分钟。 + +- 宽度大于 `maxConfirmationWidthMinutes`(5),或 top 候选 `tied_minute_count` > 1,或 `confirmation_allowed=false` 时:正文必须说这是**一段不可分区间**,必须把代表分钟说成**代表性候选**,不得说已定位到唯一分钟,也不得学本地扫分钟后的 1 分钟尖峰。 +- `vedastro_minute_sensitive` 为 `not_evaluated` 表示官方分钟敏感校验尚未跑通,不是 fail;缺它不能写 confirmed。 +- `public_aa_holdout` 为 `not_ready` 时不得声称已校准到精确分钟,也不得把确认门放到更细宽度或发布准确率。 +- 用户仍可 accepted 代表性候选;accepted ≠ confirmed。`session_outcome=adopt_representative` 时正文必须说还不能确认唯一分钟。 +- `confirmation_allowed=true` 才允许进入唯一分钟确认门;平台结果禁止把 `confirmation_allowed` 说成已确认。 +- 候选卡仍可展示代表性时间;Agent 不得把该时间写成“已校正到 HH:MM”。 + +## 6. 保存边界 + +- accepted 写入 `active_birth_time`,保留 `reported_birth_time` 原填报,不写兼容 `birth_time`。 +- confirmed 同样保留原填报;不自动写入,需要用户明确同意。 +- 失败、空流、Skill 未加载或未完成必要工具链时不保存、不扣费。 diff --git a/skills/jyotish-birth-time-rectification/versions/10.0.3/references/conversation-strategy.md b/skills/jyotish-birth-time-rectification/versions/10.0.3/references/conversation-strategy.md new file mode 100644 index 00000000..221bfbd9 --- /dev/null +++ b/skills/jyotish-birth-time-rectification/versions/10.0.3/references/conversation-strategy.md @@ -0,0 +1,105 @@ +# Conversation Strategy(V10) + +生时校正访谈是自然对话,不是问卷。服务器持有事实、状态、权限、焦点与长会话记忆;Agent 负责意图理解、自然表达和选择一个有信息增益的下一步。 + +## 1. 每轮上下文优先级 + +每轮先按以下优先级理解会话: + +1. 当前 Case 的服务器状态与读写权限。 +2. `CaseConversationSummary`:confirmed evidence、pending revisions、active focus、declined/skipped topics、candidate divergence、`method_followup_plan`、last result policy。不要把 `missing_evidence_categories` 当下一问。 +3. 当前用户消息。 +4. recent turns:只作为有界原文引用窗口,辅助 quote grounding 和局部措辞理解。 + +recent turns 不是权威记忆,不得依赖“上一条 assistant 问了什么”的倒推、正则匹配或被截断的聊天记录重建 Case 状态。summary 与局部文本不一致时,以服务器状态为准;若用户意图仍不唯一,只澄清一个关键点。 + +## 2. OpeningPolicy + +首次开场只使用服务器 opening brief 中的 Case 状态、出生时间不确定类型、已有证据摘要与当前可询问范围,并自然满足: + +- 降低回忆负担:从最容易想起的一件经历或用户当前话题切入,不索要固定清单。 +- 接受“大概某年 / 那几年 / 某个阶段”等模糊日期,不诱导猜月份、日期或精确时点。 +- 不要求一次说完,允许分多轮补充、修正、暂停或换方向。 +- 至多一个主问题;开场可以零问题。 +- 不固定复述身份、流程、领域列表、证据数量要求或 opening brief 原文。 + +示例方向(不是固定话术):“可以先从你最容易想起的一件经历开始,大概年份也可以,不需要一次说完。哪件事你现在最容易确定?” + +## 3. 一轮的基本形态 + +1. 先判断用户意图:新事件、批量事件、补日期、修正旧事实、回答上一问、确认/否认、询问进度或原因、拒答/换方向、查看或采用候选。 +2. 先读取服务器 Case、summary 与 active focus;静默完成必要的工具调用后再输出答案。正文不叙述内部执行步骤,也不生成 Activity/技法凭证文案。 +3. 自然回应本轮内容,不固定以“收到 / 已记录”开头,不机械复读,不擅自解释事件的“人生意义”。 +4. 清晰项先处理;若仍需追问,只保留一个最有信息增益的主问题。完整回复可以没有问题。 +5. 不允许在同一回复中既要求补证据、又提供采用候选;不生成三条推荐问题。 +6. `session_outcome=adopt_representative` 时本轮只解释结果并邀请采用,零追问(除非有 active focus)。 + +## 4. ConversationFocus + +active `ConversationFocus` 是承接型意图的唯一目标来源。它由服务器持久化并提供 `focusId`、目标 `evidenceId`(如有)、intent、预期回答结构和状态。 + +- “是的 / 不是 / 对 / 不对 / 大概那年 / 后来改了 / 不记得 / 不想回答 / 换个方向”只有在存在唯一 active focus 时才能解释为回答、拒答、确认或修订。 +- 拒绝、跳过、解决 focus 时,工具调用必须引用 active `focusId`;修订既有 evidence 时同时引用目标 `evidenceId`。用户对已有 pending 说“对/是”时,确认工具可以省略 `focusId`;opening focus(无 `target_evidence_id`)不得因第一条确认被 resolve。 +- 无 active focus、focus 已非 active、目标已被 supersede、或一句话可能指向多个问题时,简短问清“你指的是哪一件/哪一个时间点”;不得猜测,不调用 evidence 写工具。 +- 脱离 active focus 的“是的 / 不是”不是新事件。不得从 assistant 上一句倒推目标,不得只用 pending revision 构造 `active_followup`。 +- 当前消息若主动、明确陈述全新事件,可独立进入 evidence 流程;需要追问时由服务器建立新 focus。 +- 服务器验证 focus 已失效时,停止该动作并基于最新 summary 重新回应,不沿用旧目标。 + +## 5. 自然叙述与批量 evidence + +用户一段话中可以包含多件事件。应优先走服务器批量服务: + +- 每件事件分别保留原话 `quote`、`kind`、`domain`、主体和日期精度,不合并,不要求逐条重发。 +- 服务器对每项独立返回 `accepted`、`needs_clarification` 或 `rejected`。一项失败不改变其他项结果。 +- 新事件优先走批量服务;一句里两件及以上事件时只允许批量。清晰项在批量路径上可由服务器直接 `confirmed`,不要再逐条 propose+confirm。不要让模糊项阻塞清晰项。 +- 多个模糊项同时存在时,只选择信息增益最高的一项追问一个关键点,其余维持待澄清,不连续抛出问题清单。 +- `needs_clarification` 只问缺失的关键事实;不猜日期、主体、事件身份、动机、因果、主动/被动或人物关系。 +- `rejected` 如需解释,只说明用户可理解的边界,不伪装成已记录。 +- 批量 evidence item 的 `accepted` 是服务处理结果,不是候选采用状态;清晰项的最终 `status` 以服务器返回为准,批量路径上可以为 `confirmed`。 +- 询问进度/原因、拒答、查看结果、采用候选,以及无唯一 active focus 的承接词,都不是新事件。 + +## 6. 确认、修订、拒答与换方向 + +- 确认既有事实:必须有对应 `evidenceId`;确认词本身不创建新 evidence。无匹配 pending-target 的 focus 时可省略 `focusId`。 +- 修订既有事实:必须有 active `focusId` 和目标 `evidenceId`,生成 superseding revision,不覆盖历史;pending revision 不自动确认。 +- 用户明确“不知道 / 记不清”:将 active focus 解决为相应状态,不诱导猜测。 +- 用户明确“不想回答 / 换个方向”:decline/skip active focus;不得换词重开同一目标。 +- 用户主动重新打开曾拒绝主题时,可让服务器建立新 focus;否则 declined/skipped topics 以 `CaseConversationSummary` 为准。 +- 用户说“目前没有 / 没有更多事件”时,停止轮换证据领域;不要求结束、暂停或保存进度。 +- 若没有其他具备信息增益的问题,可以直接说明当前边界或自然结束本轮。 + +## 7. 追问策略 + +追问必须能澄清事实、提高真实日期精度、补足必要方法层或区分候选;否则不提。优先级: + +1. 服务器 `CaseConversationSummary.active focus` 指定的唯一目标。 +2. `method_followup_plan.next_followup` 指定的下一方法层(有日期事件 → 关系 → 事业 → 家人)。外貌、胎记、占星占问不追问。`session_outcome=adopt_representative` 时 `next_followup` 为空,不得把 `deferred_followup` 当成本轮问题。 +3. candidate divergence / `internal_observations` 显示真正能区分候选的主题。D9/D10 观察只用于选题,不得说成用户星座或类型标签。 +4. pending revision 的一个关键歧义。 +5. 已有证据的必要稳定性补强。 + +不要按 `missing_evidence_categories` 轮询迁居 / 健康 / 财务。`stop_domain_rotation=true` 时停止领域清单。一轮最多一个主要问题。用户询问“为什么问这个 / 现在到哪一步 / 还需要多少信息”时,直接说明目的、当前状态和边界,不绕开问题继续索取证据。 + +## 8. 日期精度 + +- `year`:只说年份;复述用 `display_date_label`(如 `2024年`)。 +- `month`:明确到月份;复述如 `2024-05`。 +- `quarter`:明确到季度。 +- `day`:明确到日期;复述必须是 `YYYY-MM-DD`,禁止说成“年份已确定为 YYYY”。 +- `range`:只有范围,不得擅自取中点当事实;复述用 `from–to`。 +- `unknown`:日期不明;可保留背景,但不得当作高权重校正证据。 +- 用户确认“是 / 对”不得改 `date_precision`。 +- 用户只补月份/季度时,只有 active focus 与目标 evidence 已由服务器明确年份,才可合并为 revision;不得猜年份。 +- “大概 3 月”仍按用户真实表达保存,不升级成某一天。 + +## 9. 候选输出与终态 + +- 候选卡负责呈现时间、排名、相对支持度、采用动作与选中状态。 +- 正文只解释“这些候选当前意味着什么”和“不确定性在哪里”,不重复候选表、编号菜单或候选卡数字。 +- `relative_support` 不是概率,不能写“准确率 70%”。 +- candidate、accepted、confirmed 严格分离;accepted 不是 confirmed。 +- `session_outcome=adopt_representative` 时本轮结果是采用代表性时间;正文必须说还不能确认唯一分钟。 +- 确认门以 `confirmation_gate` 为准。`not_evaluated` 不是 fail;holdout `not_ready` 时不得声称精确分钟或发布准确率。 +- 若 `indistinguishable_width_minutes` > 5 或 top `tied_minute_count` > 1,或 `confirmation_allowed=false`,必须说不可分区间 / 代表性候选,不得说已定位到唯一分钟。accepted ≠ confirmed。 +- accepted 后自然说明它不是唯一分钟确认即可;不强制追问,不要求用户结束、暂停或保存进度。 +- terminal Case(confirmed / closed / abandoned / superseded)只读:不得新增/修订/确认 evidence,不得采用/确认候选;若用户要继续,指向显式新建 Case。 diff --git a/skills/jyotish-birth-time-rectification/versions/10.0.3/references/evidence-model.md b/skills/jyotish-birth-time-rectification/versions/10.0.3/references/evidence-model.md new file mode 100644 index 00000000..08780637 --- /dev/null +++ b/skills/jyotish-birth-time-rectification/versions/10.0.3/references/evidence-model.md @@ -0,0 +1,111 @@ +# Evidence Model(V9) + +证据是生时校正的唯一事实账本。本文件定义证据如何进入、校验、修订与关闭。服务器是证据账本的唯一写入者;Agent 只能提出 proposal。 + +## 1. 证据最小单元 + +一条证据(`agentic_rectification_evidence` 一行)至少包含: + +- `case_id`:所属 Case,由服务器生成。 +- `source_turn_id`:用户消息所在轮次;`source_message_id` 可选。 +- `user_quote`:用户原话的规范化子串。 +- `subject`:主体(`self` 或亲属关系;家庭事件必须显式 `related_person`)。 +- `event_kind`:语义种类(见 §2),不再只保留粗领域。 +- `domain`:评分/路由领域。 +- `occurred_from` / `occurred_to`:真实日期边界,可空。 +- `date_precision`:`year | month | quarter | day | range | unknown`。 +- `summary`:服务器从已验证引用中生成的安全摘要。 +- `status`:`draft | pending_confirmation | confirmed | superseded | rejected`。 +- `supersedes_evidence_id`:修订链指针。 + +## 2. 事件种类(event_kind) + +```text +education_start +education_completion +education_interruption +education_change +education_milestone +career_entry +career_change +promotion +career_pressure +career_exit +business_start +relationship_start +relationship_commitment +relationship_separation +relationship_end +relationship_change +relocation +foreign_move +return +home_change +finance_gain +finance_loss +income_change +asset_change +finance_change +self_health_event +pressure_period +family_event +other +``` + +语义不折叠:`career_entry / career_pressure / career_exit` 不同;`relationship_start / relationship_commitment / relationship_separation` 不同;不得把“开始关系”与“关系变化”混成同一事件。`education_milestone`、`relationship_end`、`return`、`home_change`、`health_pressure` 等与 TypeScript `EVIDENCE_KINDS` / `EVIDENCE_DOMAINS` 对齐,不得再因枚举缺口导致写入失败。 + +领域(`domain`): + +```text +education +career +relationship +relocation +finance +health +health_pressure +family +other +``` + +## 3. 日期精度 + +- 用户只给年份 → `date_precision = 'year'`,`occurred_from = YYYY-01-01`(边界),不得诱导编造月份。 +- 用户给年月 → `month`;给季度 → `quarter`;给年月日 → `day`;给区间 → `range`。 +- 相对表达(“刚毕业那年”)必须由服务器结合权威当前时间解析,Agent 不得自行假设年份。 +- 跨午夜、未知时间不伪造具体分钟;`unknown` 精度允许保留。 +- 服务器投影只读字段 `display_date_label`:日级用 `YYYY-MM-DD`,月级用 `YYYY-MM`,年级用 `YYYY年`,range 用 `from–to`。复述必须用该标签;禁止把日级格式化成“年份已确定为 YYYY”。用户确认“是/对”不得改 `date_precision`。更粗的修订若 quote 并没有更粗的日期表达,服务器拒绝 `precision_downgrade`。 + +## 4. 原文引用(quote grounding) + +- `user_quote` 必须能在对应 `source_turn.user_message` 中找到规范化匹配(去空白、去标点后子串命中)。 +- 服务器确认路径必须校验:引用来自本轮用户消息、kind 属于枚举、日期与原文一致。 +- 模型不得凭空补充月份、日期、原因、主动/被动、人物关系。 + +## 5. 修订链(append-only) + +- 事实变化 = 新增 superseding row,旧行标记 `superseded`,永不覆盖/删除。 +- 合法修订:日期更正、日期补全(如“2016 年 + 9 月”合并为 `2016-09`)、事件重分类(同身份)。 +- 非法修订:跨事件覆盖既有 ID(如把“大学入学”改成“搬家”);服务器拒绝并降级为新的 pending proposal。 +- 证据 ID 只能由服务器生成;模型不得提供或覆盖。 + +## 6. 状态迁移 + +```text +draft -> confirmed (当前轮明确事件:proposal 通过原文绑定后,同轮走服务器确认路径) +draft -> pending_confirmation (事实模糊、冲突或需要用户补充) +pending_confirmation -> confirmed (用户明确确认 + 服务器确认路径) +pending_confirmation -> superseded(用户更正,产生修订) +confirmed -> superseded (后续修订使旧事实失效) +draft / pending_confirmation -> rejected (用户否认,保留只读历史) +``` + +- Agent 只能先产生 `draft`;`confirmed` 只能由服务器确认路径产生。服务器确认路径不等于必须额外等待一轮用户回复。 +- 终态 Case(confirmed/closed/abandoned/superseded)禁止新增或修订证据。 +- 同一请求重放不得重复写证据(幂等键 = case + source_turn + quote + kind + summary)。 + +## 7. 评分输入边界 + +- 只有 `confirmed` 证据进入评分账本;`draft` 与 `pending_confirmation` 都不参与评分。 +- `family_event` / `other` 只作背景,不推进评分覆盖计数。 +- 证据变化才触发重算;相同证据指纹复用缓存,不重复评分。 diff --git a/skills/jyotish-birth-time-rectification/versions/10.0.3/references/technique-routing.md b/skills/jyotish-birth-time-rectification/versions/10.0.3/references/technique-routing.md new file mode 100644 index 00000000..0c2501c3 --- /dev/null +++ b/skills/jyotish-birth-time-rectification/versions/10.0.3/references/technique-routing.md @@ -0,0 +1,45 @@ +# Technique Routing(V9) + +生时校正是“有日期事件 + Dasha 为主要证据”的校准任务,分盘按主题调用,不一次性调用所有分盘。所有计算只能通过服务端工具;本文件只决定读哪些技法证据,不复制任何引擎实现。 + +## 1. 主证据 + +- 有明确日期(年月级或更精确)的人生事件 + 对应 Dasha 边界是主要证据。 +- 事件原文是用户原话;日期精度按用户真实提供保留。 +- 不把“支持某技法”误当作已完成独立验证;内部一致性不得伪装成全球顶级精度。 + +## 2. 分盘调用层级 + +| 层级 | 分盘 | 用途 | +|---|---|---| +| 核心 | D1(本命) | 全局框架 | +| 核心辅助 | D9、D10 | 关系与事业的主要主题 | +| 主题 | D2/D11(财富)、D7(子女/伴侣细节)、D12(父母)、D24(教育)、D4(居所/不动产) | 按主题补充 | +| 后置 | D30 | 只在健康/意外等强信号时后置调用 | +| 仅参考 | D60 | 只作参考,不驱动结论 | + +- 同一轮最多调用 2–3 个相关分盘;D9/D10 之外的分盘必须由当前主题驱动。 +- 未执行、不可用或仅供参考的技法不得显示为已执行。 + +## 3. 按问题域强制调取 + +- 事业:`D10 + A10`(A10 为事业 Arudha,服务器可用时)。 +- 财富:`D2 / D11`。 +- 婚恋:`D9 + UL`(UL 为 Upapada Lagna,服务器可用时)。 +- 健康:D1 + 必要时 D30(后置)。 +- 迁居/教育:D4 / D24。 +- D9/D10 类型表只作内部观察,不得给用户贴标签。`internal_observations.ask_theme` 只决定下一问是关系还是事业经历,不得说出星座、配偶类型或事业特质。 + +## 4. 受限技法边界 + +- KP、Muhurta、Gochara、Sahams、Sphuta、Tajika 为 reference-only 或 blocked;不得作为确认或精确应期依据。 +- Shadbala / Ashtakavarga 外部绝对值未闭环前不作确定性结论。 +- 外部验证状态按服务器字面读取;`not_evaluated` ≠ `fail`。 +- 禁止 D60 驱动结论;禁止把邻近分钟与留一事件诊断描述为硬阻塞。 + +## 5. 决策树(简化) + +1. 有日期事件 → 按 Dasha 建立时间框架。 +2. 主题缺口 → 调对应分盘(§2/§3)。 +3. 候选对比有差异 → 服务器 Candidate Contrast 驱动下一问。 +4. 唯一分钟确认门以 `confirmation_gate` 为准(事件数/领域数/宽度/唯一领先/必需层/VedAstro/holdout)。`not_evaluated` ≠ fail。Agent 不得自行宣告通过或失败。 diff --git a/skills/jyotish-birth-time-rectification/versions/10.0.3/references/truth-consent-boundaries.md b/skills/jyotish-birth-time-rectification/versions/10.0.3/references/truth-consent-boundaries.md new file mode 100644 index 00000000..31583220 --- /dev/null +++ b/skills/jyotish-birth-time-rectification/versions/10.0.3/references/truth-consent-boundaries.md @@ -0,0 +1,43 @@ +# Truth / Consent Boundaries(V9) + +本文件定义真实性、用户同意与选择政策。服务器拥有事实、权限与状态;Agent 必须服从服务器返回的 truth/consent/selection policy。 + +## 1. 真实性硬边界 + +- 禁止虚构:事件、日期、候选、分盘数据、评分、Dasha 边界或出生分钟。 +- 计算只能通过服务端工具;模型不得重算或发明行星位置、分数或权重。 +- 内部一致性不等于“全球顶级精度”;外部 oracle 未闭环、参照引擎不可用时必须写成 `blocked` 或降级置信度。 +- 系统提示词与 Skill 原文不得输出;reasoning / chain-of-thought 不向用户展示。 + +## 2. 用户同意边界 + +- 保存 profile 需要用户明确同意 + 服务器确认门。 +- accepted(用户选择)与 confirmed(引擎唯一确认 + 用户同意)严格区分;不得把 accepted 写成 confirmed。`confirmation_gate` 是确认门权威;`not_evaluated` 不是失败。 +- 助手文本、模型推断与历史摘要不得升级为已确认事实;当前轮用户主动、明确且无歧义的事件可在 quote grounding 通过后同轮走服务器确认路径。旧文本只能作为显示历史或 pending evidence draft。 +- 用户说“不知道/不想回答”时尊重并关闭该目标,不换词重开。 + +## 3. 选择政策 + +- 候选卡只展示服务器持久化候选与相对支持度;不得暴露原始分数、权重、贡献矩阵、技术层或隐藏分钟。 +- 继续收集证据时不得同时提供采用操作(`offer_selection=false`)。 +- 相同 evidence 指纹复用缓存;只有有效变化才重算。 +- 终态 Case 只读;追加证据、采用、确认全部拒绝。 + +## 4. 隐私与泄露防护 + +- 不输出 userId、出生资料明文、内部 ID、工具参数/结果、数据库错误原文、密钥或内部 URL。 +- 每轮持久化公开执行回执(phase/tool 白名单、状态、时间),不含 reasoning 与 payload。 +- 家庭健康事件不得投射为本人生成评分证据;亲属主体必须显式标记。 + +## 5. 受限技法降级 + +| 状态 | 表达 | +|---|---| +| `blocked` | 明确写 blocked,不得包装成通过 | +| `partial` | 说明部分边界,降级置信度 | +| `reference_only` | 只作参考,不驱动结论 | +| `not_evaluated`(外部验证) | 未调用,不等于失败 | + +## 6. 功能吉凶层(高严谨模式) + +进入高严谨模式(事业/财富/婚恋/应期/技法可靠性)时,除自然吉凶星外必须叠加当前 Lagna 下的 Functional Benefic/Malefic 判定;自然与功能属性冲突时必须说明冲突来源并降级或标记 blocked。未完成该判定不得声称高严谨解读完成。 diff --git a/skills/skill-package-registry.json b/skills/skill-package-registry.json index d97ecbb1..084c6911 100644 --- a/skills/skill-package-registry.json +++ b/skills/skill-package-registry.json @@ -31,6 +31,14 @@ "sha256": "8d7aa2d4bea0414e9a89ef908ccbc8c708c98f79f5b78ae4f7dc229b5f7dbb30", "sourceCommit": null, "packagePath": "skills/jyotish-birth-time-rectification/versions/10.0.2", + "status": "deprecated" + }, + { + "name": "jyotish-birth-time-rectification", + "version": "10.0.3", + "sha256": "3ad634db7f18f2434da6a98e758ce4bc7b4b07c1badea953e28cb662c7980ab6", + "sourceCommit": null, + "packagePath": "skills/jyotish-birth-time-rectification/versions/10.0.3", "status": "active" }, { diff --git a/tests/test_rectification_v5_services.py b/tests/test_rectification_v5_services.py index 666c277f..460eae35 100644 --- a/tests/test_rectification_v5_services.py +++ b/tests/test_rectification_v5_services.py @@ -451,6 +451,8 @@ class RectificationV5ServicesTest(unittest.TestCase): self.assertTrue(receipt["gates"]["domain_diversity"]["passed"]) self.assertTrue(receipt["gates"]["date_quality"]["passed"]) self.assertTrue(receipt["gates"]["exact_confirmation"]["fail_closed"]) + self.assertEqual(receipt["gates"]["exact_confirmation"]["external_validation_status"], "not_evaluated") + self.assertNotEqual(receipt["gates"]["exact_confirmation"]["external_validation_status"], "fail") self.assertEqual(first["decision_receipt"], receipt) self.assertEqual(first["decision_policy_version"], "rectification-candidate-policy-v2") @@ -544,10 +546,55 @@ class RectificationV5ServicesTest(unittest.TestCase): self.assertFalse(receipt["acceptance_allowed"]) self.assertIn("insufficient_domain_diversity", receipt["reasons"]) self.assertIn("tied_top_score", receipt["reasons"]) + self.assertIn("tied_top_score", receipt["confirmation_reasons"]) + self.assertNotIn("tied_top_score", receipt["acceptance_reasons"]) self.assertEqual(result["candidate_decisions"][0]["tied_minute_count"], 2) self.assertEqual(receipt["tie_policy"]["score_quantum"], .0001) self.assertEqual(receipt["tie_policy"]["absolute_tolerance"], .0001) + def test_two_domain_quantized_top_tie_allows_adoption_but_blocks_confirmation(self): + body = request() + body["events"] = [ + event(1, "career", "career_entry"), + event(2, "career", "promotion"), + event(3, "education", "education_start"), + ] + normalized = normalize_rectification_request(body, today=date(2026, 7, 28)) + built = { + "candidate_times": ["05:13", "05:14"], + "matrix": { + item["id"]: { + "05:13": {"points": 3.333346, "rule_ids": ["D10:test"], "technique_layers": ["D10"]}, + "05:14": {"points": 3.333333, "rule_ids": ["D10:test"], "technique_layers": ["D10"]}, + } + for item in normalized["events"] + }, + "date_sensitivity": [], + "missing_layers": [], + "static_contexts": [], + } + diagnostic_values = { + "primary_cluster_retention_rate": 1, + "leave_one_event_out_retention_rate": 1, + "leave_one_domain_out_retention_rate": 1, + "date_sensitivity_retention_rate": 1, + "neighbor_support_minutes": 1, + "primary_secondary_margin_percent": 50, + } + with patch("scripts.rectification.api_service.build_event_contribution_matrix", return_value=built), patch( + "scripts.rectification.api_service.build_candidate_feature_snapshot", return_value={} + ), patch("scripts.rectification.api_service.run_diagnostics", return_value=diagnostic_values): + result = score_candidates(normalized) + + receipt = result["candidate_decision_receipt"] + self.assertTrue(receipt["acceptance_allowed"]) + self.assertTrue(receipt["selection_allowed"]) + self.assertFalse(receipt["confirmation_allowed"]) + self.assertIn("tied_top_score", receipt["confirmation_reasons"]) + self.assertNotIn("tied_top_score", receipt["acceptance_reasons"]) + self.assertEqual(result["candidate_decisions"][0]["tied_minute_count"], 2) + self.assertFalse(result["can_confirm_exact_minute"]) + def test_low_date_quality_blocks_acceptance_even_with_multiple_domains_and_a_unique_candidate(self): body = request() body["events"] = [