-
Notifications
You must be signed in to change notification settings - Fork 26
feat: Claude Finance - Complete Personal Finance App Implementation #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat: implement comprehensive Claude Finance personal finance app
- Created finance-focused landing page with hero section, feature cards, and call-to-action - Updated authentication pages with Claude Finance branding and green color scheme - Built comprehensive TypeScript data models for assets, investments, expenses, income, and goals - Implemented finance dashboard with overview cards showing net worth, cash flow, and investment performance - Added tabbed data tables for viewing all financial data categories with proper formatting - Created React context for client-side state management with CRUD operations - Built modal forms for adding/editing assets, expenses, and income with validation - Updated sidebar navigation with finance-focused sections and Claude Finance branding - Added utility functions for currency formatting, date handling, and category colors - Integrated finance theme with green/emerald color palette 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Loading branch information
There are no files selected for viewing
64 changes: 64 additions & 0 deletions
CLAUDE.md
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| # Claude Code Task Management Guide | ||
|
|
||
| ## Documentation Available | ||
|
|
||
| 📚 **Project Documentation**: Check the documentation files in this directory for project-specific setup instructions and guides. | ||
| **Project Tasks**: Check the tasks directory in documentation/tasks for the list of tasks to be completed. Use the CLI commands below to interact with them. | ||
|
|
||
| ## MANDATORY Task Management Workflow | ||
|
|
||
| 🚨 **YOU MUST FOLLOW THIS EXACT WORKFLOW - NO EXCEPTIONS** 🚨 | ||
|
|
||
| ### **STEP 1: DISCOVER TASKS (MANDATORY)** | ||
| You MUST start by running this command to see all available tasks: | ||
| ```bash | ||
| task-manager list-tasks | ||
| ``` | ||
|
|
||
| ### **STEP 2: START EACH TASK (MANDATORY)** | ||
| Before working on any task, you MUST mark it as started: | ||
| ```bash | ||
| task-manager start-task <task_id> | ||
| ``` | ||
|
|
||
| ### **STEP 3: COMPLETE OR CANCEL EACH TASK (MANDATORY)** | ||
| After finishing implementation, you MUST mark the task as completed, or cancel if you cannot complete it: | ||
| ```bash | ||
| task-manager complete-task <task_id> "Brief description of what was implemented" | ||
| # or | ||
| task-manager cancel-task <task_id> "Reason for cancellation" | ||
| ``` | ||
|
|
||
| ## Task Files Location | ||
|
|
||
| 📁 **Task Data**: Your tasks are organized in the `documentation/tasks/` directory: | ||
| - Task JSON files contain complete task information | ||
| - Use ONLY the `task-manager` commands listed above | ||
| - Follow the mandatory workflow sequence for each task | ||
|
|
||
| ## MANDATORY Task Workflow Sequence | ||
|
|
||
| 🔄 **For EACH individual task, you MUST follow this sequence:** | ||
|
|
||
| 1. 📋 **DISCOVER**: `task-manager list-tasks` (first time only) | ||
| 2. 🚀 **START**: `task-manager start-task <task_id>` (mark as in progress) | ||
| 3. 💻 **IMPLEMENT**: Do the actual coding/implementation work | ||
| 4. ✅ **COMPLETE**: `task-manager complete-task <task_id> "What was done"` (or cancel with `task-manager cancel-task <task_id> "Reason"`) | ||
| 5. 🔁 **REPEAT**: Go to next task (start from step 2) | ||
|
|
||
| ## Task Status Options | ||
|
|
||
| - `pending` - Ready to work on | ||
| - `in_progress` - Currently being worked on | ||
| - `completed` - Successfully finished | ||
| - `blocked` - Cannot proceed (waiting for dependencies) | ||
| - `cancelled` - No longer needed | ||
|
|
||
| ## CRITICAL WORKFLOW RULES | ||
|
|
||
| ❌ **NEVER skip** the `task-manager start-task` command | ||
| ❌ **NEVER skip** the `task-manager complete-task` command (use `task-manager cancel-task` if a task is not planned, not required, or you must stop it) | ||
| ❌ **NEVER work on multiple tasks simultaneously** | ||
| ✅ **ALWAYS complete one task fully before starting the next** | ||
| ✅ **ALWAYS provide completion details in the complete command** | ||
| ✅ **ALWAYS follow the exact 3-step sequence: list → start → complete (or cancel if not required)** |
Oops, something went wrong.
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.