Skip to content

Commit e5180eb

Browse files
Merge pull request #12 from superbasicstudio/chore/update-gitignore-cleanup
chore: update .gitignore and repo hygiene (2.0.1)
2 parents e4a6531 + a0bdf2b commit e5180eb

39 files changed

Lines changed: 76 additions & 5186 deletions

.gitignore

100644100755
Lines changed: 58 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
# CORE FILES
2-
_core/
3-
_core/*
4-
5-
# dependencies
6-
/node_modules
1+
# Dependencies
2+
node_modules/
73
/.pnp
84
.pnp.*
95
.yarn/*
@@ -12,66 +8,76 @@ _core/*
128
!.yarn/releases
139
!.yarn/versions
1410

15-
# testing
16-
/coverage
11+
# Build output
12+
/build
13+
dist/
1714

18-
# next.js
19-
/.next/
20-
/out/
15+
# Testing & coverage
16+
/coverage
17+
.nyc_output/
18+
/test-results/
19+
/playwright-report/
20+
/blob-report/
21+
/playwright/.cache/
2122

22-
.vscode
23-
.vscode/
23+
# Environment files
24+
.env*
25+
!.env.example
2426

25-
# next.js
26-
/.next/
27-
.next/
28-
.next/**
29-
/out/
27+
# Private keys & certificates
28+
*.pem
29+
*.key
30+
*.cert
31+
*.crt
32+
*.p12
33+
*.pfx
34+
id_rsa
35+
id_rsa.*
36+
id_ed25519
37+
id_ed25519.*
3038

31-
#
32-
/build
39+
# Credentials & secrets
40+
credentials.json
41+
secrets.*
42+
config.local.*
3343

34-
# production
35-
/build
44+
# IDE & editor files
45+
.vscode/
46+
.idea/
47+
*.swp
48+
*.swo
49+
*.bak
50+
*~
3651

37-
# misc
52+
# OS files
3853
.DS_Store
39-
*.pem
54+
Thumbs.db
4055

41-
# debug
56+
# Logs
57+
*.log
4258
npm-debug.log*
4359
yarn-debug.log*
4460
yarn-error.log*
4561
.pnpm-debug.log*
4662

47-
# env files (can opt-in for committing if needed)
48-
# any .env* besides .env.example
49-
.env*
50-
.env.example
51-
.env*.local
52-
.env.local
53-
.env.seed
54-
.env.dev.local
55-
.env.development.local
56-
.env.test.local
57-
.env.production.local
58-
.env
63+
# Claude session data
64+
.claude/
5965

60-
# vercel
61-
.vercel
66+
# Temp & backup directories
67+
tmp/
68+
temp/
69+
conductor-backup/
70+
71+
# Test output directories
72+
temp-test*/
73+
test-temp*/
74+
test-project/
6275

63-
# typescript
76+
# TypeScript
6477
*.tsbuildinfo
65-
next-env.d.ts
6678

67-
# Playwright
68-
/test-results/
69-
/playwright-report/
70-
/blob-report/
71-
/playwright/.cache/
72-
# Exclude test result images but allow baseline snapshots
73-
tests/e2e/**/test-failed-*.png
74-
tests/e2e/**/test-failed-*.jpg
75-
tests/e2e/**/*-actual.png
76-
tests/e2e/**/*-diff.png
77-
tests/e2e/**/*-expected.png
79+
# Vercel
80+
.vercel
81+
82+
# Core files
83+
_core/

.npmignore

100644100755
Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Test directories
22
test/
33
test-project/
4+
temp-test*/
5+
test-temp*/
46

57
# Development files
68
*.test.js
@@ -18,4 +20,9 @@ Thumbs.db
1820
*.log
1921
npm-debug.log*
2022
yarn-debug.log*
21-
yarn-error.log*
23+
yarn-error.log*
24+
25+
# Backup & temp
26+
conductor-backup/
27+
tmp/
28+
temp/

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.0.1] - 2026-02-28
9+
10+
### Changed
11+
- Updated .gitignore with additional coverage for security-sensitive patterns
12+
- Removed example PII from documentation
13+
- General repository hygiene
14+
815
## [2.0.0] - 2025-06-17
916

1017
### Breaking Changes
@@ -144,6 +151,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
144151
- Critical error ledger
145152
- Support for multiple package managers (npm, npx, yarn, pnpm, bun)
146153

154+
[2.0.1]: https://github.com/superbasicstudio/claude-conductor/compare/v2.0.0...v2.0.1
147155
[2.0.0]: https://github.com/superbasicstudio/claude-conductor/compare/v1.3.0...v2.0.0
148156
[1.3.0]: https://github.com/superbasicstudio/claude-conductor/compare/v1.3.0-beta.1...v1.3.0
149157
[1.3.0-beta.1]: https://github.com/superbasicstudio/claude-conductor/compare/v1.2.0...v1.3.0-beta.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ npx claude-conduct
9999

100100
# Initialize in a specific directory
101101
npx claude-conductor ./my-project
102-
npx claude-conduct /Users/thomas/projects/myapp
102+
npx claude-conduct ~/projects/myapp
103103

104104
# Initialize with all 13 documentation templates
105105
npx claude-conductor --full

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "claude-conductor",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "Modular documentation framework for AI-assisted development with Claude Code",
55
"bin": {
66
"claude-conductor": "bin/init.js",

temp-test5/ARCHITECTURE.md

Lines changed: 0 additions & 58 deletions
This file was deleted.

temp-test5/BUILD.md

Lines changed: 0 additions & 103 deletions
This file was deleted.

temp-test5/CLAUDE.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)