Agent Skills
› TangleML/tangle-ui
› validate
validate
GitHub提供项目验证与测试命令,支持代码格式化、Lint、类型检查及单元测试/E2E测试。适用于提交前校验或运行完整测试套件。
Trigger Scenarios
用户请求验证代码
用户要求运行测试
用户提及 lint 或 typecheck
Install
npx skills add TangleML/tangle-ui --skill validate -g -y
SKILL.md
Frontmatter
{
"name": "validate",
"description": "Run validation and testing commands for the project. Use when the user asks to validate, lint, typecheck, or run tests.",
"allowed-tools": "Bash(pnpm run *), Bash(pnpm test*)",
"argument-hint": [
"test|e2e"
],
"disable-model-invocation": true
}
Validate & Test
Run project validation and testing commands.
Available Commands
pnpm run validate- Runs format, lint:fix, typecheck, and knip (use before committing)pnpm run validate:test- Runs validate + unit tests (full validation)pnpm run test:e2e- Runs Playwright E2E tests
Usage
/validate— Runpnpm run validate/validate test— Runpnpm run validate:test/validate e2e— Runpnpm run test:e2e
Local Development Ports
- Frontend:
localhost:3000(default forpnpm start) - Backend API:
localhost:8000 - API Docs:
localhost:8000/docs
Version History
- d7768e8 Current 2026-09-02 20:59


