* move claude rules and commands to assets/claude * update claude profile to copy assets/claude to .claude * fix formatting * feat(profiles): Implement unified profile system - Convert Claude and Codex profiles to use createProfile() factory - Remove simple vs complex profile distinction in rule transformer - Unify convertAllRulesToProfileRules() to handle all profiles consistently - Fix mcpConfigPath construction in base-profile.js for null mcpConfigName - Update terminology from 'simpleProfiles' to 'assetOnlyProfiles' throughout - Ensure Claude .claude directory copying works in both CLI and MCP contexts - All profiles now follow same execution flow with proper lifecycle functions Changes: - src/profiles/claude.js: Convert to createProfile() factory pattern - src/profiles/codex.js: Convert to createProfile() factory pattern - src/utils/rule-transformer.js: Unified profile handling logic - src/utils/profiles.js: Remove simple profile categorization - src/profiles/base-profile.js: Fix mcpConfigPath construction - scripts/modules/commands.js: Update variable naming - tests/: Update all tests for unified system and terminology Fixes Claude profile asset copying issue in MCP context. All tests passing (617 passed, 11 skipped). * re-checkin claude files * fix formatting * chore: clean up test Claude rules files * chore: add changeset for unified profile system * add claude files back * add changeset * restore proper gitignore * remove claude agents file from root * remove incorrect doc * simplify profiles and update tests * update changeset * update changeset * remove profile specific code * streamline profiles with defaults and update tests * update changeset * add newline at end of gitignore * restore changes * streamline profiles with defaults; update tests and add vscode test * update rule profile tests * update wording for clearer profile management * refactor and clarify terminology * use original projectRoot var name * revert param desc * use updated claude assets from neno * add "YOUR_" before api key here * streamline codex profile * add gemini profile * update gemini profile * update tests * relocate function * update rules interactive setup Gemini desc * remove duplicative code * add comma
81 lines
1.8 KiB
Markdown
81 lines
1.8 KiB
Markdown
Automatically fix dependency issues found during validation.
|
|
|
|
## Automatic Dependency Repair
|
|
|
|
Intelligently fixes common dependency problems while preserving project logic.
|
|
|
|
## Execution
|
|
|
|
```bash
|
|
task-master fix-dependencies
|
|
```
|
|
|
|
## What Gets Fixed
|
|
|
|
### 1. **Auto-Fixable Issues**
|
|
- Remove references to deleted tasks
|
|
- Break simple circular dependencies
|
|
- Remove self-dependencies
|
|
- Clean up duplicate dependencies
|
|
|
|
### 2. **Smart Resolutions**
|
|
- Reorder dependencies to maintain logic
|
|
- Suggest task merging for over-dependent tasks
|
|
- Flatten unnecessary dependency chains
|
|
- Remove redundant transitive dependencies
|
|
|
|
### 3. **Manual Review Required**
|
|
- Complex circular dependencies
|
|
- Critical path modifications
|
|
- Business logic dependencies
|
|
- High-impact changes
|
|
|
|
## Fix Process
|
|
|
|
1. **Analysis Phase**
|
|
- Run validation check
|
|
- Categorize issues by type
|
|
- Determine fix strategy
|
|
|
|
2. **Execution Phase**
|
|
- Apply automatic fixes
|
|
- Log all changes made
|
|
- Preserve task relationships
|
|
|
|
3. **Verification Phase**
|
|
- Re-validate after fixes
|
|
- Show before/after comparison
|
|
- Highlight manual fixes needed
|
|
|
|
## Smart Features
|
|
|
|
- Preserves intended task flow
|
|
- Minimal disruption approach
|
|
- Creates fix history/log
|
|
- Suggests manual interventions
|
|
|
|
## Output Example
|
|
|
|
```
|
|
Dependency Auto-Fix Report
|
|
━━━━━━━━━━━━━━━━━━━━━━━━
|
|
Fixed Automatically:
|
|
✅ Removed 2 references to deleted tasks
|
|
✅ Resolved 1 self-dependency
|
|
✅ Cleaned 3 redundant dependencies
|
|
|
|
Manual Review Needed:
|
|
⚠️ Complex circular dependency: #12 → #15 → #18 → #12
|
|
Suggestion: Make #15 not depend on #12
|
|
⚠️ Task #45 has 8 dependencies
|
|
Suggestion: Break into subtasks
|
|
|
|
Run '/project:tm/validate-dependencies' to verify fixes
|
|
```
|
|
|
|
## Safety
|
|
|
|
- Preview mode available
|
|
- Rollback capability
|
|
- Change logging
|
|
- No data loss |