AI Fix Prompts for Pipeworks Name Generation

Copy any prompt below into Claude, ChatGPT, or your AI coding assistant to automatically fix the issue. Each prompt includes full context, code location, and step-by-step fix instructions.

2
Total Prompts
0
Critical (P0)
1
High (P1)
1
Medium (P2)
0
Low (P3)
Download All (Markdown) Download All (JSON) Feed these prompts to any AI coder: Claude Code, Cursor, Copilot, GPT, Ollama
HIGH ⚙ moderate #1

Review high-risk license: AGPL-3.0

license legal compliance
Expected outcome: License risk assessed and documented
Files to modify: LICENSE
Prompt (copy this into your AI assistant)
Repository 'pipe-works__pipeworks_name_generation' uses AGPL-3.0 which is classified as high-risk (copyleft/proprietary). Review whether this is intentional. If distributing commercially, consider re-licensing or isolating copyleft dependencies.
Same scanner, your repo: https://repobility.com — Repobility
MEDIUM ⚒ significant #2

Simplify 5 high-complexity files

complexity refactoring quality
Expected outcome: All listed files reduced to medium or low complexity
Files to modify: build_tools/syllable_walk_web/server.py, build_tools/syllable_walk_web/api/walker_ops.py, build_tools/syllable_walk_web/services/pipeline_runner.py, build_tools/pyphen_syllable_extractor/interactive.py, build_tools/pyphen_syllable_extractor/models.py
Prompt (copy this into your AI assistant)
These files in 'pipe-works__pipeworks_name_generation' have high cyclomatic complexity:

- **build_tools/syllable_walk_web/server.py**: complexity=111, max nesting=7, longest function=198 lines
- **build_tools/syllable_walk_web/api/walker_ops.py**: complexity=75, max nesting=6, longest function=100 lines
- **build_tools/syllable_walk_web/services/pipeline_runner.py**: complexity=59, max nesting=4, longest function=385 lines
- **build_tools/pyphen_syllable_extractor/interactive.py**: complexity=49, max nesting=6, longest function=86 lines
- **build_tools/pyphen_syllable_extractor/models.py**: complexity=33, max nesting=6, longest function=86 lines

For each file:
1. Break large functions into smaller, focused functions
2. Reduce nesting depth (extract early returns, use guard clauses)
3. Simplify conditional logic
4. Extract complex expressions into named variables