Agent Skills
› keychat-io/keychat-app
› test
test
GitHub用于执行 Keychat 项目的测试任务。支持运行全部、仅 Flutter 或仅 Dart 测试,也可指定具体文件路径进行测试,并清晰报告测试结果。
Trigger Scenarios
用户要求运行项目测试
用户要求检查代码质量或回归测试
用户指定了特定的测试文件或包
Install
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
Version History
- 294d00d Current 2026-07-05 10:51


