-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
34 lines (28 loc) · 1.54 KB
/
Copy path.gitignore
File metadata and controls
34 lines (28 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# ─── Secrets — never commit ───────────────────────────────────────────────
.env
.env.*
!.env.example
# ─── Your personal writing — kept local, never published ──────────────────
# Your real essays and the voice skill built from them stay on your machine.
# Publishing your schoolwork can get your own work flagged by plagiarism
# checkers later. Shareable stand-ins live in examples/ instead.
writing-samples/*
!writing-samples/README.md
.claude/skills/writing-voice/
# ─── Generated drafts & downloaded assignment files ───────────────────────
output/*
!output/.gitkeep
# ─── Vendored MCP server (cloned + built by setup/install.ps1) ────────────
vendor/
# ─── Node ─────────────────────────────────────────────────────────────────
node_modules/
npm-debug.log*
*.log
# ─── Claude Code local settings ───────────────────────────────────────────
.claude/settings.local.json
# ─── OS / editor cruft ────────────────────────────────────────────────────
.DS_Store
Thumbs.db
desktop.ini
.vscode/
.idea/