feat(product): present consult and rectification in local skill form
Independent Staging Quality Gate / validate (push) Failing after 6m42s
Independent Staging Quality Gate / publish (push) Has been skipped

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>
This commit is contained in:
Jesse_Chen
2026-08-20 21:42:47 +08:00
co-authored by Cursor
parent f8569c5c65
commit 8010245981
83 changed files with 2881 additions and 270 deletions
@@ -98,7 +98,7 @@ class RectificationDiagnosticsClustersTest(unittest.TestCase):
self.assertEqual(result["candidate_splits"][0]["technique_layers"], ["D24"])
self.assertEqual(result["candidate_splits"][0]["event_ids"], [separating_event])
def test_window_scan_reports_d9_diversity_without_sign_names(self):
def test_window_scan_reports_d9_diversity_with_sign_names(self):
built = {
"date_sensitivity": [],
"matrix": {},
@@ -122,10 +122,11 @@ class RectificationDiagnosticsClustersTest(unittest.TestCase):
"user_meaning": "D9 在 05:14 发生变化",
}])
encoded = str(scan)
self.assertNotIn("白羊", encoded)
self.assertNotIn("天蝎", encoded)
self.assertIn("金牛座", encoded)
self.assertIn("天蝎", encoded)
self.assertNotIn("Aries", encoded)
self.assertNotIn("Scorpio", encoded)
self.assertFalse(scan["unique_minute_claim"])
if __name__ == "__main__":