# Feature Scaffolder

> Generates a standard Domain-Driven Design (DDD) feature-first directory structure inside the `lib` folder.

- **Type:** Skill
- **Install:** `agentstack add skill-wajda9-flutter-agent-skills-feature-scaffolder`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [WAJDA9](https://agentstack.voostack.com/s/wajda9)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [WAJDA9](https://github.com/WAJDA9)
- **Source:** https://github.com/WAJDA9/flutter-agent-skills/tree/main/.agent/skills/feature-scaffolder

## Install

```sh
agentstack add skill-wajda9-flutter-agent-skills-feature-scaffolder
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

## Instructions
When the developer asks to create a new screen, flow, or feature (e.g., 'auth', 'settings', 'shopping_cart'):

### Directory Structure
Create a clean DDD folder structure by running commands in the terminal with `run_in_terminal` or using the `create_directory` tools. Note that creating empty directories usually requires adding a `.gitkeep` file to ensure the folder is preserved by version control.

The structure should be placed inside `lib/src/features/[feature_name]`.

Directories to create:
* `presentation/screens`
* `presentation/widgets`
* `application` (For controllers/providers)
* `domain` (For models/entities)
* `data` (For repositories/data sources)

**Example PowerShell script to create feature directories:**
```powershell
$feature = "auth" # Replace with actual feature name
$dirs = @("presentation/screens", "presentation/widgets", "application", "domain", "data")
foreach ($d in $dirs) { 
    $path = "lib/src/features/$feature/$d"
    New-Item -ItemType Directory -Force -Path $path
    New-Item -ItemType File -Force -Path "$path/.gitkeep"
}
```

Once scaffolded, inform the user where the structure was created.

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [WAJDA9](https://github.com/WAJDA9)
- **Source:** [WAJDA9/flutter-agent-skills](https://github.com/WAJDA9/flutter-agent-skills)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-wajda9-flutter-agent-skills-feature-scaffolder
- Seller: https://agentstack.voostack.com/s/wajda9
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
