security: Add .gitignore and remove sensitive paths
- Add .gitignore to prevent sensitive data - Replace /home/roman with ~/.claude placeholder - No API keys or credentials in repository - No chat logs or conversation history 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
73
.gitignore
vendored
73
.gitignore
vendored
@@ -1,59 +1,40 @@
|
||||
# Claude Code SuperCharge - Git Ignore
|
||||
|
||||
# API Keys and Secrets
|
||||
# Sensitive data and credentials
|
||||
.env
|
||||
.env.*
|
||||
*.key
|
||||
*.pem
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
api_keys.txt
|
||||
secrets.txt
|
||||
*.secret
|
||||
credentials.json
|
||||
config.local.json
|
||||
settings.local.json
|
||||
|
||||
# User-specific data
|
||||
*.jsonl
|
||||
history.jsonl
|
||||
stats-cache.json
|
||||
# User-specific paths (replace with placeholders)
|
||||
# /home/roman -> ~/.claude or ~/user
|
||||
|
||||
# Session data
|
||||
# Chat logs and conversation history
|
||||
*.chat
|
||||
*.conversation
|
||||
*.transcript
|
||||
chat-logs/
|
||||
conversations/
|
||||
sessions/
|
||||
session-env/
|
||||
shell-snapshots/
|
||||
paste-cache/
|
||||
file-history/
|
||||
todos/
|
||||
plans/
|
||||
projects/
|
||||
debug/
|
||||
|
||||
# API keys and tokens
|
||||
api-keys.txt
|
||||
secrets.txt
|
||||
tokens.txt
|
||||
|
||||
# Claude Code CLI local data
|
||||
.claude/local/
|
||||
.claude/cache/
|
||||
.claude/logs/
|
||||
|
||||
# Temporary files
|
||||
*.tmp
|
||||
*.temp
|
||||
*.bak
|
||||
*.swp
|
||||
*~
|
||||
.ralph/
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.iml
|
||||
|
||||
# OS
|
||||
# OS files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Node modules
|
||||
node_modules/
|
||||
|
||||
# Python
|
||||
__pycache__/
|
||||
*.pyc
|
||||
*.pyo
|
||||
.venv/
|
||||
venv/
|
||||
|
||||
# Backup files
|
||||
*.backup
|
||||
*~
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"name": "ARC Protocol MCP",
|
||||
"description": "Subagent file operations and protocol implementation",
|
||||
"command": "python3",
|
||||
"args": ["/home/roman/.claude/ralph-integration/arc/.agent/mcp/arc_mcp_server.py"],
|
||||
"args": ["~/.claude/ralph-integration/arc/.agent/mcp/arc_mcp_server.py"],
|
||||
"enabled": true,
|
||||
"category": "core"
|
||||
},
|
||||
@@ -14,7 +14,7 @@
|
||||
"name": "Claude Memory",
|
||||
"description": "Persistent memory and context management for Claude",
|
||||
"command": "node",
|
||||
"args": ["/home/roman/.claude/plugins/cache/thedotmack/claude-mem/plugin/scripts/mcp-server.cjs"],
|
||||
"args": ["~/.claude/plugins/cache/thedotmack/claude-mem/plugin/scripts/mcp-server.cjs"],
|
||||
"enabled": true,
|
||||
"category": "memory"
|
||||
},
|
||||
@@ -31,7 +31,7 @@
|
||||
"name": "Filesystem MCP",
|
||||
"description": "Local filesystem access and operations",
|
||||
"command": "npx",
|
||||
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/home/roman"],
|
||||
"args": ["-y", "@modelcontextprotocol/server-filesystem", "~/.claude"],
|
||||
"enabled": true,
|
||||
"category": "core"
|
||||
},
|
||||
@@ -65,7 +65,7 @@
|
||||
"name": "SQLite MCP",
|
||||
"description": "SQLite database operations",
|
||||
"command": "npx",
|
||||
"args": ["-y", "@modelcontextprotocol/server-sqlite", "--db-path", "/home/roman/.claude/mcp-servers/data.db"],
|
||||
"args": ["-y", "@modelcontextprotocol/server-sqlite", "--db-path", "~/.claude/mcp-servers/data.db"],
|
||||
"enabled": true,
|
||||
"category": "database"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user