flowchad-setup

Installation
SKILL.md

Flowchad Setup

Initialize Flowchad in a project by discovering what already exists, asking what's missing, and scaffolding flow definitions.

Phase 1: Auto-Discovery (no user input)

Scan the project silently. Gather everything before asking a single question.

1a. Detect Test Framework & Existing Flows

Search for e2e/integration tests — these are flows already defined in code.

# Find test files
find . -type f \( \
  -name "*.spec.ts" -o -name "*.spec.js" \
  -o -name "*.test.ts" -o -name "*.test.js" \
  -o -name "*.e2e.ts" -o -name "*.e2e.js" \
  -o -name "*_spec.rb" -o -name "*_test.rb" \
Related skills
Installs
6
GitHub Stars
2
First Seen
Mar 24, 2026