Rename to flutter/agent-plugins#171
Conversation
There was a problem hiding this comment.
Code Review
This pull request rebrands the repository and its components from 'Flutter Agent Skills' to 'Flutter Agent Plugins'. It updates documentation, installation scripts, configuration files, and tests to replace references to the old repository name (flutter/skills) with the new one (flutter/agent-plugins), while also clarifying the relationship between plugins and skills in the README. I have no feedback to provide as there are no review comments.
| 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. |
There was a problem hiding this comment.
should the MCP server be mentioned here?
| 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. |
There was a problem hiding this comment.
Should this link actually be pointing to "skills" instead of "agent plugins for dart"?
| 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 |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
this section is probably also obsolete now and needs to be updated
This updates the README and any references to flutter/skills to point to flutter/agent-plugins.
Once this lands, I will rename the repo.
The website docs are being updated here: flutter/website#13568