* 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
82 lines
2.2 KiB
Markdown
82 lines
2.2 KiB
Markdown
Show detailed task information with rich context and insights.
|
|
|
|
Arguments: $ARGUMENTS
|
|
|
|
## Enhanced Task Display
|
|
|
|
Parse arguments to determine what to show and how.
|
|
|
|
### 1. **Smart Task Selection**
|
|
|
|
Based on $ARGUMENTS:
|
|
- Number → Show specific task with full context
|
|
- "current" → Show active in-progress task(s)
|
|
- "next" → Show recommended next task
|
|
- "blocked" → Show all blocked tasks with reasons
|
|
- "critical" → Show critical path tasks
|
|
- Multiple IDs → Comparative view
|
|
|
|
### 2. **Contextual Information**
|
|
|
|
For each task, intelligently include:
|
|
|
|
**Core Details**
|
|
- Full task information (id, title, description, details)
|
|
- Current status with history
|
|
- Test strategy and acceptance criteria
|
|
- Priority and complexity analysis
|
|
|
|
**Relationships**
|
|
- Dependencies (what it needs)
|
|
- Dependents (what needs it)
|
|
- Parent/subtask hierarchy
|
|
- Related tasks (similar work)
|
|
|
|
**Time Intelligence**
|
|
- Created/updated timestamps
|
|
- Time in current status
|
|
- Estimated vs actual time
|
|
- Historical completion patterns
|
|
|
|
### 3. **Visual Enhancements**
|
|
|
|
```
|
|
📋 Task #45: Implement User Authentication
|
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
Status: 🟡 in-progress (2 hours)
|
|
Priority: 🔴 High | Complexity: 73/100
|
|
|
|
Dependencies: ✅ #41, ✅ #42, ⏳ #43 (blocked)
|
|
Blocks: #46, #47, #52
|
|
|
|
Progress: ████████░░ 80% complete
|
|
|
|
Recent Activity:
|
|
- 2h ago: Status changed to in-progress
|
|
- 4h ago: Dependency #42 completed
|
|
- Yesterday: Task expanded with 3 subtasks
|
|
```
|
|
|
|
### 4. **Intelligent Insights**
|
|
|
|
Based on task analysis:
|
|
- **Risk Assessment**: Complexity vs time remaining
|
|
- **Bottleneck Analysis**: Is this blocking critical work?
|
|
- **Recommendation**: Suggested approach or concerns
|
|
- **Similar Tasks**: How others completed similar work
|
|
|
|
### 5. **Action Suggestions**
|
|
|
|
Context-aware next steps:
|
|
- If blocked → Show how to unblock
|
|
- If complex → Suggest expansion
|
|
- If in-progress → Show completion checklist
|
|
- If done → Show dependent tasks ready to start
|
|
|
|
### 6. **Multi-Task View**
|
|
|
|
When showing multiple tasks:
|
|
- Common dependencies
|
|
- Optimal completion order
|
|
- Parallel work opportunities
|
|
- Combined complexity analysis |