0

Does CI Wiz work well alongside AI coding tools like Cursor?

Rather than replacing AI tools, can CI Wiz and tools like Cursor be used together? What is the best workflow for that?
Asked by Unknown Feb 04, 2026 159 views

1 Answer

0
✓ Accepted
This is actually the best workflow for 2026 — use both, in sequence. **Recommended hybrid approach:** 1. Design your schema in MySQL. 2. Use CI Wiz to generate the full CRUD scaffold — models, entities, controllers, views, routes, auth. 3. Commit that as the baseline. 4. Open the project in Cursor (or use Claude in your editor of choice) and point the AI at the DOC.md file in the generated project. That file documents the architecture, base classes, helpers, and patterns CI Wiz used. 5. Ask the AI to extend, customize, or add features on top of the clean scaffold. **Why this works well:** The AI is now working on a consistent, documented codebase rather than generating from scratch. It can follow the patterns because they are explicit in DOC.md. The CI Wiz scaffold gives the AI a reliable starting point, and the AI gives CI Wiz-generated apps the flexibility to go beyond standard CRUD. The DOC.md file in CI Wiz-generated apps was designed specifically for this — to serve as the context document you feed to an LLM when asking it to maintain or extend the app.
Answered by cantonner Feb 04, 2026

Please sign in to post an answer. sign in