Conversation
… no-code rule in CLAUDE.md Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…ans, split from Phase 7 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- GET /profile/overview — spending by category, subscription summary, utilization
- GET /profile/merchants — all merchants ranked by total spend with 30-day trend
- GET /profile/merchants/{merchant_id} — heatmap, monthly trend, Argus insight
- profile engine: pure math for category aggregation, merchant rankings, detail
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
… Argus tools - get_profile_overview: spending by category, subscription summary, utilization - get_merchant_history: full merchant detail + trend, accepts merchant kwarg - call_tool extended to support **kwargs for tools with extra parameters Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Level 1: spending ring by category, subscription summary, utilization gauge, merchant rankings - Level 2: category drill-down — tap category to see merchants within it - Level 3: merchant detail — heatmap, monthly trend sparkline, Argus insight per merchant - Profile nav item added to sidebar Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Frontend dev server can bind to ports outside 3000-3009 (e.g. 3055). Wider range covers all common Turbopack/Next.js dev ports. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…flights BaseHTTPMiddleware doesn't intercept before Starlette's ASGI-level CORSMiddleware. Replaced with a raw ASGI wrapper that catches OPTIONS+PNA preflights before CORS sees them, returning 200 with Access-Control-Allow-Private-Network: true. Fixed middleware registration order (CORS first, PNA second = PNA outermost). Also adds empty state to profile page when no transaction data exists. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This branch was successfully deployed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
GET /profile/overview(spending by category, utilization, subscriptions),GET /profile/merchants(ranked by total spend + 30-day trend),GET /profile/merchants/{id}(heatmap, monthly trend, Argus insight)get_profile_overviewandget_merchant_historyregistered in tool registry so Argus can answer spending pattern questions in chatReact.Fragmentkey on HeatmapGrid row mapTest plan
/accounts— Plaid exchange completes without "Failed to fetch"/profileloads spending ring and merchant rankings once transactions existget_merchant_historytool/profileshows empty state + "Connect a bank" CTA when no data🤖 Generated with Claude Code