AI Fix Prompts for Zockimate

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)
0
High (P1)
2
Medium (P2)
0
Low (P3)
Download All (Markdown) Download All (JSON) Feed these prompts to any AI coder: Claude Code, Cursor, Copilot, GPT, Ollama
MEDIUM ⚡ quick-fix #1

Add a LICENSE file

license legal
Expected outcome: LICENSE file added
Files to modify: Will be determined by the AI
Prompt (copy this into your AI assistant)
Repository 'naonak__zockimate' has no detectable license. Add a LICENSE file. For open-source projects, MIT is recommended unless dependencies require a specific license. Create the full file.
Source: Repobility analyzer · https://repobility.com
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: cmd/zockimate/main.go, internal/manager/check.go, internal/manager/rollback.go, internal/manager/update.go, internal/manager/rename.go
Prompt (copy this into your AI assistant)
These files in 'naonak__zockimate' have high cyclomatic complexity:

- **cmd/zockimate/main.go**: complexity=118, max nesting=7, longest function=80 lines
- **internal/manager/check.go**: complexity=32, max nesting=4, longest function=61 lines
- **internal/manager/rollback.go**: complexity=31, max nesting=5, longest function=126 lines
- **internal/manager/update.go**: complexity=29, max nesting=4, longest function=147 lines
- **internal/manager/rename.go**: complexity=20, max nesting=5, longest function=76 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