withai.nyc

withai.nyc - Public Website & Legal Documents

Created: January 14, 2026

Overview

This repository hosts the public website for WithAI Research, Inc. at withai.nyc. It contains:

These pages are linked from the WithAI VS Code extension (welcome popup, settings panel).


Context: What This Is For

WithAI Research is shipping a VS Code extension that provides:

The extension collects optional email/company info via a welcome popup (sent to Google Forms). Legal requirements necessitate Terms of Service and Privacy Policy documents. This repo hosts those documents.

Why a separate repo?


Setup Status

Completed

Next Steps

1. Initialize Git Repo

cd /Users/btsfinch/ben-home/intersection-home/withai.nyc
git init
git add .
git commit -m "Initial commit: legal pages and landing"

2. Create GitHub Repo

# Option A: Using GitHub CLI
gh repo create withai-research/withai.nyc --public --source=. --remote=origin --push

# Option B: Create via GitHub web UI, then:
git remote add origin git@github.com:withai-research/withai.nyc.git
git push -u origin main

Note: Replace withai-research with your actual GitHub org/username if different.

3. Enable GitHub Pages

  1. Go to repo Settings → Pages
  2. Source: Deploy from branch
  3. Branch: main, folder: / (root)
  4. Save

4. Configure DNS (at your domain registrar)

Add these A records for apex domain:

Type    Host    Value
A       @       185.199.108.153
A       @       185.199.109.153
A       @       185.199.110.153
A       @       185.199.111.153

Or for www subdomain:

Type    Host    Value
CNAME   www     withai-research.github.io

5. Enable HTTPS

After DNS propagates (can take up to 48 hours, usually faster):

  1. Go to repo Settings → Pages
  2. Check “Enforce HTTPS”

6. Verify

curl -I https://withai.nyc/terms
curl -I https://withai.nyc/privacy

Updating Documents

To update legal docs:

cd /Users/btsfinch/ben-home/intersection-home/withai.nyc

# Edit the file (e.g., terms.html)
# Update the "Last updated" date in the file

git add .
git commit -m "Update terms: [description of change]"
git push

Changes deploy automatically in ~1 minute.


File Structure

withai.nyc/
├── .claude/
│   └── CLAUDE.md       # Instructions for Claude Code
├── index.html          # Landing page (withai.nyc)
├── terms.html          # Terms of Service (withai.nyc/terms)
├── privacy.html        # Privacy Policy (withai.nyc/privacy)
├── CNAME               # Custom domain configuration
└── README.md           # This file

Terms and Privacy Policy adapted from Basecamp’s open-source policies, used under CC BY 4.0 license. Attribution included in page footers.


Contact