Agent skill
manufacturing-failure-reason-codebook-normalization
This skill should be considered when you need to normalize testing engineers' written defect reasons following the provided product codebooks. This skill will correct the typos, misused abbreviations, ambiguous descriptions, mixed Chinese-English text or misleading text and provide explanations. This skill will do segmentation, semantic matching, confidence calibration and station validation.
Install this agent skill to your Project
npx add-skill https://github.com/benchflow-ai/skillsbench/tree/main/tasks/manufacturing-codebook-normalization/environment/skills/manufacturing-failure-reason-codebook-normalization
SKILL.md
This skill should be considered when you need to normalize, standardize, or correct testing engineers' written failure reasons to match the requirements provided in the product codebooks. Common errors in engineer-written reasons include ambiguous descriptions, missing important words, improper personal writing habits, using wrong abbreviations, improper combining multiple reasons into one sentence without clear spacing or in wrong order, writing wrong station names or model, writing typos, improper combining Chinese and English characters, cross-project differences, and taking wrong products' codebook.
Some codes are defined for specific stations and cannot be used by other stations. If entry.stations is not None, the predicted code should only be considered valid when the record station matches one of the stations listed in entry.stations. Otherwise, the code should be rejected. For each record segment, the system evaluates candidate codes defined in the corresponding product codebook and computes an internal matching score for each candidate. You should consider multiple evidence sources to calculate the score to measure how well a candidate code explains the segment, and normalize the score to a stable range [0.0, 1.0]. Evidence can include text evidence from raw_reason_text (e.g., overlap or fuzzy similarity between span_text and codebook text such as standard_label, keywords_examples, or categories), station compatibility, fail_code alignment, test_item alignment, and conflict cues such as mutually exclusive or contradictory signals. After all candidate codes are scored, sort them in descending order. Let c1 be the top candidate with score s1 and c2 be the second candidate with score s2. When multiple candidates fall within a small margin of the best score, the system applies a deterministic tie-break based on record context (e.g., record_id, segment index, station, fail_code, test_item) to avoid always choosing the same code in near-tie cases while keeping outputs reproducible. To provide convincing answers, add station, fail_code, test_item, a short token overlap cue, or a component reference to the rationale.
UNKNOWN handling: UNKNOWN should be decided based on the best match only (i.e., after ranking), not by marking multiple candidates. If the best-match score is low (weak evidence), output pred_code="UNKNOWN" and pred_label="" to give engineering an alert. When strong positive cues exist (e.g., clear component references), UNKNOWN should be less frequent than in generic or noisy segments.
Confidence calibration: confidence ranges from 0.0 to 1.0 and reflects an engineering confidence level (not a probability). Calibrate confidence from match quality so that UNKNOWN predictions are generally less confident than non-UNKNOWN predictions, and confidence values are not nearly constant. Confidence should show distribution-level separation between UNKNOWN and non-UNKNOWN predictions (e.g., means, quantiles, and diversity), and should be weakly aligned with evidence strength; round confidence to 4 decimals.
Here is a pipeline reference
- Load test_center_logs.csv into logs_rows and load each product codebook; build valid_code_set, station_scope_map, and CodebookEntry objects.
- For each record, split raw_reason_text into 1–N segments; each segment uses segment_id=<record_id>-S and keeps an exact substring as span_text.
- For each segment, filter candidates by station scope, then compute match score from combined evidence (text evidence, station compatibility, context alignment, and conflict cues).
- Rank candidates by score; if multiple are within a small margin of the best, choose deterministically using a context-dependent tie-break among near-best station-compatible candidates.
- Output exactly one pred_code/pred_label per segment from the product codebook (or UNKNOWN/"" when best evidence is weak) and compute confidence by calibrating match quality with sufficient diversity; round to 4 decimals.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
csv-processing
Use this skill when reading sensor data from CSV files, writing simulation results to CSV, processing time-series data with pandas, or handling missing values in datasets.
pid-controller
Use this skill when implementing PID control loops for adaptive cruise control, vehicle speed regulation, throttle/brake management, or any feedback control system requiring proportional-integral-derivative control.
yaml-config
Use this skill when reading or writing YAML configuration files, loading vehicle parameters, or handling config file parsing with proper error handling.
simulation-metrics
Use this skill when calculating control system performance metrics such as rise time, overshoot percentage, steady-state error, or settling time for evaluating simulation results.
vehicle-dynamics
Use this skill when simulating vehicle motion, calculating safe following distances, time-to-collision, speed/position updates, or implementing vehicle state machines for cruise control modes.
web-interface-guidelines
Vercel's comprehensive UI guidelines for building accessible, performant web interfaces. Use this skill when reviewing or building UI components for compliance with best practices around accessibility, performance, animations, and visual stability.
Didn't find tool you were looking for?