install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/brunoscardoso/plan-flow/setup" ~/.claude/skills/clawdbot-skills-setup-72f975 && rm -rf "$T"
manifest:
skills/brunoscardoso/plan-flow/setup/SKILL.mdsource content
Setup
Analyze the current repository and generate Plan-Flow configuration files.
What It Does
- Scans project structure to detect languages and frameworks
- Creates the
directory structureflow/ - Identifies existing patterns in the codebase
- Generates initial configuration
Usage
/setup [path]
Arguments:
(optional): Directory to analyze. Defaults to current directory.path
Output
Creates the following structure:
flow/ ├── archive/ # Completed/abandoned plans ├── contracts/ # Integration contracts ├── discovery/ # Discovery documents ├── plans/ # Active implementation plans ├── references/ # Reference materials ├── reviewed-code/ # Code review documents └── reviewed-pr/ # PR review documents
Example
/setup
Output:
Setup Complete! Analyzed: /path/to/project Files found: 156 Languages detected: TypeScript, JavaScript Frameworks detected: Next.js, Jest Created Directories: - flow/discovery/ - flow/plans/ - flow/contracts/ - flow/references/ - flow/archive/ Next Steps: 1. Create .plan-flow.yml with your AI API key 2. Run /discovery to gather requirements for a feature 3. Run /create-plan to create an implementation plan
Next Command
After setup, run
/discovery to start gathering requirements for a new feature.