Agent Skills
› keychat-io/keychat-app
› test
test
GitHub用于运行 Keychat 项目的测试。支持执行全部测试、仅 Flutter/Dart 测试或指定文件,根据参数自动选择命令并清晰报告结果。
触发场景
用户要求运行项目测试
用户询问测试结果
用户指定测试文件或包名
安装
npx skills add keychat-io/keychat-app --skill test -g -y
SKILL.md
Frontmatter
{
"name": "test",
"description": "Run tests for Keychat packages",
"allowed-tools": "Bash(melos *), Bash(flutter test *)",
"argument-hint": "[test-file|package]",
"disable-model-invocation": true
}
Run tests for the Keychat project.
Arguments
$ARGUMENTS- Optional: specific test file path or package name
Test Commands
Run all tests
melos run test:all
Run Flutter tests only
melos run test:flutter
Run Dart tests only
melos run test:dart
Run a specific test file
cd packages/app
flutter test $ARGUMENTS
Workflow
- If no arguments provided, run
melos run test:all - If a file path is provided (ends with
.dart), run that specific test - Report test results clearly, including any failures
版本历史
- 294d00d 当前 2026-07-05 10:51


