Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "flutter-cursor-plugin",
"displayName": "Flutter Cursor Plugin",
"version": "1.10.6",
"version": "2.0.0",
"description": "Open-source Cursor plugin for end-to-end Flutter development and testing with Dart MCP, Figma MCP, practical architecture patterns, and reliable test workflows.",
"author": {
"name": "Aleksandr Lozhkovoi",
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@
- Added external backend API integration workflow:
- command: `commands/integrate-mobile-api.md`
- skill: `skills/integrate-mobile-api/SKILL.md`
- Removed `flutter:*` command aliases and kept canonical commands only.

Choose a reason for hiding this comment

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

P1 Badge Bump major version after removing command aliases

Removing all flutter:* command files is a breaking API change for users invoking those commands, but this change does not include a major version bump in plugin.json/.cursor-plugin/plugin.json and the added changelog bullets do not mark the change as breaking. In this repo, .github/workflows/api-stability.yml runs .github/scripts/api_stability_guard.sh, which explicitly treats command deletions as breaking and requires both a major bump and a CHANGELOG.md addition containing the word breaking, so this commit will fail that guard and does not provide proper semver signaling.

Useful? React with 👍 / 👎.

- Breaking: removed `flutter:*` command aliases; use canonical command names only.
- Removed alias maintenance artifacts:
- deleted `docs/command-namespacing.md`
- deleted `scripts/generate_namespaced_command_aliases.py`

## 1.10.0

Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Reference project layout:
- Canonical manifest: `.cursor-plugin/plugin.json` (schema-aligned for Cursor plugins).
- Compatibility manifest kept for existing setups: `plugin.json`.
- MCP auto-configuration: `mcp.json` (Dart MCP server).
- Command namespace support: canonical commands plus `flutter:*` aliases.
- Command naming: canonical commands only (no aliases).

## Compatibility matrix

Expand Down Expand Up @@ -191,9 +191,7 @@ Reference project layout:
14. For automated release cut (version/changelog/tag/release), use:
- `.github/workflows/release-automation.yml`
- `docs/release-automation.md`
15. For command namespacing/aliases (`flutter:*`), see:
- `docs/command-namespacing.md`
16. For deterministic local setup and SDK/MCP readiness, use:
15. For deterministic local setup and SDK/MCP readiness, use:
- `setup-flutter-environment`

Note: every code review flow includes mandatory security checks (OWASP MASVS-oriented).
Expand Down
10 changes: 0 additions & 10 deletions commands/flutter-generate-flutter-tests.md

This file was deleted.

10 changes: 0 additions & 10 deletions commands/flutter-implement-figma-screen.md

This file was deleted.

10 changes: 0 additions & 10 deletions commands/flutter-implement-flutter-feature.md

This file was deleted.

10 changes: 0 additions & 10 deletions commands/flutter-integrate-firebase.md

This file was deleted.

10 changes: 0 additions & 10 deletions commands/flutter-integrate-mobile-api.md

This file was deleted.

10 changes: 0 additions & 10 deletions commands/flutter-migrate-flutter-code.md

This file was deleted.

10 changes: 0 additions & 10 deletions commands/flutter-prepare-mobile-release.md

This file was deleted.

10 changes: 0 additions & 10 deletions commands/flutter-resolve-flutter-build-error.md

This file was deleted.

10 changes: 0 additions & 10 deletions commands/flutter-review-flutter-code.md

This file was deleted.

10 changes: 0 additions & 10 deletions commands/flutter-scaffold-flutter-feature.md

This file was deleted.

10 changes: 0 additions & 10 deletions commands/flutter-security-review.md

This file was deleted.

10 changes: 0 additions & 10 deletions commands/flutter-setup-flutter-environment.md

This file was deleted.

10 changes: 0 additions & 10 deletions commands/flutter-setup-mobile-github-pipeline.md

This file was deleted.

10 changes: 0 additions & 10 deletions commands/flutter-sync-official-flutter-ai-rules.md

This file was deleted.

10 changes: 0 additions & 10 deletions commands/flutter-update-flutter-dependencies.md

This file was deleted.

10 changes: 0 additions & 10 deletions commands/flutter-write-bloc-test.md

This file was deleted.

10 changes: 0 additions & 10 deletions commands/flutter-write-e2e-test.md

This file was deleted.

10 changes: 0 additions & 10 deletions commands/flutter-write-widget-test.md

This file was deleted.

20 changes: 0 additions & 20 deletions docs/command-namespacing.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/official-release-checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Use this checklist before tagging a public release.
- Plugin metadata is up to date (`plugin.json`: name, version, author, description, keywords).
- README clearly explains scope, commands, agents, and MCP requirements.
- Changelog includes the release notes for the target version.
- Command naming and aliases are documented (`docs/command-namespacing.md`).
- Command naming is documented in README (canonical commands only).
- Reference example repository is linked (`https://github.com/Wreos/flutter-cursor-plugin-example`).

## Quality
Expand Down
2 changes: 1 addition & 1 deletion docs/pre-release-enable-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ Notes:
```

4. Reload Cursor window.
5. Verify plugin commands are available (for example `implement-flutter-feature` or `flutter:implement-flutter-feature`).
5. Verify plugin commands are available (for example `implement-flutter-feature`).
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "flutter-cursor-plugin",
"displayName": "Flutter Cursor Plugin",
"version": "1.10.6",
"version": "2.0.0",
"description": "Open-source Cursor plugin for end-to-end Flutter development and testing with Dart MCP, Figma MCP, practical architecture patterns, and reliable test workflows.",
"author": "Aleksandr Lozhkovoi",
"license": "MIT",
Expand Down
50 changes: 0 additions & 50 deletions scripts/generate_namespaced_command_aliases.py

This file was deleted.