-
Notifications
You must be signed in to change notification settings - Fork 153
Rename to flutter/agent-plugins #171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,23 +1,24 @@ | ||
| # Flutter Agent Skills | ||
| # Flutter Agent Plugins | ||
|
|
||
| Agent skills for Flutter, maintained by the Flutter team. | ||
| A collection of skills providing tailored instructions for happy path Flutter app development workflows. By giving the agent actual domain expertise and repeatable workflows, you drastically reduce mistakes and ensure agents reliably complete the task following best practices. | ||
| Agent plugins for Flutter, maintained by the Flutter team. | ||
|
|
||
| Skills are essentially simple folders of files that can be seen as complementary to MCP, where MCP gives an agent access to specialized tools and a Skill teaches the agent “how” to use tools for a specific task. | ||
| A collection of plugins designed to extend AI agent capabilities for Flutter development. These plugins bundle together skills, subagents, rules, and configurations to provide tailored workflows and instructions for happy path Flutter development. By giving the agent domain expertise and repeatable workflows, you drastically reduce mistakes and ensure agents reliably complete tasks following best practices. | ||
|
|
||
| You can also install the [Agent Skills for Dart](https://github.com/dart-lang/skills) for Dart tasks. | ||
| Plugins can package various customizations together. A key component of these plugins is **Agent Skills**, which are simple folders of files that can be seen as complementary to MCP: where MCP gives an agent access to specialized tools, a Skill teaches the agent “how” to use tools for a specific task. | ||
|
|
||
| You can also install the [Agent Plugins for Dart](https://github.com/dart-lang/skills) for Dart tasks. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this link actually be pointing to "skills" instead of "agent plugins for dart"? |
||
|
|
||
| ## Installation | ||
|
|
||
| To install all skills into your project, run the following command. | ||
| The `--agent universal` flag puts it in the standard `.agents/skills` | ||
| To install the plugins into your project, run the following command. | ||
| The `--agent universal` flag puts them in the standard `.agents/skills` | ||
| folder that most agents use. | ||
|
|
||
| ```bash | ||
| npx skills add flutter/skills --skill '*' --agent universal --yes | ||
| npx skills add flutter/agent-plugins --skill '*' --agent universal --yes | ||
|
Comment on lines
+13
to
+18
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this looks incorrect and the whole section should probably be rewritten to have install steps for each plugin. And for standalone skill install via npx skills (and eventually through package:skills) |
||
| ``` | ||
|
|
||
| ## Updating Skills | ||
| ## Updating Plugins | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this section is probably also obsolete now and needs to be updated |
||
|
|
||
| To update, run the following command: | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should the MCP server be mentioned here?