AI Agent Hub
Back to skills
Yuanbao College Entrance Exam Regional Passing Score Query icon

Yuanbao College Entrance Exam Regional Passing Score Query

Education Updated 2026.08.30

Paste the following prompt into your AI chat to install this skill:

Install @tencent-adm/tencent-yuanbao-gaokao-regional-passing-scores by following https://skillhub.cn/install/skillhub.md.

About this skill

Problem

Regional college entrance exam score queries often contain ambiguous conditions. A user may ask for “Shanghai last year arts undergraduate” or “Fujian junior college,” but the backend expects normalized province, year, subject track, and admission batch. Direct keyword matching can miss aliases, city-to-province mapping, typo tolerance, subject-mode conversion, and batch expansion.

How It Works

The skill extracts four fields from the query: place, year, student, and luqupici.
- Place: matches the standard region against ./ref/place.json, supporting aliases such as “Fuzhou → Fujian” and “Gui → Guangxi.”
- Year: resolves explicit years or relative terms such as “this year” and “last year” into four-digit values; if absent, the field is omitted.
- Subject: uses the region and year to determine whether the province uses traditional liberal arts/sciences, 3+3, or 3+1+2, then maps terms such as “liberal arts” or “science” to the standard subject.
- Batch: matches admission batches against ./ref/luqupici_summary.json; if the user only says “undergraduate” or “junior college,” it expands to the relevant batch categories, and multiple batches are separated by spaces.
After extraction, it calls ./fetch_data.py to retrieve real data, keeps records consistent with the requested batch, and returns a concise answer.

Limits And Notes

This skill is useful for region-level passing score queries and query normalization. It may not cover every institution, major group, or enrollment plan detail. If key conditions such as region, subject, or batch are missing, the skill may ask a follow-up question or return a broader result set. Subject naming varies by province and year, so interpretations should be read together with the region, year, and batch.

Use Cases

  • During college application counseling, normalize 'Guangdong last year physics undergraduate' into place, year, subject, and batch before querying scores.
  • When a parent asks about 'Fujian this year junior college,' identify province and year and expand all junior college batch categories to avoid missing records.
  • While building a Gaokao Q&A service, map informal terms like 'MODO wen-shi' to Shanghai, the applicable subject track, and the four-digit year.
  • When validating query intent, check whether a request for 'undergraduate' expands into general, arts, sports, and other undergraduate batches.

Best For

  • College admissions counselors: need to convert verbal parent queries into standard place, year, subject, and batch before checking scores.
  • Education product engineers: need to normalize place, year, student, and batch in a Q&A pipeline before calling the data script.
  • Education data analysts: need to compare passing-score definitions across provinces, new-Gaokao start years, and admission batches.
  • Customer service operations: need to answer vague queries such as 'last year arts first tier' and expand undergraduate/junior college batches when needed.