Skip to content

Commit 4cd692b

Browse files
committed
chore: rewrite .gitignore and untrack internal operational artifacts
.gitignore rewritten with rationale per exclusion category: - Secrets: .env, .env.*, *.pem, *.key, *.cert - Internal operational artifacts: sync-to-mac.sh, SYSTEM_LOG.md, SYSTEM_LOG_ARCHIVE.md (NAS/instance-specific, not governance content) - Superseded internal audits: AUDIT_REPORT.md (replaced by FULL_AUDIT.md), MIGRATION_STATUS.md, VALIDATION_REPORT.md - Standard exclusions: tmp files, logs, node_modules, IDE settings, OS files Untracked from index (files remain on disk, will not appear in future commits): - AUDIT_REPORT.md (legacy Jules audit, superseded by FULL_AUDIT.md) - sync-to-mac.sh (NAS-specific infrastructure script, not part of framework) FULL_AUDIT.md, SECURITY_AUDIT.md remain tracked — they are canonical governance audit outputs intended for public distribution.
1 parent 4ba1fbf commit 4cd692b

3 files changed

Lines changed: 46 additions & 116 deletions

File tree

.gitignore

Lines changed: 46 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,48 @@
1-
# Not for Public View
1+
# PC2E Agent Governance Framework — .gitignore
2+
# Files in this repository are public governance documentation.
3+
# This file excludes internal operational artifacts and secrets.
24

5+
# ─── Secrets ──────────────────────────────────────────────────────────────────
6+
.env
7+
.env.*
8+
*.pem
9+
*.key
10+
*.cert
11+
12+
# ─── Internal operational artifacts (NAS/instance-specific) ──────────────────
13+
# These are project-instance files — not part of the governance standard itself
14+
sync-to-mac.sh
15+
SYSTEM_LOG.md
16+
SYSTEM_LOG_ARCHIVE.md
17+
18+
# ─── Superseded internal audit artifacts ──────────────────────────────────────
19+
# FULL_AUDIT.md and SECURITY_AUDIT.md are canonical — these are legacy internals
20+
AUDIT_REPORT.md
21+
MIGRATION_STATUS.md
322
VALIDATION_REPORT.md
4-
MIGRATION_STATUS.md
23+
24+
# ─── Temporary and editor files ───────────────────────────────────────────────
25+
*.tmp
26+
*.temp
27+
*_backup.*
28+
*_old.*
29+
*.swp
30+
*.swo
31+
.DS_Store
32+
Thumbs.db
33+
34+
# ─── Logs ─────────────────────────────────────────────────────────────────────
35+
logs/
36+
*.log
37+
38+
# ─── Dependency and build artifacts ───────────────────────────────────────────
39+
node_modules/
40+
venv/
41+
.venv/
42+
__pycache__/
43+
*.pyc
44+
.cache/
45+
46+
# ─── IDE settings ─────────────────────────────────────────────────────────────
47+
.vscode/
48+
.idea/

AUDIT_REPORT.md

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

sync-to-mac.sh

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

0 commit comments

Comments
 (0)