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: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ This project follows [Semantic Versioning 2.0.0](https://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.0.7] - 2026-06-09

### Added

- `start --cdp-port` now fails fast with a clear, actionable error when the web port is already bound, instead of timing out after 90s. The error message names the busy port and suggests running `fsa stop` or selecting a different port via `--port` (issue #25).
Expand Down
2 changes: 1 addition & 1 deletion example/packages/awesome_plugin/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ environment:
dependencies:
fluttersdk_artisan:
path: ../../..
version: 0.0.6
version: 0.0.7

dev_dependencies:
lints: ^6.0.0
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.0.6"
version: "0.0.7"
frontend_server_client:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dependencies:

fluttersdk_artisan:
path: ..
version: 0.0.6
version: 0.0.7

awesome_plugin:
path: ./packages/awesome_plugin
Expand Down
2 changes: 1 addition & 1 deletion lib/src/mcp/mcp_server.dart
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ final class McpServer extends MCPServer with ToolsSupport {
channel,
implementation: Implementation(
name: 'fluttersdk_artisan_mcp',
version: '0.0.6',
version: '0.0.7',
),
);

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: fluttersdk_artisan
description: "Composable Dart CLI framework and stdio MCP server for Flutter. Scaffolding, code generation, transactional plugin installs, hot reload, REPL, and AI agent tooling."
version: 0.0.6
version: 0.0.7
homepage: https://fluttersdk.com/artisan
repository: https://github.com/fluttersdk/artisan
issue_tracker: https://github.com/fluttersdk/artisan/issues
Expand Down
2 changes: 1 addition & 1 deletion skills/fluttersdk-artisan/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version: 0.0.3
when_to_use: "Any task where the agent boots, restarts, inspects, or evaluates a running Flutter app via artisan: calling `artisan_*` MCP tools (start, status, doctor, tinker, hot-restart) in sequence, invoking `./bin/fsa <cmd>` from Bash, recovering from missing state.json or stale PID, picking substrate vs dispatcher MCP wiring, choosing between `artisan_tinker` (VM Service evaluate) and `dusk_evaluate` (E2E driver) for an inspect-or-mutate flow."
---

<!-- fluttersdk_artisan v0.0.6 | Skill updated: 2026-05-28 | Source: https://github.com/fluttersdk/artisan -->
<!-- fluttersdk_artisan v0.0.7 | Skill updated: 2026-06-09 | Source: https://github.com/fluttersdk/artisan -->

# fluttersdk_artisan

Expand Down
8 changes: 4 additions & 4 deletions skills/fluttersdk-artisan/references/cli-commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ Files produced (atomic write via `.tmp` + rename):
| `lib/app/_plugins.g.dart` | Generated plugin provider barrel; empty `autoDiscoveredProviders()` thunk until `plugin:install` populates `.artisan/plugins.json`. |
| `lib/app/commands/_index.g.dart` | Generated command index for consumer-authored commands; empty until `make:command`. |

Pubspec mutation: adds `fluttersdk_artisan: ^0.0.6` (pub.dev consumers)
or `fluttersdk_artisan: { path: ... }` (monorepo `path:` auto-detected
via `.dart_tool/package_config.json` rootUri). Re-running is idempotent
unless `--force`.
Pubspec mutation: adds `fluttersdk_artisan: any` (pub.dev consumers, so the
next `pub get` pulls the published package) or `fluttersdk_artisan: { path: ... }`
(monorepo `path:` auto-detected via `.dart_tool/package_config.json` rootUri).
Re-running is idempotent unless `--force`.

Auto-chains to `make:fast-cli` so `./bin/fsa` is compiled and ready
after `install` returns.
Expand Down