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

---

## [Unreleased]
## [0.0.12] - 2026-08-20

### Fixed

Expand Down Expand Up @@ -282,6 +282,7 @@ Both write through `.tmp` + atomic rename; never hand-edit.

---

[0.0.12]: https://github.com/fluttersdk/artisan/compare/0.0.11...0.0.12
[0.0.11]: https://github.com/fluttersdk/artisan/compare/0.0.10...0.0.11
[0.0.10]: https://github.com/fluttersdk/artisan/compare/0.0.9...0.0.10
[0.0.9]: https://github.com/fluttersdk/artisan/compare/0.0.8...0.0.9
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.11
version: 0.0.12

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.11"
version: "0.0.12"
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.11
version: 0.0.12

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 @@ -74,7 +74,7 @@ final class McpServer extends MCPServer with ToolsSupport {
// cut, and test/mcp/mcp_server_version_test.dart fails the
// build when it is not. The 0.0.9 cut missed it and shipped a
// handshake one release behind.
version: '0.0.11',
version: '0.0.12',
),
);

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.11
version: 0.0.12
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.5
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.11 | Skill updated: 2026-08-20 | Source: https://github.com/fluttersdk/artisan -->
<!-- fluttersdk_artisan v0.0.12 | Skill updated: 2026-08-20 | Source: https://github.com/fluttersdk/artisan -->

# fluttersdk_artisan

Expand Down