← Projects

Granny Square Chart Tool

Visit Site →

A crochet tool that translates written patterns into editable visual charts.

Type
Web App
Built In
1 month
Stack
Cursor, Codex
Role
Solo — Design & Build
Overview

This started as a simple idea: take a written crochet pattern and turn it into a visual chart. It wasn't simple.

I'm a designer without a traditional engineering background, and this was my first time building a product end to end with AI. What I learned in the process changed how I think about both design and building.

The Problem

Granny squares are one of crochet's most expressive formats. Their shapes, colors, and construction often aren't fully understood until they've actually been made. If you want to design one, you traditionally have to crochet it first to see the result.

Granny square example

Granny square example — also called a Sunburst Granny Square

My first instinct was to use AI to generate visuals directly from a text prompt. But after talking to experienced crocheters, I learned that wasn't possible — crochet construction doesn't translate that way.

What I found instead: some designers do create charts by hand, but it takes time, so many skip it and write patterns in text only. The problem is that users strongly prefer charts. They're clearer, easier to scan, and easier to understand across languages. That gap is what this tool is designed to close.

Written Pattern

Sunburst Granny Square

  • Magic Ring
  • Rnd 1: 16 dc [16]
  • Rnd 2: (puff, ch 1) repeat 16 times [32]
  • Rnd 3: (cl, ch 2) repeat 16 times in ch-sp [48]
  • Rnd 4: ((3 tr, 3 ch, 3 tr) in corner-sp, 3 dc in ch-sp, 3 hdc in ch-sp, 3 dc in ch-sp) repeat 4 times [60]
Generated Chart

Sunburst Granny Square

Generated crochet chart

Why it was harder than it looked

The real challenge

A crochet chart isn't just icons arranged on a canvas. Stitch placement depends on structure, sequence, and how the piece is actually worked. A result can look visually correct while still being structurally wrong.

Square and circular patterns also follow different construction logic, so one generic placement model couldn't cover both. What sounded like a simple translation problem turned out to be a systems design challenge.

How I built it

I started by jumping in, building quickly in Cursor. For a while, it seemed to work. Then the charts started breaking, and no matter how I adjusted my prompts, the output kept getting messier. I couldn't prompt my way out of it.

Early broken output

Earlier broken chart

Improved output

Improved chart output

The problem was how I had defined the stitch. I was treating it as a visual token — a frame to place on a canvas. But a visual token has no memory, no rules, no structure. Every time I tried to build on top of it, the system had nothing to hold onto.

So I stopped building and started thinking, working with ChatGPT to figure out what the underlying structure actually needed to be. The stitch needed to be a logical unit, not a visual one. Once I rebuilt around that, everything stabilized.

Diagram comparing a visual token approach (no rules, no memory) vs a logical unit approach (structured, reusable)

I also defined a set of common failure cases and used them as consistent checkpoints throughout testing, rather than relying on prompting alone to catch mistakes.

Project rule

Project rule: stitches must be defined as logical units with placement rules, not visual tokens

Common pitfall

Common pitfall: placing stitches visually without respecting construction sequence causes structural errors

Key design decision

One source of truth

I wanted users to be able to adjust the output and still trust the result. That meant chart and instructions had to stay in sync no matter what changed.

So I kept one source of truth for both chart rendering and instruction output. Edits in one place stayed reflected in the other, and the two never drifted apart.

Architecture diagram showing chart rendering and instruction output both driven by a single data source

Outcome

Result

The app supports a complete workflow: written pattern in, visual chart generated, instruction output synced. Users can adjust the chart manually, and the instructions update accordingly.

I tested the flow myself and gathered early feedback. The core loop works, and the structural approach holds up across different pattern types. Built solo, in one month.

Granny Square Studio
Final app output showing the generated crochet chart alongside synced written instructions
What I learned
  • Niche creative workflows look simple on the surface. They rarely are.
  • The real design work was deciding what the system should treat as true, how much control users needed, and how to make the result reliable enough to trust.
  • AI accelerates execution. It doesn't replace domain understanding or clear system logic.
  • As a designer, learning to think in structures — not just visuals — was the shift that made everything else possible.
Try it yourselfVisit Site →