AI Agent Hub
Back to skills
Tencent Yuanbao Gaokao Regional Passing Scores icon

Tencent Yuanbao Gaokao Regional Passing Scores

Education Updated 2026.08.29

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

Please follow https://skillhub.cn/install/skillhub.md and install @tencent-adm/province-score-line.

About this skill

Problem

Gaokao score-line questions are often hard to parse. Users may ask for “Shanghai, last three years, physics track, undergraduate batch” or omit the year, batch, and subject. The skill focuses on turning a natural-language query into structured lookup parameters before fetching results.

How It Works

  • Place extraction: matches provinces against place.json, supports aliases and tolerant matching, such as turning “Minnan” into Fujian, and asks for the province when unclear.
  • Year and subject track: resolves explicit or relative years, then infers the exam mode from place and year: traditional arts/science, 3+3, or 3+1+2. It maps terms like “science track” to physics or comprehensive where appropriate.
  • Batch matching: reads luqupici_summary.json and matches admission batches; if only “undergraduate” is given, it expands to candidate batches such as general, arts, special programs, and sports.
  • Query and answer: calls fetch_data.py, filters the returned data against the user's intent, and gives a concise answer.

Boundaries

It fits questions like “score line for a province, year, subject track, and batch.” If key parameters are missing, it may ask a follow-up question or omit the corresponding field. It is not a substitute for final admissions policy advice, detailed major comparison, or real-time regulatory interpretation.

Use Cases

  • When a student asks for a province's physics undergraduate general score line, extract place, year, and subject track, then call the data script.
  • When a parent asks for Henan's arts undergraduate scores in recent years, map the arts term to history or comprehensive based on exam mode.
  • When a query contains Sichuan physics associate scores, match the batch list and filter the returned data to the relevant associate batches.
  • When a user only says Guangdong undergraduate, expand candidate undergraduate batches such as general and arts, then fetch score data.

Best For

  • College application advisors: need to convert a student's spoken province, track, and batch into queryable score-line conditions.
  • Education data engineers: need to validate natural-language mapping to place, year, and subject-track fields.
  • Admissions consultants: need to answer province-year-subject undergraduate or associate score-line questions quickly.
  • AI application developers: need a gaokao score-line query branch in assistant workflows.