1 min read
Windows Template
A CLAUDE.md template for Windows desktop apps — Electron, Tauri, or other cross-platform frameworks.
The Template
# App Name
A Windows desktop app that [core functionality].
---
## What This Is
[Description of the app]
## Tech Stack
- Desktop app ([Electron / Tauri / etc.])
- [React / Svelte / vanilla JS] for UI
- Target: Windows 10+
- Minimal external dependencies
## Current State
[Where is the project?]
## Features
- [ ] Core: [main feature]
- [ ] [Feature 2]
- [ ] [Feature 3]
- [ ] Polish & details
## Conventions
- Keep the app lightweight
- Use native window chrome where possible
- Follow Windows design patterns (system tray, taskbar integration)
- Clean, modern UI
## Structure
```
app-name/
├── package.json # Dependencies & scripts
├── main.js # Electron main process (or Tauri equivalent)
├── src/
│ ├── index.html # Entry point
│ ├── App.jsx # Main React component
│ ├── components/
│ │ └── ...
│ └── styles/
│ └── ...
└── assets/
└── icon.ico # Windows app icon
```
## Notes
[Anything specific to this project]