flutter-rollback

Revert Flutter project code to a previous manifest snapshot.

Updated Apr 10, 2026
One-click install
npx skills add https://github.com/dus2183-commits/flutter-skills --skill flutter-rollback
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: flutter-rollback
Source: https://github.com/dus2183-commits/flutter-skills/tree/main/flutter-rollback
Command: npx skills add https://github.com/dus2183-commits/flutter-skills --skill flutter-rollback

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill enables you to revert a Flutter project to a previous manifest snapshot, restoring code state after a faulty generation or unwanted changes.

Core Features & Use Cases

  • Single-module rollback: revert only a specified module while keeping the rest of the project intact.
  • Batch rollback: restore all modules to a chosen snapshot, for project-wide recovery.
  • Audit-ready safety: relies on .flow_checkpoint/gen-v{N} snapshots and manifests to ensure deterministic recovery and traceability.

Quick Start

Tell Claude to rollback to a specific manifest snapshot or undo the last generation, and it will restore the project accordingly.

Frequently Asked Questions about flutter-rollback

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I revert my Flutter project to a previous manifest snapshot?▼

You can revert a Flutter project to a previous manifest snapshot by restoring code state from .flow_checkpoint/gen-v{N} directories, which effectively undoes faulty generations or unwanted code changes across your project.

Can I rollback a single Flutter module without affecting the rest of the project?▼

Yes, single-module rollback allows you to revert only a specified module to a prior snapshot while keeping the rest of your Flutter project intact. This is useful for isolating and undoing changes in specific feature areas.

What validation checks run after a Flutter code rollback?▼

After restoring your Flutter code from a snapshot, the rollback process runs validation checks including build_runner and flutter analyze to ensure the reverted code state is functional and free of analysis errors.

How does manifest-based version control work for Flutter code snapshots?▼

Manifest-based version control for Flutter snapshots relies on .flow_checkpoint/gen-v{N} directories and manifests to ensure deterministic recovery. It logs the rollback outcome for auditing and provides traceable code state restoration.

What is the best way to undo the last code generation in a Flutter project?▼

The best way to undo the last code generation is to perform a batch rollback that restores all modules to the immediately preceding .flow_checkpoint/gen-v{N} snapshot, validating the result with build_runner and flutter analyze.