一键导入
building-services
This skill should be used when designing building MEP systems including HVAC, plumbing, electrical, fire protection, and system integration.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
This skill should be used when designing building MEP systems including HVAC, plumbing, electrical, fire protection, and system integration.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
This skill should be used whenever producing a consulting answer or authoring/editing a knowledge-base skill, to control how facts are sourced and how uncertainty is expressed: it defines the source-control iron rule (never infer un-transcribed numeric values from general practice), the three certainty labels (Verified / Secondary / Unverified), the ERROR/WARNING/INFO check-output convention, the To-Verify section format, and the tone rules that prevent confidently-wrong output.
This skill should be used when a contributor wants to submit a new skill, edit an existing skill, or make any change to the Taiwan Architect KB repository. It guides the full lifecycle: clone/fetch, branch, create/edit, self-validate, and submit PR.
This skill should be used when checking stair dimensional compliance for buildings in Taiwan — minimum stair-and-landing width, riser height, tread depth by building-use category, and the critical handrail-encroachment rule (clear width must remain >= 75 cm regardless of handrails), per Taiwan Building Technical Regulations (Design & Construction) Article 33, Chapter 2 Section 7 (Stairs, Railings, Ramps, Articles 33-39). Railings (Art. 38), handrails (Art. 37) and ramps (Art. 39) are stubbed for later completion.
This skill should be used when an architect receives just an address or lot number (地號) for a site in Taichung City, Taiwan, and needs to quickly understand the land's basic data — zoning, registered land area, land value, building numbers and permits, building overlay/footprint status, urban planning land-use regulations, geological hazard zones, slope-land restrictions, fire-break setback zones, active fault distances, and sewer connection announcements — while also getting a head start on the official PDF certificates commonly needed as supporting documents for a later building permit application. Trigger scenarios: evaluating site feasibility right after receiving an address/lot number, checking land-use restrictions and pre-gathering supporting documents before a permit application, due diligence before a real-estate transaction, or converting a Taichung street address to its lot number. Taichung City only — does not work for other Taiwan counties/cities.
This skill should be used when architects or project teams need to query, organize, compare, or source-check Taiwan public works quality-management references, inspection forms, supervision references, traffic-maintenance references, occupational safety references, PCIC construction specifications, and public works checklist sources.
This skill should be used when verifying CNS (Chinese National Standards) on public engineering drawings or querying PCC (Public Construction Commission) guide specifications.
| name | building-services |
| description | This skill should be used when designing building MEP systems including HVAC, plumbing, electrical, fire protection, and system integration. |
| metadata | {"class":"B"} |
專業建築機電系統設計技能,涵蓋空調、給排水、電氣、弱電、消防等系統整合。
interface BuildingServicesParams {
// 建築條件
buildingType: string;
floorArea: number;
roomSchedule: Room[];
// 空調系統
hvacSystem: 'VRF' | 'AHU' | 'FCU' | 'Chiller' | 'DistrictCooling';
coolingLoad: number; // W
heatingLoad: number; // W
// 給排水
plumbingFixtures: Fixture[];
waterDemand: number; // Liter/day
sewageSystem: string;
// 電氣系統
electricalLoad: number; // kVA
powerDistribution: string;
emergencyPower: boolean;
// 弱電系統
lowVoltageSystems: string[]; // 網路、監控、防火警報
// 消防系統
fireProtection: FireSystem[];
// TODO: 台灣機電法規參數
taiwanCodes: {
fireCode: string; // TODO: 各類場所消防安全設備設置標準
elecCode: string; // TODO: 用戶用電設備規程
plumbingCode: string; // TODO: 建筑技術設備編
};
}
calculateCoolingLoad(room) - 冷負載計算calculateHeatingLoad(room) - 熱負載計算sizeDuct(flow, velocity) - 風管尺寸計算sizePipe(flow, pressure) - 水管尺寸計算calculatePanelLoad(circuits) - 電盤負載計算checkEquipmentSpace(requirements) - TODO: 台灣機房空間法規檢查