All smoke tests now use SqliteFragmentRepository. The in-memory
implementation has no remaining references and can be revisited
when a caching layer is needed.
Co-Authored-By: Oz <oz-agent@warp.dev>
- Switch NewService() from InMemoryFragmentRepository to SqliteFragmentRepository
- Fix TestConfigServiceParityKeysAsync: AiProvider default is now llamasharp
Co-Authored-By: Oz <oz-agent@warp.dev>
- Rewrite repository layout with all current projects and config files
- Replace broken scripts/*.ps1 references with direct dotnet/npm commands
- Add Journal.AI to project table and dependency list
- Document central package management (Directory.Build/Packages.props)
- Update npm commands to use workspace flags (-w Journal.App)
- Rename Scripts section to SDT DevTool, reference Journal.DevTool/scripts/
- Remove stale notes about WebGateway exclusion from slnx
Co-Authored-By: Oz <oz-agent@warp.dev>
sdt can compile journal and other projects.
it using a json config system.
this program's Repo exists on the Gitea under stan.
Readme included as well.
- Add Directory.Build.props with shared TargetFramework/Nullable/ImplicitUsings
- Add Directory.Packages.props for centralized NuGet version management
- Strip duplicated properties and Version attributes from all .csproj files
- Fix Directory.Build.props TFM from net10 to net10.0
- Configure npm workspaces in root package.json (Journal.App)
- Hoist node_modules to repo root with single lockfile
- Add node_modules/ to .gitignore
- Remove Journal.DevTool contents, keep as empty folder with .gitkeep
- Remove Journal.DevTool from solution and npm workspaces
Co-Authored-By: Oz <oz-agent@warp.dev>
- Increase ChatJsonAsync max tokens 1024 → 2048 to prevent truncation
- Lower JSON temperature 0.7 → 0.2 for more deterministic output
- Add TryRepairJson fallback to close incomplete JSON from model
- Strengthen JSON system prompt to reduce narrative drift
- Generate icon.svg, icon.ico from source icon.png
- Update Navbar sidebar logo to use icon.png
- Update app.html favicon to use icon.ico
- Copy icon.ico to Tauri icons directory
Co-Authored-By: Oz <oz-agent@warp.dev>
- Add Journal.AI project with LLamaSharp-based AI service (Phi-3 model)
- Implement coach sessions (daily check-in, evening review, weekly review)
- Add conversation CRUD with SQLCipher persistence
- AI chat with full conversation history for context-aware replies
- Frontend: CoachPanel, AI stores, conversation stores, side panel UI
- Conversation list with create, rename, and delete support
- Fix Phi-3 output quality (system prompt leaking, token cleanup, JSON filtering)
- Fix CREATEDRAFT kind override in coach sessions
Co-Authored-By: Oz <oz-agent@warp.dev>