run
2
总安装量
1
周安装量
#71018
全站排名
安装命令
npx skills add https://github.com/keychat-io/keychat-app --skill run
Agent 安装分布
mcpjam
1
claude-code
1
replit
1
junie
1
windsurf
1
zencoder
1
Skill 文档
Run the Keychat app on a device or simulator.
Arguments
$ARGUMENTS– Optional: device ID to run on
Workflow
-
First list available devices:
flutter devices -
If
$ARGUMENTSis provided, run on that device:cd packages/app && flutter run -d $ARGUMENTS -
If no device specified:
- If only one device is available, use it
- If multiple devices, show the list and ask user to specify
Alternative entry points
The app has multiple entry points for different environments:
lib/main.dart– Productionlib/main_dev1.dart– Development 1lib/main_dev2.dart– Development 2lib/main_dev3.dart– Development 3
To run with a specific entry point:
cd packages/app && flutter run -d <device> -t lib/main_dev1.dart