data_porter 0.1.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (168) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +62 -1
  3. data/README.md +63 -386
  4. data/ROADMAP.md +89 -0
  5. data/app/assets/javascripts/data_porter/stimulus.min.js +2 -0
  6. data/app/assets/javascripts/data_porter/turbo.min.js +29 -0
  7. data/app/assets/stylesheets/data_porter/alerts.css +25 -0
  8. data/app/assets/stylesheets/data_porter/application.css +12 -646
  9. data/app/assets/stylesheets/data_porter/badges.css +73 -0
  10. data/app/assets/stylesheets/data_porter/base.css +56 -0
  11. data/app/assets/stylesheets/data_porter/cards.css +60 -0
  12. data/app/assets/stylesheets/data_porter/layout.css +128 -0
  13. data/app/assets/stylesheets/data_porter/mapping.css +79 -0
  14. data/app/assets/stylesheets/data_porter/modal.css +49 -0
  15. data/app/assets/stylesheets/data_porter/preview.css +24 -0
  16. data/app/assets/stylesheets/data_porter/progress.css +37 -0
  17. data/app/assets/stylesheets/data_porter/table.css +45 -0
  18. data/app/controllers/data_porter/imports_controller.rb +74 -10
  19. data/app/controllers/data_porter/mapping_templates_controller.rb +85 -0
  20. data/app/javascript/data_porter/mapping_controller.js +86 -0
  21. data/app/javascript/data_porter/progress_controller.js +1 -1
  22. data/app/javascript/data_porter/template_form_controller.js +46 -0
  23. data/app/jobs/data_porter/extract_headers_job.rb +12 -0
  24. data/app/models/data_porter/data_import.rb +8 -2
  25. data/app/models/data_porter/mapping_template.rb +15 -0
  26. data/app/views/data_porter/imports/index.html.erb +9 -8
  27. data/app/views/data_porter/imports/new.html.erb +10 -4
  28. data/app/views/data_porter/imports/show.html.erb +41 -13
  29. data/app/views/data_porter/mapping_templates/_form.html.erb +40 -0
  30. data/app/views/data_porter/mapping_templates/edit.html.erb +11 -0
  31. data/app/views/data_porter/mapping_templates/index.html.erb +42 -0
  32. data/app/views/data_porter/mapping_templates/new.html.erb +11 -0
  33. data/app/views/layouts/data_porter/application.html.erb +162 -0
  34. data/config/routes.rb +3 -0
  35. data/docs/CONFIGURATION.md +81 -0
  36. data/docs/MAPPING.md +44 -0
  37. data/docs/SOURCES.md +94 -0
  38. data/docs/TARGETS.md +176 -0
  39. data/docs/screenshots/mapping.jpg +0 -0
  40. data/lib/data_porter/components/mapping/column_row.rb +52 -0
  41. data/lib/data_porter/components/mapping/form.rb +127 -0
  42. data/lib/data_porter/components/mapping/template_select.rb +35 -0
  43. data/lib/data_porter/components/preview/results_summary.rb +21 -0
  44. data/lib/data_porter/components/preview/summary_cards.rb +32 -0
  45. data/lib/data_porter/components/preview/table.rb +56 -0
  46. data/lib/data_porter/components/progress/bar.rb +35 -0
  47. data/lib/data_porter/components/shared/failure_alert.rb +22 -0
  48. data/lib/data_porter/components/shared/status_badge.rb +18 -0
  49. data/lib/data_porter/components.rb +9 -6
  50. data/lib/data_porter/configuration.rb +1 -1
  51. data/lib/data_porter/engine.rb +7 -1
  52. data/lib/data_porter/orchestrator.rb +21 -1
  53. data/lib/data_porter/sources/base.rb +18 -3
  54. data/lib/data_porter/sources/csv.rb +5 -0
  55. data/lib/data_porter/sources/xlsx.rb +76 -0
  56. data/lib/data_porter/sources.rb +3 -1
  57. data/lib/data_porter/version.rb +1 -1
  58. data/lib/generators/data_porter/install/install_generator.rb +4 -0
  59. data/lib/generators/data_porter/install/templates/create_data_porter_mapping_templates.rb.erb +16 -0
  60. data/lib/generators/data_porter/install/templates/initializer.rb +1 -1
  61. metadata +72 -135
  62. data/.claude/commands/blog-status.md +0 -10
  63. data/.claude/commands/blog.md +0 -109
  64. data/.claude/commands/task-done.md +0 -27
  65. data/.claude/commands/tm/add-dependency.md +0 -58
  66. data/.claude/commands/tm/add-subtask.md +0 -79
  67. data/.claude/commands/tm/add-task.md +0 -81
  68. data/.claude/commands/tm/analyze-complexity.md +0 -124
  69. data/.claude/commands/tm/analyze-project.md +0 -100
  70. data/.claude/commands/tm/auto-implement-tasks.md +0 -100
  71. data/.claude/commands/tm/command-pipeline.md +0 -80
  72. data/.claude/commands/tm/complexity-report.md +0 -120
  73. data/.claude/commands/tm/convert-task-to-subtask.md +0 -74
  74. data/.claude/commands/tm/expand-all-tasks.md +0 -52
  75. data/.claude/commands/tm/expand-task.md +0 -52
  76. data/.claude/commands/tm/fix-dependencies.md +0 -82
  77. data/.claude/commands/tm/help.md +0 -101
  78. data/.claude/commands/tm/init-project-quick.md +0 -49
  79. data/.claude/commands/tm/init-project.md +0 -53
  80. data/.claude/commands/tm/install-taskmaster.md +0 -118
  81. data/.claude/commands/tm/learn.md +0 -106
  82. data/.claude/commands/tm/list-tasks-by-status.md +0 -42
  83. data/.claude/commands/tm/list-tasks-with-subtasks.md +0 -30
  84. data/.claude/commands/tm/list-tasks.md +0 -46
  85. data/.claude/commands/tm/next-task.md +0 -69
  86. data/.claude/commands/tm/parse-prd-with-research.md +0 -51
  87. data/.claude/commands/tm/parse-prd.md +0 -52
  88. data/.claude/commands/tm/project-status.md +0 -67
  89. data/.claude/commands/tm/quick-install-taskmaster.md +0 -23
  90. data/.claude/commands/tm/remove-all-subtasks.md +0 -94
  91. data/.claude/commands/tm/remove-dependency.md +0 -65
  92. data/.claude/commands/tm/remove-subtask.md +0 -87
  93. data/.claude/commands/tm/remove-subtasks.md +0 -89
  94. data/.claude/commands/tm/remove-task.md +0 -110
  95. data/.claude/commands/tm/setup-models.md +0 -52
  96. data/.claude/commands/tm/show-task.md +0 -85
  97. data/.claude/commands/tm/smart-workflow.md +0 -58
  98. data/.claude/commands/tm/sync-readme.md +0 -120
  99. data/.claude/commands/tm/tm-main.md +0 -147
  100. data/.claude/commands/tm/to-cancelled.md +0 -58
  101. data/.claude/commands/tm/to-deferred.md +0 -50
  102. data/.claude/commands/tm/to-done.md +0 -47
  103. data/.claude/commands/tm/to-in-progress.md +0 -39
  104. data/.claude/commands/tm/to-pending.md +0 -35
  105. data/.claude/commands/tm/to-review.md +0 -43
  106. data/.claude/commands/tm/update-single-task.md +0 -122
  107. data/.claude/commands/tm/update-task.md +0 -75
  108. data/.claude/commands/tm/update-tasks-from-id.md +0 -111
  109. data/.claude/commands/tm/validate-dependencies.md +0 -72
  110. data/.claude/commands/tm/view-models.md +0 -52
  111. data/.env.example +0 -12
  112. data/.mcp.json +0 -24
  113. data/.taskmaster/CLAUDE.md +0 -435
  114. data/.taskmaster/config.json +0 -44
  115. data/.taskmaster/docs/prd.txt +0 -2044
  116. data/.taskmaster/state.json +0 -6
  117. data/.taskmaster/tasks/task_001.md +0 -19
  118. data/.taskmaster/tasks/task_002.md +0 -19
  119. data/.taskmaster/tasks/task_003.md +0 -19
  120. data/.taskmaster/tasks/task_004.md +0 -19
  121. data/.taskmaster/tasks/task_005.md +0 -19
  122. data/.taskmaster/tasks/task_006.md +0 -19
  123. data/.taskmaster/tasks/task_007.md +0 -19
  124. data/.taskmaster/tasks/task_008.md +0 -19
  125. data/.taskmaster/tasks/task_009.md +0 -19
  126. data/.taskmaster/tasks/task_010.md +0 -19
  127. data/.taskmaster/tasks/task_011.md +0 -19
  128. data/.taskmaster/tasks/task_012.md +0 -19
  129. data/.taskmaster/tasks/task_013.md +0 -19
  130. data/.taskmaster/tasks/task_014.md +0 -19
  131. data/.taskmaster/tasks/task_015.md +0 -19
  132. data/.taskmaster/tasks/task_016.md +0 -19
  133. data/.taskmaster/tasks/task_017.md +0 -19
  134. data/.taskmaster/tasks/task_018.md +0 -19
  135. data/.taskmaster/tasks/task_019.md +0 -19
  136. data/.taskmaster/tasks/task_020.md +0 -19
  137. data/.taskmaster/tasks/tasks.json +0 -299
  138. data/.taskmaster/templates/example_prd.txt +0 -47
  139. data/.taskmaster/templates/example_prd_rpg.txt +0 -511
  140. data/CLAUDE.md +0 -65
  141. data/config/database.yml +0 -3
  142. data/docs/SPEC.md +0 -2012
  143. data/docs/UI.md +0 -32
  144. data/docs/blog/001-why-build-a-data-import-engine.md +0 -166
  145. data/docs/blog/002-scaffolding-a-rails-engine.md +0 -188
  146. data/docs/blog/003-configuration-dsl.md +0 -222
  147. data/docs/blog/004-store-model-jsonb.md +0 -237
  148. data/docs/blog/005-target-dsl.md +0 -284
  149. data/docs/blog/006-parsing-csv-sources.md +0 -300
  150. data/docs/blog/007-orchestrator.md +0 -247
  151. data/docs/blog/008-actioncable-stimulus.md +0 -376
  152. data/docs/blog/009-phlex-ui-components.md +0 -446
  153. data/docs/blog/010-controllers-routing.md +0 -374
  154. data/docs/blog/011-generators.md +0 -364
  155. data/docs/blog/012-json-api-sources.md +0 -323
  156. data/docs/blog/013-testing-rails-engine.md +0 -618
  157. data/docs/blog/014-dry-run.md +0 -307
  158. data/docs/blog/015-publishing-retro.md +0 -264
  159. data/docs/blog/016-erb-view-templates.md +0 -431
  160. data/docs/blog/017-showcase-final-retro.md +0 -220
  161. data/docs/blog/BACKLOG.md +0 -8
  162. data/docs/blog/SERIES.md +0 -154
  163. data/lib/data_porter/components/failure_alert.rb +0 -20
  164. data/lib/data_porter/components/preview_table.rb +0 -54
  165. data/lib/data_porter/components/progress_bar.rb +0 -33
  166. data/lib/data_porter/components/results_summary.rb +0 -19
  167. data/lib/data_porter/components/status_badge.rb +0 -16
  168. data/lib/data_porter/components/summary_cards.rb +0 -30
@@ -1,122 +0,0 @@
1
- Update Single Task
2
-
3
- Arguments: $ARGUMENTS
4
- Update a single specific task with new information.
5
-
6
- Arguments: $ARGUMENTS
7
-
8
- Parse task ID and update details.
9
-
10
- ## Single Task Update
11
-
12
- Precisely update one task with AI assistance to maintain consistency.
13
-
14
- ## Argument Parsing
15
-
16
- Natural language updates:
17
- - "5: add caching requirement"
18
- - "update 5 to include error handling"
19
- - "task 5 needs rate limiting"
20
- - "5 change priority to high"
21
-
22
- ## Execution
23
-
24
- ```bash
25
- task-master update-task --id=<id> --prompt="<context>"
26
- ```
27
-
28
- ## Update Types
29
-
30
- ### 1. **Content Updates**
31
- - Enhance description
32
- - Add requirements
33
- - Clarify details
34
- - Update acceptance criteria
35
-
36
- ### 2. **Metadata Updates**
37
- - Change priority
38
- - Adjust time estimates
39
- - Update complexity
40
- - Modify dependencies
41
-
42
- ### 3. **Strategic Updates**
43
- - Revise approach
44
- - Change test strategy
45
- - Update implementation notes
46
- - Adjust subtask needs
47
-
48
- ## AI-Powered Updates
49
-
50
- The AI:
51
- 1. **Understands Context**
52
- - Reads current task state
53
- - Identifies update intent
54
- - Maintains consistency
55
- - Preserves important info
56
-
57
- 2. **Applies Changes**
58
- - Updates relevant fields
59
- - Keeps style consistent
60
- - Adds without removing
61
- - Enhances clarity
62
-
63
- 3. **Validates Results**
64
- - Checks coherence
65
- - Verifies completeness
66
- - Maintains relationships
67
- - Suggests related updates
68
-
69
- ## Example Updates
70
-
71
- ```
72
- /taskmaster:update/single 5: add rate limiting
73
- → Updating Task #5: "Implement API endpoints"
74
-
75
- Current: Basic CRUD endpoints
76
- Adding: Rate limiting requirements
77
-
78
- Updated sections:
79
- ✓ Description: Added rate limiting mention
80
- ✓ Details: Added specific limits (100/min)
81
- ✓ Test Strategy: Added rate limit tests
82
- ✓ Complexity: Increased from 5 to 6
83
- ✓ Time Estimate: Increased by 2 hours
84
-
85
- Suggestion: Also update task #6 (API Gateway) for consistency?
86
- ```
87
-
88
- ## Smart Features
89
-
90
- 1. **Incremental Updates**
91
- - Adds without overwriting
92
- - Preserves work history
93
- - Tracks what changed
94
- - Shows diff view
95
-
96
- 2. **Consistency Checks**
97
- - Related task alignment
98
- - Subtask compatibility
99
- - Dependency validity
100
- - Timeline impact
101
-
102
- 3. **Update History**
103
- - Timestamp changes
104
- - Track who/what updated
105
- - Reason for update
106
- - Previous versions
107
-
108
- ## Field-Specific Updates
109
-
110
- Quick syntax for specific fields:
111
- - "5 priority:high" → Update priority only
112
- - "5 add-time:4h" → Add to time estimate
113
- - "5 status:review" → Change status
114
- - "5 depends:3,4" → Add dependencies
115
-
116
- ## Post-Update
117
-
118
- - Show updated task
119
- - Highlight changes
120
- - Check related tasks
121
- - Update suggestions
122
- - Timeline adjustments
@@ -1,75 +0,0 @@
1
- Update Task
2
-
3
- Arguments: $ARGUMENTS
4
- Update tasks with intelligent field detection and bulk operations.
5
-
6
- Arguments: $ARGUMENTS
7
-
8
- ## Intelligent Task Updates
9
-
10
- Parse arguments to determine update intent and execute smartly.
11
-
12
- ### 1. **Natural Language Processing**
13
-
14
- Understand update requests like:
15
- - "mark 23 as done" → Update status to done
16
- - "increase priority of 45" → Set priority to high
17
- - "add dependency on 12 to task 34" → Add dependency
18
- - "tasks 20-25 need review" → Bulk status update
19
- - "all API tasks high priority" → Pattern-based update
20
-
21
- ### 2. **Smart Field Detection**
22
-
23
- Automatically detect what to update:
24
- - Status keywords: done, complete, start, pause, review
25
- - Priority changes: urgent, high, low, deprioritize
26
- - Dependency updates: depends on, blocks, after
27
- - Assignment: assign to, owner, responsible
28
- - Time: estimate, spent, deadline
29
-
30
- ### 3. **Bulk Operations**
31
-
32
- Support for multiple task updates:
33
- ```
34
- Examples:
35
- - "complete tasks 12, 15, 18"
36
- - "all pending auth tasks to in-progress"
37
- - "increase priority for tasks blocking 45"
38
- - "defer all documentation tasks"
39
- ```
40
-
41
- ### 4. **Contextual Validation**
42
-
43
- Before updating, check:
44
- - Status transitions are valid
45
- - Dependencies don't create cycles
46
- - Priority changes make sense
47
- - Bulk updates won't break project flow
48
-
49
- Show preview:
50
- ```
51
- Update Preview:
52
- ─────────────────
53
- Tasks to update: #23, #24, #25
54
- Change: status → in-progress
55
- Impact: Will unblock tasks #30, #31
56
- Warning: Task #24 has unmet dependencies
57
- ```
58
-
59
- ### 5. **Smart Suggestions**
60
-
61
- Based on update:
62
- - Completing task? → Show newly unblocked tasks
63
- - Changing priority? → Show impact on sprint
64
- - Adding dependency? → Check for conflicts
65
- - Bulk update? → Show summary of changes
66
-
67
- ### 6. **Workflow Integration**
68
-
69
- After updates:
70
- - Auto-update dependent task states
71
- - Trigger status recalculation
72
- - Update sprint/milestone progress
73
- - Log changes with context
74
-
75
- Result: Flexible, intelligent task updates with safety checks.
@@ -1,111 +0,0 @@
1
- Update Tasks From ID
2
-
3
- Arguments: $ARGUMENTS
4
- Update multiple tasks starting from a specific ID.
5
-
6
- Arguments: $ARGUMENTS
7
-
8
- Parse starting task ID and update context.
9
-
10
- ## Bulk Task Updates
11
-
12
- Update multiple related tasks based on new requirements or context changes.
13
-
14
- ## Argument Parsing
15
-
16
- - "from 5: add security requirements"
17
- - "5 onwards: update API endpoints"
18
- - "starting at 5: change to use new framework"
19
-
20
- ## Execution
21
-
22
- ```bash
23
- task-master update --from=<id> --prompt="<context>"
24
- ```
25
-
26
- ## Update Process
27
-
28
- ### 1. **Task Selection**
29
- Starting from specified ID:
30
- - Include the task itself
31
- - Include all dependent tasks
32
- - Include related subtasks
33
- - Smart boundary detection
34
-
35
- ### 2. **Context Application**
36
- AI analyzes the update context and:
37
- - Identifies what needs changing
38
- - Maintains consistency
39
- - Preserves completed work
40
- - Updates related information
41
-
42
- ### 3. **Intelligent Updates**
43
- - Modify descriptions appropriately
44
- - Update test strategies
45
- - Adjust time estimates
46
- - Revise dependencies if needed
47
-
48
- ## Smart Features
49
-
50
- 1. **Scope Detection**
51
- - Find natural task groupings
52
- - Identify related features
53
- - Stop at logical boundaries
54
- - Avoid over-updating
55
-
56
- 2. **Consistency Maintenance**
57
- - Keep naming conventions
58
- - Preserve relationships
59
- - Update cross-references
60
- - Maintain task flow
61
-
62
- 3. **Change Preview**
63
- ```
64
- Bulk Update Preview
65
- ━━━━━━━━━━━━━━━━━━
66
- Starting from: Task #5
67
- Tasks to update: 8 tasks + 12 subtasks
68
-
69
- Context: "add security requirements"
70
-
71
- Changes will include:
72
- - Add security sections to descriptions
73
- - Update test strategies for security
74
- - Add security-related subtasks where needed
75
- - Adjust time estimates (+20% average)
76
-
77
- Continue? (y/n)
78
- ```
79
-
80
- ## Example Updates
81
-
82
- ```
83
- /taskmaster:update-tasks-from-id 5: change database to PostgreSQL
84
- → Analyzing impact starting from task #5
85
- → Found 6 related tasks to update
86
- → Updates will maintain consistency
87
- → Preview changes? (y/n)
88
-
89
- Applied updates:
90
- ✓ Task #5: Updated connection logic references
91
- ✓ Task #6: Changed migration approach
92
- ✓ Task #7: Updated query syntax notes
93
- ✓ Task #8: Revised testing strategy
94
- ✓ Task #9: Updated deployment steps
95
- ✓ Task #12: Changed backup procedures
96
- ```
97
-
98
- ## Safety Features
99
-
100
- - Preview all changes
101
- - Selective confirmation
102
- - Rollback capability
103
- - Change logging
104
- - Validation checks
105
-
106
- ## Post-Update
107
-
108
- - Summary of changes
109
- - Consistency verification
110
- - Suggest review tasks
111
- - Update timeline if needed
@@ -1,72 +0,0 @@
1
- Validate Dependencies
2
- Validate all task dependencies for issues.
3
-
4
- ## Dependency Validation
5
-
6
- Comprehensive check for dependency problems across the entire project.
7
-
8
- ## Execution
9
-
10
- ```bash
11
- task-master validate-dependencies
12
- ```
13
-
14
- ## Validation Checks
15
-
16
- 1. **Circular Dependencies**
17
- - A depends on B, B depends on A
18
- - Complex circular chains
19
- - Self-dependencies
20
-
21
- 2. **Missing Dependencies**
22
- - References to non-existent tasks
23
- - Deleted task references
24
- - Invalid task IDs
25
-
26
- 3. **Logical Issues**
27
- - Completed tasks depending on pending
28
- - Cancelled tasks in dependency chains
29
- - Impossible sequences
30
-
31
- 4. **Complexity Warnings**
32
- - Over-complex dependency chains
33
- - Too many dependencies per task
34
- - Bottleneck tasks
35
-
36
- ## Smart Analysis
37
-
38
- The validation provides:
39
- - Visual dependency graph
40
- - Critical path analysis
41
- - Bottleneck identification
42
- - Suggested optimizations
43
-
44
- ## Report Format
45
-
46
- ```
47
- Dependency Validation Report
48
- ━━━━━━━━━━━━━━━━━━━━━━━━━━
49
- ✅ No circular dependencies found
50
- ⚠️ 2 warnings found:
51
- - Task #23 has 7 dependencies (consider breaking down)
52
- - Task #45 blocks 5 other tasks (potential bottleneck)
53
- ❌ 1 error found:
54
- - Task #67 depends on deleted task #66
55
-
56
- Critical Path: #1 → #5 → #23 → #45 → #50 (15 days)
57
- ```
58
-
59
- ## Actionable Output
60
-
61
- For each issue found:
62
- - Clear description
63
- - Impact assessment
64
- - Suggested fix
65
- - Command to resolve
66
-
67
- ## Next Steps
68
-
69
- After validation:
70
- - Run `/taskmaster:fix-dependencies` to auto-fix
71
- - Manually adjust problematic dependencies
72
- - Rerun to verify fixes
@@ -1,52 +0,0 @@
1
- View Models
2
- View current AI model configuration.
3
-
4
- ## Model Configuration Display
5
-
6
- Shows the currently configured AI providers and models for Task Master.
7
-
8
- ## Execution
9
-
10
- ```bash
11
- task-master models
12
- ```
13
-
14
- ## Information Displayed
15
-
16
- 1. **Main Provider**
17
- - Model ID and name
18
- - API key status (configured/missing)
19
- - Usage: Primary task generation
20
-
21
- 2. **Research Provider**
22
- - Model ID and name
23
- - API key status
24
- - Usage: Enhanced research mode
25
-
26
- 3. **Fallback Provider**
27
- - Model ID and name
28
- - API key status
29
- - Usage: Backup when main fails
30
-
31
- ## Visual Status
32
-
33
- ```
34
- Task Master AI Model Configuration
35
- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
36
- Main: ✅ claude-3-5-sonnet (configured)
37
- Research: ✅ perplexity-sonar (configured)
38
- Fallback: ⚠️ Not configured (optional)
39
-
40
- Available Models:
41
- - claude-3-5-sonnet
42
- - gpt-4-turbo
43
- - gpt-3.5-turbo
44
- - perplexity-sonar
45
- ```
46
-
47
- ## Next Actions
48
-
49
- Based on configuration:
50
- - If missing API keys → Suggest setup
51
- - If no research model → Explain benefits
52
- - If all configured → Show usage tips
data/.env.example DELETED
@@ -1,12 +0,0 @@
1
- # API Keys (Required to enable respective provider)
2
- ANTHROPIC_API_KEY="your_anthropic_api_key_here" # Required: Format: sk-ant-api03-...
3
- PERPLEXITY_API_KEY="your_perplexity_api_key_here" # Optional: Format: pplx-...
4
- OPENAI_API_KEY="your_openai_api_key_here" # Optional, for OpenAI models. Format: sk-proj-...
5
- GOOGLE_API_KEY="your_google_api_key_here" # Optional, for Google Gemini models.
6
- MISTRAL_API_KEY="your_mistral_key_here" # Optional, for Mistral AI models.
7
- XAI_API_KEY="YOUR_XAI_KEY_HERE" # Optional, for xAI AI models.
8
- GROQ_API_KEY="YOUR_GROQ_KEY_HERE" # Optional, for Groq models.
9
- OPENROUTER_API_KEY="YOUR_OPENROUTER_KEY_HERE" # Optional, for OpenRouter models.
10
- AZURE_OPENAI_API_KEY="your_azure_key_here" # Optional, for Azure OpenAI models (requires endpoint in .taskmaster/config.json).
11
- OLLAMA_API_KEY="your_ollama_api_key_here" # Optional: For remote Ollama servers that require authentication.
12
- GITHUB_API_KEY="your_github_api_key_here" # Optional: For GitHub import/export features. Format: ghp_... or github_pat_...
data/.mcp.json DELETED
@@ -1,24 +0,0 @@
1
- {
2
- "mcpServers": {
3
- "task-master-ai": {
4
- "type": "stdio",
5
- "command": "npx",
6
- "args": [
7
- "-y",
8
- "task-master-ai"
9
- ],
10
- "env": {
11
- "TASK_MASTER_TOOLS": "core",
12
- "ANTHROPIC_API_KEY": "YOUR_ANTHROPIC_API_KEY_HERE",
13
- "PERPLEXITY_API_KEY": "YOUR_PERPLEXITY_API_KEY_HERE",
14
- "OPENAI_API_KEY": "YOUR_OPENAI_KEY_HERE",
15
- "GOOGLE_API_KEY": "YOUR_GOOGLE_KEY_HERE",
16
- "XAI_API_KEY": "YOUR_XAI_KEY_HERE",
17
- "OPENROUTER_API_KEY": "YOUR_OPENROUTER_KEY_HERE",
18
- "MISTRAL_API_KEY": "YOUR_MISTRAL_KEY_HERE",
19
- "AZURE_OPENAI_API_KEY": "YOUR_AZURE_KEY_HERE",
20
- "OLLAMA_API_KEY": "YOUR_OLLAMA_API_KEY_HERE"
21
- }
22
- }
23
- }
24
- }