Release v1.3.3#50
Merged
Merged
Conversation
added 2 commits
April 2, 2026 20:52
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
[v1.3.3] — 2026-04-05
Added
src/ticket_assigner.py): The ticket assigner now records per-assignment scoring breakdowns (skill, stress, centrality, composite) into a MongoDBassignment_scorescollection for downstream analysis.src/utils/persona_utils.py): Added aDEPARTMENT_EXPERTISE_DEFAULTSmap so personas without explicit expertise lists fall back to sensible department-level defaults rather than a generic "general engineering" placeholder.config/config.yaml):org_lifecycledeparture entries now include adeptfield, making ownership handoff tracking more precise during engineer exits.eval/export_to_hf.py): Added an--onlyCLI flag to selectively regenerate specific artifact types (nps,invoices,datadog) without a full corpus rebuild.Changed
src/ticket_assigner.py): On-call status is now passed dynamically into_compute_capacityvia anon_callparameter instead of being read from a static config key, keeping capacity calculations consistent with the runtime rotation.src/utils/persona_utils.py): Switched persona lookup fromPERSONAS.get(name, DEFAULT_PERSONA)toPERSONAS.get(name) or DEFAULT_PERSONAto correctly handle personas with falsy but present entries.Removed
eval/agentic_eval_harness.py): Removed the standalone agentic evaluation harness (2,676 lines). Evaluation logic is now consolidated elsewhere.EVAL.md,README.md): Removed theEVAL.mdfile and the corresponding Evaluation & Benchmarking section fromREADME.md. Evaluation documentation will be maintained separately.Fixed
tests/test_external_email.py): Refactored the customer email drop probability test to use a fully-specified source fixture and a mocked_derive_customer_email_signals, replacing the brittle direct_sourcesinjection.