-
Notifications
You must be signed in to change notification settings - Fork 154
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
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, MCP server configuration, and rules 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 [Dart skills](https://github.com/dart-lang/skills) for Dart tasks. | ||
|
|
||
| ## 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 | ||
| ``` | ||
|
|
||
| ## 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
Collaborator
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. Do we need a updating plugins section? AFAIK, the agent updates the plugins when there are new releases.
Collaborator
Author
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. Same comment as above, I think we need to circle back and update these again once we publish the plugins to the various marketplaces. |
||
|
|
||
| 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.
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)
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.
I don't think we're ready to publish installation instructions for plugins. We have sort of a chicken-and-the-egg problem here. If we don't make this change, we can't publish the plugins from the right repo, and if we add the plugin instructions first, users won't be able to follow them, because they haven't been published yet.