Created: January 14, 2026
This repository hosts the public website for WithAI Research, Inc. at withai.nyc. It contains:
index.html) - Simple company pageterms.html) - Legal terms for WithAI VS Code extensionprivacy.html) - Privacy policy for WithAI VS Code extensionThese pages are linked from the WithAI VS Code extension (welcome popup, settings panel).
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?
withai-extension) is PRIVATE and contains proprietary codewithai.nyccd /Users/btsfinch/ben-home/intersection-home/withai.nyc
git init
git add .
git commit -m "Initial commit: legal pages and landing"
# 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.
main, folder: / (root)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
After DNS propagates (can take up to 48 hours, usually faster):
curl -I https://withai.nyc/terms
curl -I https://withai.nyc/privacy
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.
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.