Commit Graph

4 Commits

Author SHA1 Message Date
PointStar 75505fbbff chore: remove broken VSTO host stub pending VS template regeneration
The hand-written legacy csproj at src/OutlookAddin/ is marked Unsupported
by VS 2022. Per PROJECT-BRIEFING.md (steps 5-11), the host project must
be regenerated from the VSTO template inside Visual Studio with the
Office workload — there is no CLI/dotnet template equivalent.

Removing now so the next VS session starts from a clean slate.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-11 13:26:45 +03:00
chaim 485056d46b docs: add PROJECT-BRIEFING.md for handoff to Windows VS session
Self-contained briefing for a fresh Claude Code session picking up work
on this project from a Windows machine running VS 2022. Covers:

- TL;DR + 4 features
- MailRouter API contract + EspoCRM endpoints
- Tech stack (locked decisions)
- Repo layout + current state
- Step-by-step recipe to regenerate the VSTO host project from the
  template (the hand-written csproj is incompatible with VS)
- Conventions + deferred work + open risks

Read this before doing anything: docs/PROJECT-BRIEFING.md.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-11 10:11:45 +00:00
chaim 5e47bca82f chore: bootstrap Task Master with 9-task PRD breakdown
Adds the Task Master AI workspace per ~/espocrm-extensions/CLAUDE.md
convention (per-extension .taskmaster/). The PRD parses into 9 tasks
matching the 6-week implementation plan:

  #1 Windows runner + code signing infra (high)
  #2 Core services: EspoCrmClient, DPAPI, settings, logger (high)
  #3 Feature 1: File mail to case (high)
  #4 Feature 2: Reading-pane sidebar (medium)
  #5 Feature 3: Compose from case (medium)
  #6 Feature 4: Folder auto-sync (medium)
  #7 Localization + RTL (medium)
  #8 ClickOnce publish + release pipeline (high)
  #9 Documentation + rollout (high)

Config uses provider=claude-code (free) per workspace convention.
Removed task-master init's overaggressive .gitignore entries
(*.sln, *.sw?, .vscode, .idea, *.ntvs*, *.njsproj, node_modules/)
that collided with this repo's VS solution file.

Refs Task Master: see .taskmaster/tasks/tasks.json

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-11 09:21:39 +00:00
chaim cf10db00a3 chore: scaffold Outlook VSTO Add-in for EspoCRM
Initial repo scaffold for a Windows VSTO/COM Outlook Add-in (C#/.NET FW 4.8)
that integrates Outlook desktop with EspoCRM via the existing MailRouter
v1.2.0 endpoint (POST /api/v1/MailRouter/file).

Includes:
- Solution + 4 csproj projects (host, Core, UI, Tests) under src/
- VSTO host project stub (ThisAddIn.cs, requires VS 2022 + Office workload to fully resolve)
- Core/UI/Tests as SDK-style net48 projects (NuGet: Polly, System.Text.Json,
  Serilog, CommunityToolkit.Mvvm, xUnit, Moq, FluentAssertions)
- .gitea/workflows/build.yml for Windows runner CI (publish/sign placeholders)
- docs/ARCHITECTURE.md (component diagram, threading model, per-feature flow)
- docs/ONBOARDING.md (Hebrew lawyer-facing install guide)

Server-side already in place: MailRouter v1.2.0 — see plan
~/.claude/plans/resilient-sauteeing-feather.md for the 6-week implementation
plan.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-11 09:05:07 +00:00