AI agent skills for flutter-tizen. This skill set, maintained by the Flutter-Tizen team, provides guidelines designed for common workflows in Flutter app development for Tizen.
Provides Tizen-specific skills. Use with flutter/agent-plugins for general Flutter development.
| Skill | Description |
|---|---|
| flutter-tizen-setup | Install and verify Tizen SDK toolchain |
| flutter-tizen-build-tpk | Build, sign, and inspect TPK packages |
| flutter-tizen-device | Connect devices via sdb, run apps, filter dlog |
| flutter-tizen-tv-remote-input | Handle D-pad focus and remote key input |
| flutter-tizen-use-plugins | Use *_tizen plugins with privilege declarations |
| flutter-tizen-integration-test | Run integration_test suites on devices and emulators |
| flutter-tizen-create-plugin | Create C++ native plugins with method channels |
| Skill | Description |
|---|---|
| flutter-tizen-plugin-regression-test | Run regression tests for flutter-tizen plugins |
| flutter-tizen-plugin-integration-test-update | Update integration test cases for flutter-tizen plugins |
Skills are opt-in — an agent loads one only when the task matches its description. The
flutter → flutter-tizen substitution has to hold for every task in a Tizen project, including
tasks handled by a general Flutter skill from flutter/agent-plugins,
so it ships as an always-on rule instead:
| Rule | Applies to |
|---|---|
| rules/flutter_tizen_cli.md | *.dart, pubspec.yaml, tizen-manifest.xml |
Installation is manual — npx skills add copies skills only. For Cursor, copy the .mdc twin
rules/flutter_tizen_cli.mdc into .cursor/rules/. For agents driven by
an instruction file (Claude Code's CLAUDE.md, AGENTS.md, GEMINI.md), paste the rule body in or
reference the file from it; there is no rules directory those agents load on their own.
# Install all skills
npx skills add flutter-tizen/skills --skill '*' --agent universal
# Install specific skills
npx skills add flutter-tizen/skills --skill flutter-tizen-setup,flutter-tizen-build-tpk
# Global install
npx skills add flutter-tizen/skills --skill '*' --global
# Update
npx skills updateFor manual install, copy or symlink skills/flutter-tizen-*/ folders to your target directory.
# Lint
cd tool/dart_skills_lint
dart run bin/cli.dart -d ../../skills
# Regenerate SKILL.md (requires GEMINI_API_KEY)
dart run tool/generator/bin/skills.dart generate-skill \
resources/flutter_tizen_skills.yaml \
--directory skillsNote: The
tool/directory (skill generator and linter) is sourced from flutter/agent-plugins and kept in sync with its upstream updates.