Commit Graph

70 Commits

Author SHA1 Message Date
LemonNexus 39d1b0d48d chore(deps): add python-dotenv to requirements
Required for loading .env configuration file.
2026-02-08 18:01:54 +00:00
LemonNexus 6ce23718bc fix(main): load .env file and respect USE_MOCK_DATA setting
- Add python-dotenv to load .env configuration
- Read USE_MOCK_DATA and EU_CHAT_LOG_PATH from environment
- Use real game log when USE_MOCK_DATA=false
- Show correct mode (Mock vs Live) in header
- Import os module for environment access

Fixes issue where app always used mock data regardless of .env settings.
2026-02-08 18:01:39 +00:00
LemonNexus bd506e53c2 fix(logs): update English patterns for actual game output format
- English loot uses parentheses: 'x (2)' not 'x 2'
- Add English damage pattern: 'You inflicted X points of damage'
- Support both Swedish and English damage dealt events
- Fix empty bracket pattern: [System] [] Message

Tested with real log output showing English client format.
2026-02-08 17:54:48 +00:00
LemonNexus c511ff2042 feat(logs): add Swedish language support from real game logs
- Add Swedish regex patterns based on real chat.log from user session
- Support loot, globals, skills, damage, healing, weapon tier
- Add real-chat-sample.log for testing (14 events parsed)
- LogWatcher now parses Swedish game client output correctly
2026-02-08 17:30:31 +00:00
LemonNexus dfe4e8125f feat: add gear management + Windows testing guide
- Fix terminology: Projects (activities) vs Sessions (gameplay)
- Add EntropiaNexusAPI integration for weapon/armor/tool stats
- Implement GearLoadout class for equipment management
- Calculate hunting/mining costs per hour
- Add DPP (Damage Per PEC) efficiency tracking
- Create comprehensive WINDOWS_TESTING_GUIDE.md
- Document live game testing scenarios
- Explain ROI calculations and data model

Ready for Windows PC live testing with game client.
2026-02-08 17:17:37 +00:00
LemonNexus a516ff4d0c fix(db): correct SQL comment syntax for SQLite compatibility
- Replace Python-style # comments with SQL-standard -- comments
- SQLite does not recognize # as comment character
- Fixes database initialization failure on first run

Test: Database now initializes successfully.
2026-02-08 17:06:45 +00:00
LemonNexus df5c0212e8 docs: update PROJECT_RESUME for Sprint 1 completion
- Mark Sprint 1 as complete with all deliverables
- Add main.py and USER_TEST_GUIDE.md to key files
- Update status: Ready for user testing v0.1.0
- Add Sprint 2 planning (GUI Foundation)

Application is now runnable and ready for first user test.
2026-02-08 17:03:38 +00:00
LemonNexus eae846ee6b feat(app): add main.py and user test guide for v0.1.0
- Create main.py with interactive CLI for user testing
- Implement menu system: projects, sessions, stats, archive
- Add live session mode with mock log watching
- Real-time event display (loot, globals, skills)
- Auto-generate mock chat.log on first run
- Add USER_TEST_GUIDE.md with test checklist
- Document expected output and troubleshooting

Application is now runnable for first user test.
2026-02-08 17:02:37 +00:00
LemonNexus 24a450de5e test(core): add pytest suite for Data Capture Engine
- Create comprehensive test suite for core modules
- Test DatabaseManager initialization and queries
- Test ProjectManager Data Principle implementation
- Test LogWatcher regex patterns (global, hof, loot, skill, decay)
- Test Observer Pattern subscribe/unsubscribe
- Test async polling functionality
- Test mock log generation
- Add integration test: Log -> Project -> Database flow

Tests validate Never-Break Rules #4 (Decimal precision) and #5 (testing).
2026-02-08 16:56:56 +00:00
LemonNexus 4efbf39e7e feat(core): implement LogWatcher with Observer Pattern
- Create LogWatcher using Observer Pattern for loose coupling
- Implement compiled regex patterns for EU chat.log parsing:
  - Global/HoF detection
  - Regular loot parsing
  - Skill gain tracking
  - Weapon decay monitoring
- Add async polling loop (1s interval for 60+ FPS compliance)
- Implement MockLogGenerator for testing
- Efficient file seeking (only reads new lines)
- Event types: global, hof, loot, skill, decay, kill, enhancer_break

Performance optimized: minimal CPU, non-blocking async.
2026-02-08 16:56:49 +00:00
LemonNexus 28b8921efa feat(core): implement ProjectManager with Data Principle
- Create ProjectManager class enforcing Data Principle
- Implement ProjectData, SessionData, LootEvent dataclasses
- Add create_project, load_project, archive_project methods
- Implement session lifecycle (start_session, end_session)
- Add loot recording with auto-screenshot trigger (>50 PED)
- Include analytics: get_project_summary, compare_to_historical
- All PED calculations use Decimal for precision (Rule #4)

Every session is a Project: auto-saved, archivable, comparable.
2026-02-08 16:56:40 +00:00
LemonNexus b47ddbec2e feat(db): initialize SQLite schema and DatabaseManager
- Create schema.sql with Data Principle support (projects, sessions, loot)
- Implement DatabaseManager with connection pooling and WAL mode
- Add Decimal adapter for PED/PEC precision (Rule #4)
- Enable foreign keys and performance optimizations (Rule #3)
- Add backup functionality for data safety

Database supports project archiving, session tracking, and
historical data comparison per Data Principle.
2026-02-08 16:56:32 +00:00
LemonNexus a630e25898 docs: add PROJECT_INDEX.md and update PROJECT_RESUME
- Create comprehensive PROJECT_INDEX.md with full directory structure
- Document current (documentation) vs target (implementation) structure
- Map all core modules and technology stack
- Update PROJECT_RESUME with Sprint 0 completion status
- Mark agent identity synchronization complete
- Reference AGENTS.md Never-Break Rules

Establishes canonical project reference for Lead Engineer workflow.
2026-02-08 16:45:58 +00:00
LemonNexus 63c5c8f624 feat: add Obsidian REST API endpoint configuration
- Add OBSIDIAN_API_URL for flexible endpoint configuration
- Default: localhost (127.0.0.1:27123) for local Obsidian
- Configurable for remote Obsidian instances (e.g., main PC)
- Requires Local REST API community plugin enabled

Allows agents to connect to Obsidian running on different
machines within the network.
2026-02-08 16:30:16 +00:00
LemonNexus d4f4fc9ecb feat: add Obsidian API integration configuration
- Add OBSIDIAN_API_KEY for agent integration with notes vault
- Add OBSIDIAN_VAULT_PATH for local file access
- Add OBSIDIAN_PROJECT_TEMPLATE for documentation templates

Enables AI agents to read/write project notes and maintain
knowledge base synchronization with Obsidian.
2026-02-08 16:28:41 +00:00
LemonNexus 355c5f27fe chore: add comprehensive .env.example and project resume
- Add complete .env.example template with all 15+ configuration sections
- Include Gitea SSH key configuration
- Update .gitignore to track .env.example while securing .env
- Add PROJECT_RESUME.md for development state tracking
- Create project directory structure

Resolves merge conflict with remote version by combining both
approaches: comprehensive documentation + SSH configuration.
2026-02-08 16:27:10 +00:00
LemonNexus ccee4841a6 chore: add .env.example template and project resume
- Add comprehensive .env.example with all configuration options documented
- Update .gitignore to track .env.example while keeping .env secure
- Add PROJECT_RESUME.md for development state tracking
- Create project directory structure (data, screenshots, logs, etc.)

The .env.example serves as documentation and setup reference for
new deployments while actual credentials remain gitignored.
2026-02-08 16:26:19 +00:00
ImpulsiveFPS c4ff917d75 feat(config): add .env.example template and update .gitignore 2026-02-08 17:24:49 +01:00
ImpulsiveFPS 2f29640ed3 docs: add AI knowledge base with project configuration and MCP server details 2026-02-08 17:07:36 +01:00
ImpulsiveFPS 420a03c4eb chore: initial secure push 2026-02-08 16:01:50 +01:00