arise
A modular CLI for bootstrapping production-ready Flutter projects with architecture, state management, routing, and networking.
1.1.0
khanadnan10/arise
What this package is like to depend on
Last release 10 days ago
13 Aug 2026
Too new to tell
only 2 dated releases
Nearly every release is documented
notes for 2 of 2 stable releases
Nothing withdrawn
no release was ever pulled
0 months old
2 releases · first in 2026
2 releases in the last 12 months
see the full history below
Release timeline
2 releases · Aug 2026 to Aug 2026Releases
latest 2-
1.1.013 Aug 2026Release notes
Open source →Arise v1.1.0
The second stable release of Arise.
Highlights
- Added
generatecommand - Added
generate feature <name> - Project manifest (
.arise.yaml) - Networking selection during project creation
- Clean Architecture feature template
- Template-based feature generation pipeline
- Integration tests for feature generation
Quality
- dart analyze
- dart test
- End-to-end CLI verification
- pub.dev validation
Release notes
Open source →Added
arise generate feature <name>— generates a feature scaffold using the project's architecture- Architecture-aware feature templates: Clean Architecture, MVVM, MVC, MVP
--templateflag forgenerate feature(default:minimal)--forceflag to overwrite an existing feature directory--listflag to view available architectures and templates- Overwrite protection — duplicate feature generation is rejected unless
--forceis passed - Feature name validation — normalises hyphens/uppercase, rejects unsafe names
- Project manifest (
.arise.yaml) — persists architecture and module choices ProjectManifesttyped model — replaces rawMap<String, dynamic>inManifestService- Networking selection in
arise create(Dioor none) - Exit code
64for invalid CLI usage (replaces stack traces) - Integration and command-level tests for feature generation across all four architectures
- Added
-
1.0.003 Aug 2026Release notes
Open source →Arise v1.0.0
The first stable release of Arise — a modular CLI for bootstrapping Flutter projects.
Highlights
- Interactive Flutter project creation
- YAML-driven modular template system
- Clean Architecture, MVVM, MVC and MVP support
- Riverpod, Provider, Bloc and GetX support
- GoRouter and AutoRoute support
- Dio networking support
- Automatic dependency installation
- Non-interactive project creation with
--skip - Generated projects validated with Flutter analysis and tests
Installation
dart pub global activate arise
Create a project:
arise create
Or skip the interactive setup:
arise create --skip my_app
Requirements
- Dart SDK 3.9.2+
- Flutter SDK
Quality
The v1.0 release was validated with:
dart analyze- 41 automated tests
- Integration tests against generated Flutter projects
- Module combination tests
flutter analyzeflutter test- pub.dev package validation with 0 warnings
Links
- Package: https://pub.dev/packages/arise
- Documentation: See the
doc/directory - Issues: https://github.com/khanadnan10/arise/issues
Release notes
Open source →Added
- Interactive Flutter project creation with
arise create --skipoption for non-interactive project creation- YAML-driven modular template system
- Recursive template directory generation
- Template variable rendering
- Clean Architecture, MVVM, MVC, MVP, and default Flutter architecture support
- Riverpod, Provider, Bloc, and GetX state management support
- GoRouter and AutoRoute routing support
- Dio networking support
- Automatic package and development dependency installation
- Architecture-aware generated Flutter tests
- Global Dart CLI activation support
- Unit and integration test coverage
- Architecture and module-combination integration tests
- Contributor, architecture, template, and module documentation