Back to Home
Practical Guide

AI for Writers

How a writer uses developer tools to build frameworks, manage projects, and collaborate with AI at scale

11 min read2,184 words

AI for Writers: A Non-Programmer's Guide to Developer Tools

How a writer uses Cursor to build frameworks, manage projects, and collaborate with AI at scale


Who This Is For

You're a writer, thinker, or knowledge worker who:

  • Has multiple projects running in parallel (articles, books, frameworks, courses)
  • Wants to use AI as a genuine thinking partner, not just a grammar checker
  • Feels frustrated by Word documents scattered across folders
  • Has heard that "developer tools" are powerful but assumed they weren't for you

This guide shows you how one writer—with zero programming background—uses Cursor (an AI-enhanced code editor) as a creative operations center for intellectual work.


What I Actually Do

I use Cursor the way developers use it, but for writing instead of coding:

What Developers DoWhat I Do Instead
Write code files (.js, .py)Write markdown files (.md)
Organize code into modulesOrganize ideas into projects
Use Git for version controlUse Git to track how ideas evolve
Debug code with AI assistanceDevelop frameworks with AI collaboration
Build software featuresBuild thinking tools and content

A typical workspace might contain:

  • Multiple project folders (stories, frameworks, courses, content series)
  • Hundreds of markdown files
  • SVG diagrams and infographics
  • Occasional scripts for data processing (AI can write these for you)
  • Archives of AI collaboration sessions

You are not programming. You're using programmer infrastructure for creative work.


Why This Works Better Than Traditional Tools

The Problem with Traditional Writing Tools

Microsoft Word / Google Docs:

  • One file at a time
  • No relationships between documents
  • AI assistance is shallow (grammar, rewording)
  • Version history is clunky
  • Can't search across hundreds of files easily

Note apps (Notion, Obsidian, etc.):

  • Better organization
  • Still limited AI integration
  • Often require learning their specific system
  • May not scale well with large projects

What Cursor Gives You

1. Project-level thinking Your entire intellectual world lives in one workspace. All projects visible. All files searchable. Everything connected.

2. AI that sees your context When you ask Claude something in Cursor, it can see:

  • The file you're working on
  • Related files in the same folder
  • The structure of your entire project
  • Your previous work and patterns

This means AI responses are grounded in YOUR frameworks, YOUR voice, YOUR ongoing projects—not generic advice.

3. Version control (Git) Every change tracked. Every version recoverable. You can see how a framework evolved over six months. You can experiment wildly knowing you can always go back.

4. Plain text files Markdown files are future-proof. They'll open in any editor, forever. No vendor lock-in. No proprietary formats.

5. Parallel file editing Work on multiple related files simultaneously. Compare versions. Copy between documents. See the whole structure.


The Core Workflow

1. Everything Lives in One Workspace

Writing/
├── Novel-Project/               # Fiction project
│   ├── 00-Story-Bible.md
│   ├── 01-Act-Structure.md
│   └── characters/
├── Framework-Leadership/        # Non-fiction framework
│   ├── 00-Introduction.md
│   ├── 01-Master-Structure.md
│   ├── Components/
│   │   ├── Component-01-Vision.md
│   │   └── ...
│   └── visuals/
├── Article-Series-AI/           # Content series
│   ├── articles/
│   ├── research/
│   └── visuals/
└── _archive/                    # Completed or paused work

Naming convention: Prefix folders descriptively. Files start with 00-, 01-, etc. for reading order. Use consistent patterns across projects.

2. AI Collaboration Is Conversational

In Cursor, I don't just ask "fix this sentence." I have extended conversations:

You: "I'm building a framework for [your topic]. I've identified three components so far. What other dimensions might I be missing?"

AI: [Suggests dimensions based on understanding your existing framework]

You: "Good. Now look at my existing structure in this folder and suggest how these new dimensions fit."

AI: [References your actual files and proposes integration]

The AI becomes a research partner and thought partner, not just an assistant.

3. Files Are Thinking Tools

Each markdown file serves a purpose:

File TypePurposeExample
00-Base-Idea.mdCapture initial conceptRaw thoughts, questions, possibilities
01-Structure.mdDevelop frameworkTables, hierarchies, definitions
02-Examples.mdGather evidenceQuotes, cases, illustrations
99-Scratch.mdWorking spaceDrafts, experiments, dead ends

Create files freely. They're cheap. They're searchable. They're disposable or promotable.

4. Git Tracks Evolution

Commit changes with messages like:

  • "Add third component to leadership framework"
  • "Restructure chapter outline—now 8 chapters instead of 12"
  • "First draft: introduction complete"

Six months later, you can see exactly how an idea developed. This is intellectual archaeology built into the workflow.


How to Set This Up

Step 1: Install Cursor

Download from cursor.com. It's free to start, with paid tiers for heavier AI usage.

Cursor is a fork of VS Code (a popular code editor), modified for AI collaboration.

Step 2: Create Your Workspace

  1. Create a folder on your computer (e.g., Documents/Writing)
  2. Open Cursor
  3. File → Open Folder → Select your folder

This folder is now your workspace. Everything you create lives here.

Step 3: Learn Minimal Markdown

Markdown is plain text with simple formatting. You need to know:

# Heading 1

## Heading 2

### Heading 3

**Bold text**
_Italic text_

- Bullet point
- Another point

1. Numbered item
2. Another item

> Blockquote for quotes

| Column 1 | Column 2 |
| -------- | -------- |
| Data     | Data     |

[Link text](URL)

--- (horizontal line)

That's 90% of what you need. The rest you'll learn as you go.

Step 4: Create Your First Project Folder

Writing/
└── Project-01-MyFirstIdea/
    ├── 00-Base-Idea.md
    └── 01-Notes.md

Start small. One project. A few files. Get comfortable.

Step 5: Start Talking to AI

Press Cmd+L (Mac) or Ctrl+L (Windows) to open the AI chat panel.

First conversation starters:

"I'm working on [your project]. Here's my current thinking: [paste your notes]. What questions should I be asking that I'm not asking?"

"Look at the files in this folder and help me see what's missing from my framework."

"I want to develop this idea further. Play devil's advocate—what are the weaknesses?"

Step 6: Learn Git (Optional but Powerful)

Git is version control. It tracks every change to every file.

Minimal Git workflow:

  1. Open the Source Control panel (branch icon in left sidebar)
  2. After making changes, write a short message describing what you did
  3. Click "Commit" to save a snapshot
  4. Repeat

You don't need to understand branches, remotes, or merging. Just commit regularly.


What This Looks Like in Practice

Example 1: Building an Intellectual Framework

The problem: You want to understand something systematically—say, how storytelling works, or how decisions go wrong, or what makes good writing.

The process:

  1. Create a project folder: Storytelling-Framework/
  2. Start with 00-Base-Idea.md: Capture your initial questions and hunches
  3. Have extended AI conversations: "Help me categorize the dimensions of this topic"
  4. Create 01-Master-Structure.md as the framework emerges
  5. For each component, create detailed files: Component-01-Character.md, Component-02-Tension.md
  6. Ask AI to analyze examples using your emerging framework
  7. Refine based on what you discover
  8. Create visual diagrams to clarify relationships

The result: A framework that's genuinely yours—AI helped you build it, but your questions and judgment shaped it.

Example 2: Writing a Book or Article Series

The project: A non-fiction book with multiple chapters, or a series of related articles.

Folder structure:

Book-Project/
├── 00-Master-Outline.md        # Overall structure
├── 01-Research/                # Background material
│   ├── Source-Notes-01.md
│   └── Source-Notes-02.md
├── 02-Drafts/                  # Chapter drafts
│   ├── Chapter-01-Draft.md
│   ├── Chapter-02-Draft.md
│   └── ...
├── 03-Published/               # Final versions
└── 99-Scratch.md               # Working notes

AI collaboration:

  • "Here's my chapter outline. What's missing? What would make the argument stronger?"
  • "Look at chapters 1-3. Is there a through-line? What themes am I developing without realizing it?"
  • "I'm stuck on this transition. Here's where chapter 2 ends and chapter 3 begins—help me bridge them."

Example 3: Building Something Technical (Without Coding Skills)

The project: You need a simple tool—maybe a data processor, a format converter, or a basic web app.

What you can do:

  • Describe what you want in plain language
  • AI writes the code
  • You test it, describe what's wrong
  • AI fixes it
  • Repeat until it works

The point: You don't need to know how to code. You need to know what you want. AI handles the technical execution; you handle the direction and quality control.


The Mental Shift Required

From "Writing" to "Building"

Traditional writing: You have an idea → You write a document → Done.

This approach: You have an idea → You create a project structure → You develop frameworks → You generate content → You revise and expand → The project grows over time.

You're not writing documents. You're building knowledge systems.

From "AI Assistant" to "AI Collaborator"

Traditional AI use: "Rewrite this paragraph to sound better."

This approach: "I'm developing a framework for X. Here's my current structure. What am I missing? What would strengthen this? Where are the logical gaps?"

You're not outsourcing writing. You're orchestrating intelligence.

From "Final Draft" to "Living Documents"

Traditional writing: Draft → Edit → Final → Done.

This approach: Everything is perpetually improvable. Files evolve. Frameworks deepen. Today's draft is tomorrow's foundation.

Git means you can always go back. So you can always go forward fearlessly.


Common Objections (And Responses)

"I'm not technical." You don't need to be. Cursor is less complex than learning advanced Word features. Markdown is simpler than HTML. You can start without touching Git.

"This seems like overkill for writing." It is—for a single essay. It's essential for managing 20 parallel projects with thousands of interconnected ideas.

"Can't I just use Notion/Obsidian/etc.?" You can. But you won't get:

  • AI that sees your entire project context
  • The depth of AI collaboration Cursor enables
  • Plain text files that will outlive any company

"I don't have multiple projects." You will. Once you have a system that can handle scale, you'll start thinking at scale.

"AI will make my writing generic." Only if you use it generically. When AI is grounded in YOUR frameworks, YOUR voice patterns, YOUR ongoing work—it becomes an amplifier of your distinctiveness, not a homogenizer.


The Deeper Principle: Scale of One

"AI has collapsed execution costs so dramatically that one person can now build what used to require teams."

This workflow embodies the Scale of One: a single person with AI collaboration operating like a small organization.

You don't need:

  • A research team (AI analyzes and synthesizes)
  • A writing staff (AI drafts, you direct and refine)
  • An IT department (AI writes code you need)
  • A design team (AI helps create visualizations)

You do need:

  • Domain expertise (your grounding)
  • Judgment (knowing what's good)
  • Direction (knowing what to build)
  • Curation (selecting what works)

The tools are accessible. The leverage is real. The question is whether you'll use them.


Getting Started: First Week

Day 1-2: Setup

  • Install Cursor
  • Create workspace folder
  • Create first project folder with 2-3 markdown files
  • Have your first AI conversation about a real project

Day 3-4: Explore

  • Create a second project folder
  • Practice searching across files (Cmd/Ctrl + Shift + F)
  • Try opening multiple files side-by-side
  • Ask AI to help you structure your ideas

Day 5-7: Develop

  • Initialize Git (Source Control → Initialize Repository)
  • Make some commits
  • Start developing real content
  • Notice what feels different from your old workflow

After one week: You'll know if this approach suits you. If it does, you'll never go back.


Resources

Learning Cursor:

  • Cursor official docs: docs.cursor.com
  • YouTube tutorials (search "Cursor AI tutorial")

Learning Markdown:

Learning Git (when ready):

  • Git for Writers - conceptual introduction
  • Cursor's built-in Source Control panel handles basics visually

Final Thought

This workflow emerged from straddling two worlds by accident—wanting to do creative and intellectual work, but needing better tools to manage AI collaboration at scale. Developer tools turned out to work beautifully for writer purposes.

The result is the ability to build things that cross "impossibility thresholds"—projects that wouldn't have existed without AI, not just slower, but not at all.

The same leverage is available to you.

You don't need to become a programmer. You need to adopt programmer tools for writer purposes.

The workspace is ready. The AI is ready. The only question is: what will you build?


Document created: January 2026 Built with the Scale of One.