strvcom

44 mods across 1 repository, 24 stars between them.

build-verify

01

strvcom/flutter-template

Skill Claude CodeCodex

Build/test/lint verification pass for this Flutter app — runs codegen, analyze, test, then iOS + Android native builds in parallel, then dart format. Does NOT commit anything; leaves the working tree dirty so the user can review and commit on demand. Used at the end of the prd → techspec → tasks →…

24 2mo ago A 107 tokens original MIT

create-pr

02

strvcom/flutter-template

Skill Claude CodeCodex

Create or update a GitHub PR for this Flutter repository using gh CLI. Verifies the work with build-verify and pr-review, generates an inline PR description, commits pending changes when approved, pushes, and opens or updates the PR. Supports stacked PRs by asking for the base branch when detection is ambiguous. Use…

24 2mo ago A 92 tokens original MIT

feature-data-flow

03

strvcom/flutter-template

Skill Claude CodeCodex

Build a full feature in this Flutter repository that includes backend or storage data flow: read API schema, create DTOs, map DTOs to entities, add Riverpod use cases, connect feature state, and render UI data. Use when a task goes beyond a screen and needs real data integration.

24 2mo ago A 63 tokens original MIT

feature-screen

04

strvcom/flutter-template

Skill Claude CodeCodex

Create a new Flutter screen in this repository using the existing feature structure, AutoRoute setup, Riverpod state pattern, and code generation workflow. Use when adding a new page, route, stateful screen, or feature folder in this template.

24 2mo ago A 51 tokens original MIT

strvcom/flutter-template

Skill Claude CodeCodex

Orchestrates implementation of all tasks for a feature using an agent team. Respects task dependencies, runs tasks in correct order, parallelizes independent tasks. Does NOT build, run tests, or commit at any point — verification is delegated to the caller (typically /start-job, which runs build-verify and pr-review…

24 2mo ago A 114 tokens original MIT

implement

06

strvcom/flutter-template

Skill Claude CodeCodex

Implement a single Flutter task following this repository's Riverpod, Freezed, AutoRoute, DTO/entity, codegen, and verification conventions. Reads the task definition, PRD, and tech spec, then executes the implementation. When invoked standalone, verifies the change; when invoked by implement-tasks-sequence, writes…

24 2mo ago A 105 tokens original MIT

layout-debug

07

strvcom/flutter-template

Skill Claude CodeCodex

Diagnose and fix Flutter layout, overflow, unbounded constraint, scroll, and responsive rendering issues in this repository while preserving the template's existing feature, theme, localization, and shared widget patterns. Use when UI overflows, text clips, widgets disappear, layouts fail on mobile/tablet/desktop, or…

24 2mo ago A 70 tokens original MIT

lint-format

08

strvcom/flutter-template

Skill Claude CodeCodex

Run Flutter/Dart formatting and static analysis for this repository. Use after completing Dart, Flutter, generated-source-input, or project configuration changes; when the user asks to lint, format, analyze, or check code style; or when preparing code for a pull request.

24 2mo ago A 56 tokens original MIT

pr-review

09

strvcom/flutter-template

Skill Claude CodeCodex

Review pull requests, branch diffs, and uncommitted changes in this Flutter repository with a bug-finding mindset. Use when asked to review changes, review a PR, audit a diff, check standards, check compliance, or look for regressions, missing tests, release risks, or architecture mismatches.

24 2mo ago A 65 tokens original MIT

prd

10

strvcom/flutter-template

Skill Claude CodeCodex

Create a Flutter feature Product Requirements Document through a structured clarify-plan-draft workflow. Outputs a PRD using the repository template under .claude/tasks/ /prd.md. Use when the user says "create a PRD", "write requirements", "define the feature", "start a feature spec", or wants to specify a feature…

24 2mo ago A 77 tokens original MIT

project-setup

11

strvcom/flutter-template

Skill Claude CodeCodex

Customize a new project created from this Flutter template, including app identity, package name, platform cleanup, icons, splash screen, Firebase/secrets decisions, setup tool execution, code generation, and validation.

24 2mo ago A 44 tokens original MIT

release-builds

12

strvcom/flutter-template

Skill Claude CodeCodex

Run post-merge release build steps for this repository, including Android tag-driven releases and sequential iOS IPA generation with archival for Transporter upload and Crashlytics deobfuscation. Use after the release PR has been merged.

24 2mo ago A 50 tokens original MIT

release-prepare

13

strvcom/flutter-template

Skill Claude CodeCodex

Prepare a release in this repository by bumping the app version, updating release notes, creating a release branch named release/ , and preparing the PR for merge before any release builds or tags are created.

24 2mo ago A 45 tokens original MIT

review-pr-comments

14

strvcom/flutter-template

Skill Claude CodeCodex

Review and resolve PR review comments on the current branch's PR in this Flutter repository, from both AI reviewers (CodeRabbit, CodiumAI, CodePilot, Copilot, etc.) and human reviewers. Fetches comments via gh, splits them into AI and human groups, verifies each comment against the actual Flutter code, triages them…

24 2mo ago A 117 tokens original MIT

secrets-bootstrap

15

strvcom/flutter-template

Skill Claude CodeCodex

Safely work with encrypted secrets, environment files, and signing material in this repository. Use when a task requires loading, decrypting, validating, or explaining the repo's secrets and signing setup.

24 2mo ago A 43 tokens original MIT

spec-feature

16

strvcom/flutter-template

Skill Claude CodeCodex

Top-level orchestrator for Flutter feature specification. Runs the full uninterrupted pipeline: prd → techspec → tasks in one shot. Use when the user says "spec a feature", "write a spec for", "start feature spec", "plan a feature", or wants to go from idea to implementation-ready tasks without typing three separate…

24 2mo ago A 71 tokens original MIT

start-job

17

strvcom/flutter-template

Skill Claude CodeCodex

Top-level orchestrator for Flutter feature implementation. Runs the full uninterrupted pipeline: tasks → implement-tasks-sequence → build-verify → pr-review uncommitted. Use after a PRD and tech spec are complete. Trigger phrases: "start job", "start the job", "run the full pipeline", "do it all", "implement the…

24 2mo ago A 78 tokens original MIT

tasks

18

strvcom/flutter-template

Skill Claude CodeCodex

Task Breakdown Command. Breaks a feature into discrete, dependency-ordered implementation tasks from a PRD and tech spec. Creates a task list and individual task files with no approval prompt. When run inside the /start-job pipeline, return control to that orchestrator so it can invoke the implementation phase. When…

24 2mo ago A 113 tokens original MIT

techspec

19

strvcom/flutter-template

Skill Claude CodeCodex

Technical Specification Command. Translates a PRD into an implementation-ready technical spec through deep project analysis and clarification. Use when the user says "create a tech spec", "write the technical design", "spec this out", or after a PRD is complete and the user wants to move to technical planning.

24 2mo ago A 64 tokens original MIT

upgrade

20

strvcom/flutter-template

Skill Claude CodeCodex

Upgrade Flutter and package dependencies in this repository while keeping .fvmrc, pubspec.yaml, code generation, CI, and tests aligned. Use when bumping Flutter, Dart constraints, direct dependencies, or generator toolchains.

24 2mo ago A 47 tokens original MIT

widget-test

21

strvcom/flutter-template

Skill Claude CodeCodex

Add or update Flutter widget tests in this repository using the existing test layout, Riverpod provider overrides, generated localization, shared theme setup, and FVM test commands. Use when a task asks for widget tests, UI regression coverage, test coverage for a screen/component, or when implementation work changes…

24 2mo ago A 65 tokens original MIT

build-verify

22

strvcom/flutter-template

Command Claude Code

Run the full build / test / analyze / format verification pass for this Flutter app.

24 2mo ago A 17 tokens original MIT