From f997fc346552e93e977fe88a7efe854528c2a311 Mon Sep 17 00:00:00 2001 From: Yichen Yan Date: Sat, 25 Apr 2026 23:28:31 +0800 Subject: [PATCH] improve build skill description to be directive and trigger-based The previous description was passive ('Use when working in the tilelang repository and the correct commands are needed...'), which AI agents interpret as optional background info and skip it when they already know cmake commands from prior context. The new description uses MUST/ALWAYS trigger words so agents load the skill before any build operation, especially after rebase or dependency changes where cached build knowledge may be stale. --- .agents/skills/tilelang-build/SKILL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.agents/skills/tilelang-build/SKILL.md b/.agents/skills/tilelang-build/SKILL.md index f474736fc1..86a3117839 100644 --- a/.agents/skills/tilelang-build/SKILL.md +++ b/.agents/skills/tilelang-build/SKILL.md @@ -1,6 +1,6 @@ --- -name: tilelang-build -description: Repository-specific build, rebuild, install, and test instructions for tilelang. Use when working in the tilelang repository and the correct commands are needed for building from source, reinstalling after changes, or running project tests. +name: build +description: "MUST load before any build, install, cmake, pip, or test operation in tilelang. Defines canonical build methods (pip install, cmake dev, editable-install ban) and test commands. ALWAYS re-read after rebase, merge, or dependency changes." --- # Build & Install