Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dart-flutter",
"displayName": "Dart and Flutter",
"version": "1.0.4",
"version": "1.0.5",
"description": "Official Claude plugin for Dart and Flutter that installs Flutter/Dart Skills and Dart MCP server for building natively compiled, visually stunning applications for mobile, web, desktop, and embedded devices from a single codebase",
"author": {
"name": "Dart and Flutter",
Expand All @@ -14,5 +14,16 @@
"flutter",
"dart",
"mobile"
]
}
],
"mcpServers": {
"dart-mcp-server": {
"command": "dart",
"args": [
"mcp-server"
],
"env": {
"AGENT_PLUGIN": "claude-code"
}
}
}
}
Comment on lines +18 to +29

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The JSON file is missing a trailing newline at the end of the file. Adding a trailing newline is a standard practice that ensures compatibility with POSIX tools and avoids unnecessary git diff warnings.

Suggested change
"mcpServers": {
"dart-mcp-server": {
"command": "dart",
"args": [
"mcp-server"
],
"env": {
"AGENT_PLUGIN": "claude-code"
}
}
}
}
"mcpServers": {
"dart-mcp-server": {
"command": "dart",
"args": [
"mcp-server"
],
"env": {
"AGENT_PLUGIN": "claude-code"
}
}
}
}

16 changes: 13 additions & 3 deletions .codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dart-flutter",
"version": "1.0.4",
"version": "1.0.5",
"description": "Official Codex plugin for Dart and Flutter that installs Flutter/Dart Skills and Dart MCP server for building natively compiled, visually stunning applications for mobile, web, desktop, and embedded devices from a single codebase.",
"author": {
"name": "Dart and Flutter",
Expand All @@ -18,7 +18,17 @@
"mcp"
],
"skills": "./skills/",
"mcpServers": "./.mcp.json",
"mcpServers": {
"dart-mcp-server": {
"command": "dart",
"args": [
"mcp-server"
],
"env": {
"AGENT_PLUGIN": "codex"
}
}
},
"interface": {
"displayName": "Dart and Flutter",
"shortDescription": "Build and manage Dart and Flutter apps from Codex.",
Expand All @@ -31,4 +41,4 @@
],
"websiteURL": "https://flutter.dev"
}
}
}
Comment on lines 43 to +44

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The trailing newline at the end of the file was removed. It is recommended to keep a trailing newline to adhere to POSIX standards and prevent git diff warnings.

Suggested change
}
}
}
}
}

16 changes: 13 additions & 3 deletions .cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dart-flutter",
"displayName": "Dart and Flutter",
"version": "1.0.4",
"version": "1.0.5",
"description": "Official Cursor plugin for Dart and Flutter that installs Flutter/Dart Skills and Dart MCP server for building natively compiled, visually stunning applications for mobile, web, desktop, and embedded devices from a single codebase.",
"author": {
"name": "Dart and Flutter Team",
Expand All @@ -15,6 +15,16 @@
"dart",
"mobile"
],
"mcpServers": "./.mcp.json",
"mcpServers": {
"dart-mcp-server": {
"command": "dart",
"args": [
"mcp-server"
],
"env": {
"AGENT_PLUGIN": "cursor"
}
}
},
"skills": "./skills/"
}
}
Comment on lines 29 to +30

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The trailing newline at the end of the file was removed. It is recommended to keep a trailing newline to adhere to POSIX standards and prevent git diff warnings.

Suggested change
"skills": "./skills/"
}
}
"skills": "./skills/"
}

11 changes: 0 additions & 11 deletions .mcp.json

This file was deleted.

Loading