chore(config): fix typos#1
Merged
eyaltoledano merged 2 commits intoeyaltoledano:mainfrom Mar 22, 2025
Merged
Conversation
eyaltoledano
approved these changes
Mar 22, 2025
Owner
|
Thanks for this. That's what I get for renaming the project before release lol |
ProdByBuddha
referenced
this pull request
in ProdByBuddha/claude-task-master
Apr 9, 2025
chore(config): fix typos
jonathanpberger
referenced
this pull request
in discoveryworks/finesse
May 22, 2025
- Add finesse-* commands (incept, storymap, slice, sync, parse, list, next) to CLI - Create placeholder implementations in scripts/modules/finesse/ directory - Update help display to include new Finesse command category - Update CLAUDE.md with correct `tm` command format - All commands registered and working with proper error handling Implements Task #1: Set up Finesse command group structure 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
nehpz
added a commit
to rzp-labs/claude-task-master
that referenced
this pull request
Jun 20, 2025
…cies ✅ All 4 subtasks completed successfully: - Fixed Langfuse import statement (langfuse vs @langfuse/langfuse-js) - Updated .env.example with comprehensive Langfuse configuration - Tested integration with validation script and Jest - Created 36 comprehensive unit tests covering all scenarios 🧪 Test Results: - 36/36 Langfuse tracer tests passing - Comprehensive coverage of environment variables, graceful degradation, cloud/self-hosted configs - Edge case testing for parameter validation and concurrent operations 📝 Key Changes: - src/observability/langfuse-tracer.js: Fixed import and error message - .env.example: Added complete Langfuse configuration section - tests/unit/src/observability/langfuse-tracer.test.js: Full test suite - .vscode/settings.json: Fixed JSON syntax error 🔧 Quality Checks: - ✅ Core functionality verified working - ✅ All tests passing (36/36 Langfuse tests) - ✅ Biome check passing - ✅ Git status clean after commit 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
nehpz
added a commit
to rzp-labs/claude-task-master
that referenced
this pull request
Jun 20, 2025
- Fixed VSCode settings.json syntax error (trailing comma) - Applied biome auto-formatting to multiple files - Updated task status to 'done' in tasks.json - All critical functionality complete and tested 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
nehpz
added a commit
to rzp-labs/claude-task-master
that referenced
this pull request
Jun 20, 2025
- Removed task-1 worktree and branch - Updated worktree state tracking - Task eyaltoledano#1 "Setup Langfuse Environment and Dependencies" successfully merged to main 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
nehpz
added a commit
to rzp-labs/claude-task-master
that referenced
this pull request
Jun 20, 2025
✨ Major Enhancement to Task eyaltoledano#1: - Added config.json reading support to Langfuse tracer - Environment variables take precedence over config.json - Extended config-manager.js to read custom sections like observability - Added observability.langfuse configuration section to config.json 🔧 Configuration Hierarchy: 1. Environment variables (highest precedence) - LANGFUSE_SECRET_KEY, LANGFUSE_PUBLIC_KEY, etc. 2. config.json settings - observability.langfuse.secretKey, publicKey, etc. - observability.langfuse.enabled flag 📋 Key Features: - No .env file required - uses existing Task Master config system - Graceful fallback from env vars to config.json - Enhanced unit tests with config.json integration tests - Maintains backward compatibility with environment variables 🧪 Test Results: 37/39 tests passing - 2 expected failures due to Langfuse SDK not being installed - All configuration logic tests passing 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
memo4mj
added a commit
to memo4mj/claude-task-master
that referenced
this pull request
Aug 6, 2025
- Moved dependencies from meta section to footer for better visual hierarchy - Each dependency now displays as individual badge with status indicator - ✓ icon for completed dependencies (green) - \! icon for blocked dependencies (orange) - Dependencies show as "eyaltoledano#1", "eyaltoledano#2" format in separate badges - Updated CSS with flex layout for dependency indicators - Improved visual feedback for dependency status at a glance - Better alignment and spacing in task footer 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This was referenced Aug 13, 2025
Merged
stephanschielke
referenced
this pull request
in stephanschielke/cursor-task-master
Aug 22, 2025
🚀 REVOLUTIONARY BREAKTHROUGH: TaskMaster ↔ cursor-agent recursive integration Core Enhancement: - Enhanced CursorAgentProvider with dual-mode system (sequential/recursive) - Dynamic operation detection for expand_task, parse_prd, etc. - 8,433 character recursive MCP workflow instructions for cursor-agent - Self-managing AI agent workflows with TaskMaster MCP calls MCP Server Fixes: - Fixed performEnhancedResearch import path in research.js - Removed duplicate export in enhanced-research.js - MCP server now starts and runs successfully TaskMaster Integration: - Used TaskMaster to guide development of recursive integration - Task #1 completed with all 4 subtasks done via TaskMaster workflow - Branch cleanup documentation and progress tracking Testing Confirmed: - Recursive prompts successfully delivered to cursor-agent - MCP server runs without errors - Core TaskMaster functionality verified - Ready for meta-TaskMaster development
Marmalade118
referenced
this pull request
in marwood-inc/claude-task-master-full
Nov 1, 2025
…tection
## Summary
Implemented comprehensive PRD preprocessing and smart auto-detection for incremental PRDs, achieving 67% token reduction on RPG templates with zero breaking changes.
## Changes
### 1. PRD Preprocessor (parse-prd-helpers.js)
- Added preprocessPRD() function to strip instructional scaffolding
- Removes: <rpg-method> wrapper, <instruction> blocks, <example> blocks, <task-master-integration> section
- Preserves: All actual requirements (capabilities, dependencies, phases, etc.)
- Integrated into
eadPrdContent() - runs automatically by default
- Opt-out available via { noPreprocess: true } option
### 2. Incremental PRD Detection (parse-prd-helpers.js)
- Added detectIncrementalPRD() function with smart pattern matching
- Detects task ID references: eyaltoledano#123, Task eyaltoledano#45 (1-4 digits)
- Detects incremental keywords: builds on, extends, Phase 2, etc.
- Regex: /(?:^|\s|task\s+)#(\d{1,4})(?!\d)/gi (avoids hex colors)
- Zero false positives in 22 comprehensive tests
### 3. Task Summarization (parse-prd-helpers.js)
- Added summarizeTasksForContext() function
- Creates lightweight task summaries: ~50-100 tokens/task vs 500-1000
- Format: Task #1: Title (status) [depends on: 2, 3]
- 90% token reduction vs full task objects
### 4. Auto-Context Inclusion (parse-prd-helpers.js, parse-prd.js)
- Updated �uildPrompts() to auto-detect and include context
- Only includes existing tasks when PRD is incremental (5% of cases)
- Zero overhead for self-contained PRDs (95% of cases)
- Passes �xistingTasks array through from parsePRDCore()
### 5. Prompt Template (parse-prd.json)
- Added �xistingTasksContext parameter (optional)
- Conditional prompt injection: {{#if existingTasksContext}}...{{/if}}
- Summarized context shown when incremental PRD detected
### 6. Documentation (prd-preprocessor-analysis.md)
- Comprehensive analysis of what gets removed vs preserved
- Token reduction estimates: 57-60% on RPG templates
- Configuration examples and usage patterns
- Test results: 31 total tests (9 preprocessor + 22 detection)
### 7. Test Suite
- est-preprocessor-standalone.js: 9 tests for preprocessing
- est-incremental-prd-standalone.js: 22 tests for detection/summarization
- All tests passing with zero false positives
- Edge cases covered: hex colors, URLs, markdown headers
## Impact
### Performance
- **67% reduction** in PRD token usage (RPG templates: 15KB → 5KB)
- **0% change** for standard templates (backward compatible)
- **Smart context**: Only 50-100 tokens/task when needed (vs 2500+ for all tasks)
- **Zero overhead**: Auto-detection has negligible cost
### Test Results
`
Preprocessor: 9/9 tests passing
Detection: 22/22 tests passing
Token reduction: 67% on RPG template
Backward compatibility: 100% (standard template unchanged)
`
## Related Tasks
- Task eyaltoledano#34: PRD preprocessor with smart existing-tasks context (status: done)
- Builds on existing parse-prd infrastructure
- Enables future optimizations (adaptive model selection, prompt streamlining)
Co-authored-by: GitHub Copilot <noreply@github.com>
16 tasks
Crunchyman-ralph
added a commit
that referenced
this pull request
Nov 14, 2025
…1403) Co-authored-by: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com>
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.
When running:
npx claude-task-initit doesn't workWe should use the updated
npx task-master-aiinstead