Feature Driven Flow Claude banner
QuasarByte QuasarByte

Feature Driven Flow Claude

Development community

Description

Feature-Driven-Flow (FDF) Claude Code marketplace repository providing the feature-driven-flow plugin and namespaced slash commands.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Feature-Driven-Flow (FDF)

Version: `1.2.1`

This repository is a Claude Code marketplace that currently publishes one plugin:

  1. feature-driven-flow

Install

Add the marketplace:

/plugin marketplace add QuasarByte/feature-driven-flow-claude

Install the plugin:

/plugin install feature-driven-flow@quasarbyte-plugins

Optional shared runtime defaults:

  1. Copy plugins/feature-driven-flow/fdf/ into ~/.claude/fdf/ if you want one global FDF asset tree outside the installed plugin cache.
  2. Optionally copy fdf/ into a target project root as ./fdf/ when that project needs local FDF overrides.

Included Plugin

`feature-driven-flow` provides a structured 7-phase workflow for non-trivial software delivery.

After installation, use:

/feature-driven-flow:fdf-start 

Claude marketplace commands are documented in namespaced form: `/feature-driven-flow:fdf-*`.

Asset Resolution Rule

At runtime, shared FDF assets are resolved from the first available root in this order:

  1. ./fdf/ in the target project root
  2. ~/.claude/fdf/
  3. bundled plugin fdf/

Repo-local overrides still live under `.claude/feature-driven-flow/`.

Repository Layout

.claude-plugin/marketplace.json
plugins/feature-driven-flow/

The marketplace catalog lives at repository root. The actual Claude plugin payload lives under `plugins/feature-driven-flow/`.

Source Repository

Development happens in [QuasarByte/feature-driven-flow](https://github.com/QuasarByte/feature-driven-flow). This repository is the Claude marketplace distribution published through [QuasarByte/feature-driven-flow-claude](https://github.com/QuasarByte/feature-driven-flow-claude).

PowerShell Path Handling

When using PowerShell to inspect plugin files, quote filesystem paths that may contain spaces. If `rg` is unavailable in the shell, use PowerShell-native discovery commands such as `Get-ChildItem -Recurse -File` and `Select-String`.

Maintaine