ソース情報
- リポジトリ
- rodydavis/skills
- ソースの最終更新活動
- 2026年1月27日 19:53
- 検出された SKILL.md の言語
- 英語
- スター
- 60
- フォーク
- 5
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/rodydavis/skills --skill install-flutter-from-gitコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Guidelines and rules for managing the user's dotfiles repository, config files, and installation scripts.
Guide to bootstrap, coordinate, and maintain a headless Flutter engine integrated with 100% native platforms (SwiftUI, Jetpack Compose, HTML5 Web Components).
Learn how to host PocketBase and an Astro SSR application on the same server, using PocketBase's Go integration and a reverse proxy to delegate requests to Astro for dynamic web content.
SOC 職業分類に基づく
SKILL.md を表示中
| name | install-flutter-from-git |
| description | Install Flutter SDK via git clone and configure for all platforms |
This skill guides you through installing the Flutter SDK using git clone and setting up the environment for Web, Mobile, and Desktop development.
Ensure you have the following installed:
Open your terminal and run the following commands to clone the stable branch of the Flutter SDK.
# Create a directory for development (e.g., ~/development)
mkdir -p ~/development
cd ~/development
# Clone the Flutter SDK
git clone https://github.com/flutter/flutter.git -b stable
Open PowerShell or Command Prompt.
# Create a directory for development (e.g., C:\src)
mkdir C:\src
cd C:\src
# Clone the Flutter SDK
git clone https://github.com/flutter/flutter.git -b stable
To run flutter commands from any terminal, you must add the SDK's bin directory to your PATH.
Open your shell configuration file (e.g., ~/.zshrc, ~/.bashrc, or ~/.zshenv).
Add the following line (replace ~/development/flutter with your actual path):
export PATH="$PATH:$HOME/development/flutter/bin"
Refresh your current terminal:
source ~/.zshrc # or ~/.bashrc
Win + S, type "env", and select Edit the system environment variables.flutter\bin (e.g., C:\src\flutter\bin).Run the following command to check for missing dependencies:
flutter doctor
flutter config --enable-web
flutter devices to see "Chrome" listed.sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -runFirstLaunch
sudo gem install cocoapods
open -a Simulator.flutter doctor --android-licenses
(Press y to accept all licences).flutter config --enable-macos-desktop
flutter config --enable-windows-desktop
sudo apt-get update
sudo apt-get install clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev
flutter config --enable-linux-desktop
Run flutter doctor again to ensure all desired platforms have checkmarks.
flutter doctor -v