Borrowing it
Nothing to install: this file belongs to Kandil7/prprompts-flutter-generator. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/Kandil7/prprompts-flutter-generator/master/.claude/commands/prprompts/generate-all.mdgit clone --depth 1 https://github.com/Kandil7/prprompts-flutter-generatorWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/kandil7/prprompts-flutter-generator/generate-all)<a href="https://agentmods.dev/commands/kandil7/prprompts-flutter-generator/generate-all"><img src="https://agentmods.dev/badge/commands/kandil7/prprompts-flutter-generator/generate-all.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00021 | $0.07815 |
| Opus 5 | $0.00010 | $0.03908 |
| Sonnet 5 | $0.00004 | $0.01563 |
| Haiku 4.5 | $0.00002 | $0.00782 |
Grade B, and why
Generate PRPROMPTS scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Strips warnings and disclaimersmediumAnti-refusal
Omitting safety caveats hides risk from the user and is a common jailbreak preamble.
- VALIDATION GATES: `dartdoc` must build without warnings How it starts
The opening of the file, as written. The whole thing — 906 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Generate Complete PRPROMPTS Folder
IMPORTANT: Generate a complete, secure, and adaptive PRPROMPTS/ folder for a large-scale Flutter project using Clean Architecture, BLoC/Cubit, and dynamic team structuring.
DEFINITIONS
PRP (Prompt Reference Pattern)
Every file MUST follow this exact structure:
## FEATURE
What this guide helps you accomplish
## EXAMPLES
Real code with actual file paths (e.g., lib/features/login/presentation/login_page.dart)
## CONSTRAINTS
✅ DO / ❌ DON'T rules
## VALIDATION GATES
Manual checklist + automated CI checks
## BEST PRACTICES
Junior-friendly explanations with "Why?" sections
## REFERENCES
Official docs, compliance guides, internal ADRs
Clean Architecture
Uncle Bob's layered approach:
- Presentation Layer: UI, BLoC/Cubit, Widgets
- Domain Layer: Entities, Use Cases, Repository Interfaces
- Data Layer: Repository Implementations, Data Sources, Models
JWT in Flutter (CRITICAL)
- ❌ NEVER sign tokens in Flutter
- ✅ Backend signs tokens (e.g., Node.js with
node-jsonwebtoken, RS256) - ✅ Flutter only verifies tokens using public key (
dart_jsonwebtokenpackage) - ❌ NEVER store private keys or secrets in Flutter code
- ✅ Always verify claims:
aud,iss,exp,sub
Example (Backend - Node.js):
const token = jwt.sign(payload, privateKey, {
algorithm: 'RS256',
expiresIn: '15m',
audience: 'my-flutter-app',
issuer: 'api.example.com'
});
Example (Flutter - Verification Only):
import 'package:dart_jsonwebtoken/dart_jsonwebtoken.dart';
Future<bool> verifyToken(String token) async {
try {
final jwt = JWT.verify(
token,
RSAPublicKey(publicKeyString),
audience: Audience(['my-flutter-app']),
issuer: 'api.example.com',
);
return jwt.payload['exp'] > DateTime.now().millisecondsSinceEpoch / 1000;
} catch (e) {
return false;
}
}
Integrated Tools
- Structurizr - C4 model as code
- Generates interactive architecture diagrams
- DSL format:
workspace.dsl - Example:
structurizr-cli export -workspace workspace.dsl -format plantuml
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 906 lines · 21 tokens per session scan B 64abbf60e894
Generate PRPROMPTS is a command published in the GitHub repository Kandil7/prprompts-flutter-generator (11 stars, last pushed 9mo ago), licensed MIT. It adds 21 tokens to every session and 7,815 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (strips warnings and disclaimers). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
speckit.bug.fetch
Load an existing GitHub issue into the bug workflow (the complement of bug.issue) and seed a triage draft.
speckit.chore.fetch
Load an existing GitHub issue into the chore workflow and seed a triage draft.
speckit.chore.implement
Implement the scoped chore (the actual maintenance work) and record what changed.
speckit.chore.issue
File a GitHub issue from a chore assessment (the 'report' phase) and record the issue link.
speckit.gh-triage.feature
Create a GitHub issue describing a new feature, label it with the configured feature label, and optionally auto-run speckit.specify to turn it into a spec.
speckit.bug.pr
Open a pull request for the applied bug fix, linking the tracked issue.