mirror of
https://github.com/RightNow-AI/openfang.git
synced 2026-04-25 17:25:11 +02:00
* fix: use fixed agent ID for hand agents based on hand_id This ensures triggers and cron jobs continue to work after daemon restart, as hand agents now have stable IDs instead of generating a new UUID each time. Changes: - Add AgentId::from_string() method for deterministic ID generation - Modify spawn_agent_with_parent() to accept optional fixed_id - Use hand_id-based fixed ID in activate_hand() See: #519 * remove: remove serena local config from commit * chore: ignore .serena directory
48 lines
475 B
Plaintext
48 lines
475 B
Plaintext
# Build
|
|
/target
|
|
**/*.rs.bk
|
|
*.pdb
|
|
|
|
# Environment & secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Database
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# User config (may contain API keys)
|
|
config.toml
|
|
|
|
# Certificates & keys
|
|
*.pem
|
|
*.key
|
|
*.cert
|
|
*.p12
|
|
*.pfx
|
|
|
|
# Runtime artifacts
|
|
collector_hand_state.json
|
|
collector_knowledge_base.json
|
|
predictions_database.json
|
|
prediction_report_*.md
|
|
BUILD_LOG.md
|
|
|
|
# OS
|
|
.DS_Store
|
|
._*
|
|
Thumbs.db
|
|
|
|
# IDE & tools
|
|
.idea/
|
|
.vscode/
|
|
.claude/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.serena/
|