prprompts-flutter-generator: Command for Claude Code

.claude/commands/planning/analyze-dependencies.md

Analyze Feature Dependencies is a command for Claude Code from Kandil7/prprompts-flutter-generator. It costs 12 tokens per session (4,729 once invoked), scanned A, original, MIT.

A command that reads a product requirements document and maps which features depend on others. It recommends an implementation order and identifies blockers and work that can happen at the same time.

In plain words
What is it for?
Use it to analyze technical, business, and security dependencies and produce a critical path for building the planned features.
Why use it?
It prevents teams from starting dependent work too early, such as building account features before authentication or data features before their database structure.

Command for Claude Code

Written for Claude Code: installed under .claude/.

This is Kandil7/prprompts-flutter-generator's own configuration. It tells Claude Code how to work on prprompts-flutter-generator itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything prprompts-flutter-generator configures →

Part of the prprompts-flutter-generator plugin — 25 commands, 4 hooks shipped together

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/Kandil7/prprompts-flutter-generator/master/.claude/commands/planning/analyze-dependencies.md
Clone the repo
git clone --depth 1 https://github.com/Kandil7/prprompts-flutter-generator

Made for: Claude Code.

Or install prprompts-flutter-generator, the plugin that ships this one along with the rest of its 25 commands, 4 hooks.

Wrote 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.

agentmods badge for Analyze Feature Dependencies

README.md
[![agentmods](https://agentmods.dev/badge/commands/kandil7/prprompts-flutter-generator/analyze-dependencies/github.svg)](https://agentmods.dev/commands/kandil7/prprompts-flutter-generator/analyze-dependencies)
Your own site
<a href="https://agentmods.dev/commands/kandil7/prprompts-flutter-generator/analyze-dependencies"><img src="https://agentmods.dev/badge/commands/kandil7/prprompts-flutter-generator/analyze-dependencies/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for Analyze Feature Dependencies

Your own site · 80×15
<a href="https://agentmods.dev/commands/kandil7/prprompts-flutter-generator/analyze-dependencies"><img src="https://agentmods.dev/badge/commands/kandil7/prprompts-flutter-generator/analyze-dependencies.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 12 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 4,729 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00012 $0.04729
Opus 5 $0.00006 $0.02364
Sonnet 5 $0.00002 $0.00946
Haiku 4.5 $0.00001 $0.00473

Measured 9d ago against content hash 53d83bfd72b0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

Analyze Feature Dependencies scanned grade A with 0 findings 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 9d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/commands/planning/analyze-dependencies.md · 636 lines

How it starts

The opening of the file, as written. The whole thing — 636 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Feature Dependency Analysis

Overview

Analyze PRD features to identify dependencies, blockers, and parallel work opportunities. Generate implementation order recommendations with critical path analysis.

Instructions

Step 1: Locate and Read PRD

# Expected location
docs/PRD.md

If not found, ask user for PRD location.

Step 2: Extract Features

Parse YAML frontmatter features array:

features:
  - name: "User Authentication"
    complexity: "medium"
    priority: "p0"
    requires: ["biometric_auth", "mfa"]
  - name: "Dashboard"
    complexity: "medium"
    priority: "p0"
    requires: ["real_time_updates", "data_visualization"]

Also extract from PRD body if features have expanded descriptions with:

  • User stories
  • Technical requirements
  • Acceptance criteria

Step 3: Identify Dependency Types

1. Technical Dependencies (BLOCKING) These MUST be implemented first:

  • Authentication → All Features:

    • Any feature requiring user identity depends on auth
    • Keywords: "user-specific", "personalized", "profile", "account"
  • Database Schema → CRUD Features:

    • Data models must exist before features using them
    • Keywords: "save", "retrieve", "update", "delete", "store"
  • API Foundation → API-Dependent Features:

    • Backend endpoints required before frontend consumption
    • Keywords: "fetch from server", "API call", "REST endpoint"
  • Payment Integration → Monetization:

    • Stripe/PayPal setup blocks checkout, subscriptions, billing
    • Keywords: "payment", "checkout", "billing", "subscription"
  • Search Infrastructure → Search Features:

    • Elasticsearch/Algolia needed before search UI
    • Keywords: "search", "find", "filter", "query"

2. Logical Dependencies (STRONGLY RECOMMENDED) Should be implemented in order, but can be worked around:

  • Core Entity → Related Entities:

    • Example: "Product" before "Product Reviews"
    • Example: "User Profile" before "User Preferences"
  • Create → Read/Update/Delete:

    • Must be able to create entities before managing them

Read the full file on GitHub · 636 lines

Changes

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.

  1. 9d ago First seen · 636 lines · 12 tokens per session scan A 53d83bfd72b0

Subscribe to this mod's changes

Analyze Feature Dependencies is a command published in the GitHub repository Kandil7/prprompts-flutter-generator (11 stars, last pushed 9mo ago), licensed MIT. It adds 12 tokens to every session and 4,729 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other commands, from other repositories

building-flutter-apps-skill-ac1294fc

Flutter Riverpod app architecture and Windows installer delivery. Use before changing a Riverpod Flutter app/package or its Windows desktop packaging/update pipeline; skip non-Riverpod stacks and pure-Dart work.

sgaabdu4/building-flutter-apps · 39 tokens

gdpr-audit

You are a senior Security & Compliance specialist. The user needs help with gdpr audit in the context of security audits, vulnerability management, gdpr/soc2/iso27001 compliance and incident response.

sparkfinderoven/r01-hesreallyhim-awesome-claude-code-security · 0 tokens

privacy-policy

You are a senior Security & Compliance specialist. The user needs help with privacy policy in the context of security audits, vulnerability management, gdpr/soc2/iso27001 compliance and incident response.

sparkfinderoven/r01-hesreallyhim-awesome-claude-code-security · 0 tokens

secret-detect

You are a senior Security & Compliance specialist. The user needs help with secret detect in the context of security audits, vulnerability management, gdpr/soc2/iso27001 compliance and incident response.

sparkfinderoven/r01-hesreallyhim-awesome-claude-code-security · 0 tokens

threat-model

You are a senior Security & Compliance specialist. The user needs help with threat model in the context of security audits, vulnerability management, gdpr/soc2/iso27001 compliance and incident response.

sparkfinderoven/r01-hesreallyhim-awesome-claude-code-security · 0 tokens

dep-cve

You are a senior Security & Compliance specialist. The user needs help with dep cve in the context of security audits, vulnerability management, gdpr/soc2/iso27001 compliance and incident response.

timenavigatorrage/r16-voltagent-awesome-agent-skills-security · 0 tokens