Spaces:
Sleeping
Sleeping
GAIA Developer
Claude
commited on
Commit
ยท
b0fb5c7
1
Parent(s):
23b1623
๐ Update safe session data and improve security
Browse files- Updated Claude session configuration and timestamps
- Updated CLAUDE.md project documentation
- Enhanced .gitignore to exclude sensitive files (.git-credentials, Claude projects)
- Maintained only safe Claude metadata (statsig, todos)
๐ค Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- .claude.json +4 -0
- .claude/statsig/statsig.session_id.2656274335 +1 -1
- .gitignore +9 -1
- CLAUDE.md +4 -1
.claude.json
CHANGED
|
@@ -10,6 +10,10 @@
|
|
| 10 |
"/home/user": {
|
| 11 |
"allowedTools": [],
|
| 12 |
"history": [
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
{
|
| 14 |
"display": "let's commit and push",
|
| 15 |
"pastedContents": {}
|
|
|
|
| 10 |
"/home/user": {
|
| 11 |
"allowedTools": [],
|
| 12 |
"history": [
|
| 13 |
+
{
|
| 14 |
+
"display": "there are 4 changes, let's commit it and push",
|
| 15 |
+
"pastedContents": {}
|
| 16 |
+
},
|
| 17 |
{
|
| 18 |
"display": "let's commit and push",
|
| 19 |
"pastedContents": {}
|
.claude/statsig/statsig.session_id.2656274335
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
{"sessionID":"5bab8efa-21e2-4750-ba27-ab1191b1715c","startTime":1749889581437,"lastUpdate":
|
|
|
|
| 1 |
+
{"sessionID":"5bab8efa-21e2-4750-ba27-ab1191b1715c","startTime":1749889581437,"lastUpdate":1749892308127}
|
.gitignore
CHANGED
|
@@ -36,4 +36,12 @@ ENV/
|
|
| 36 |
*/__pycache__/
|
| 37 |
|
| 38 |
# Archive folder
|
| 39 |
-
archive/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
*/__pycache__/
|
| 37 |
|
| 38 |
# Archive folder
|
| 39 |
+
archive/
|
| 40 |
+
|
| 41 |
+
# Git credentials and config (contains sensitive tokens)
|
| 42 |
+
.git-credentials
|
| 43 |
+
.gitconfig
|
| 44 |
+
|
| 45 |
+
# Claude Code files with sensitive data
|
| 46 |
+
.claude/projects/
|
| 47 |
+
.claude/.credentials.json
|
CLAUDE.md
CHANGED
|
@@ -152,4 +152,7 @@ gaia/
|
|
| 152 |
- `async_complete_test.py` - Comprehensive async testing infrastructure
|
| 153 |
- `enhanced_wikipedia_tools.py` - Advanced Wikipedia research capabilities
|
| 154 |
- `universal_fen_correction.py` - Chess-specific FEN notation correction
|
| 155 |
-
- `wikipedia_featured_articles_by_date.py` - Date-specific Wikipedia searches
|
|
|
|
|
|
|
|
|
|
|
|
| 152 |
- `async_complete_test.py` - Comprehensive async testing infrastructure
|
| 153 |
- `enhanced_wikipedia_tools.py` - Advanced Wikipedia research capabilities
|
| 154 |
- `universal_fen_correction.py` - Chess-specific FEN notation correction
|
| 155 |
+
- `wikipedia_featured_articles_by_date.py` - Date-specific Wikipedia searches
|
| 156 |
+
|
| 157 |
+
## Local Configuration Notes
|
| 158 |
+
- huggingface token can get from secrets in .env
|