phase-deep-dive-expert/SKILL.md
Deep-dives into a single phase of a project plan with expert-level detail. Use when the user wants to expand, drill into, or analyze a specific phase of their project plan. Triggers on phrases like "deep dive into phase", "expand this phase", "drill into phase X", "analyze phase", "break down phase", "detail phase", "phase deep dive", or when the user provides a project plan and wants granular action items for one specific phase. Must be used when users say "deep dive" in context of project phases. Outputs using the same card-based HTML template design as Project Success Planner.
npx skillsauth add davidkogit/public-skills phase-deep-dive-expertInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
A companion skill to Project Success Planner that takes an existing project plan and drills into a specific phase with expert-level detail. Outputs using the same card-based HTML template design—structured cards with Critical/Important/Nice-to-have priority tiers.
Accept project plan in ANY format:
Extract:
IF the user specified a phase:
IF the user did NOT specify a phase:
Analyze the phase content to determine the appropriate expert persona:
| Phase Type | Expert Persona | |------------|----------------| | Frontend/UX Development | Senior Frontend Architect, UX Designer | | Backend/Infrastructure | Senior DevOps Engineer, Solutions Architect | | Marketing/Campaign | Digital Marketing Strategist, Growth Hacker | | Data/Analytics | Data Engineer, BI Analyst | | Customer/Support | Customer Success Manager, Support Lead | | Migration/Transition | Migration Specialist, Change Manager | | Launch/Go-Live | Launch Manager, Release Coordinator | | Sales/Revenue | Sales Operations Manager, Revenue Strategist | | Content/Creative | Content Strategist, Creative Director | | Technical Implementation | Technical Lead, Systems Integrator |
Adopt this persona for the remainder of the session. Your analysis should reflect current best practices, tools, and frameworks relevant to that domain.
Using web search, research current best practices for the specific phase type:
For each action item in the phase, determine:
Identify:
For each action item in the selected phase, expand into this structure:
ACTION ITEM: [Original Name]
Priority: [Critical/Important/Nice-to-have]
SUB-TASKS:
1. [Specific sub-task with clear deliverable]
2. [Specific sub-task with clear deliverable]
3. [Specific sub-task with clear deliverable]
...
DEPENDENCIES:
- [Prerequisite 1]
- [Prerequisite 2]
TOOLS & RESOURCES:
- [Tool/Platform 1] - [Purpose]
- [Document/Asset 2] - [Purpose]
ACCEPTANCE CRITERIA:
□ [Testable criterion 1]
□ [Testable criterion 2]
□ [Testable criterion 3]
TIME ESTIMATE:
[Hours/Days] - [Rationale]
SUGGESTED OWNER:
[Role Title]
Generate a complete HTML document using this exact structure:
<!DOCTYPE html>
<html lang="en">
<head>
[Full CSS styles from Project Success Planner template - SEE STYLE BLOCK BELOW]
<title>Phase Deep Dive: [Phase Name]</title>
</head>
<body>
<div class="document">
<header>
<div class="header-content">
<div class="brand">Phase Deep Dive Expert</div>
<h1>PHASE DEEP DIVE: [Phase Name]</h1>
<p class="project-subtitle">[Phase objective restated from original plan]</p>
</div>
</header>
<main>
<!-- Context Section -->
<section class="phases-overview">
<div class="section-label">Phase Context</div>
<div class="context-card">
<p><strong>Original Phase:</strong> Phase [X] of [Total]</p>
<p><strong>Expert Role:</strong> [Domain Expert Persona]</p>
<p><strong>Focus Area:</strong> [Phase type/domain]</p>
</div>
</section>
<!-- Expanded Action Items -->
<section class="action-items">
<div class="section-label">Expanded Action Items</div>
[REPEAT FOR EACH ACTION ITEM:]
<div class="phase-block">
<div class="phase-block-header">
<span class="phase-block-number">[Item #]</span>
<h2 class="phase-block-title">[Action Item Name]</h2>
</div>
<!-- Critical Tasks -->
<div class="priority-group priority-critical">
<div class="priority-label">Critical Sub-Tasks</div>
<ul class="task-list">
<li>[Sub-task 1] - [Time estimate]</li>
<li>[Sub-task 2] - [Time estimate]</li>
<li>[Sub-task 3] - [Time estimate]</li>
</ul>
</div>
<!-- Important Tasks -->
<div class="priority-group priority-important">
<div class="priority-label">Dependencies & Tools</div>
<ul class="task-list">
<li><strong>Depends on:</strong> [Dependency 1], [Dependency 2]</li>
<li><strong>Tools:</strong> [Tool 1], [Tool 2]</li>
<li><strong>Owner:</strong> [Role Title]</li>
</ul>
</div>
<!-- Nice-to-have -->
<div class="priority-group priority-nice">
<div class="priority-label">Acceptance Criteria</div>
<ul class="task-list">
<li>□ [Criterion 1]</li>
<li>□ [Criterion 2]</li>
<li>□ [Criterion 3]</li>
</ul>
</div>
</div>
[END REPEAT]
</section>
<!-- Phase-Specific Intelligence -->
<section class="risks-section">
<h2 class="risks-title">
<span class="risk-icon">⚡</span>
Phase-Specific Intelligence
</h2>
<h3 style="margin: 1.5rem 0 0.75rem; color: var(--critical);">Risks & Pitfalls</h3>
<ul class="risks-list">
<li><span class="risk-category">[Risk Category]:</span> [Description and mitigation]</li>
<li><span class="risk-category">[Pitfall]:</span> [How to avoid]</li>
</ul>
<h3 style="margin: 1.5rem 0 0.75rem; color: var(--important);">Execution Sequence</h3>
<div style="background: rgba(0,0,0,0.02); padding: 1rem; border-left: 3px solid var(--important);">
<p><strong>Recommended Order:</strong></p>
<ol style="margin: 0.5rem 0 0 1.5rem;">
<li>[Action Item 1] → [Action Item 2] → [Action Item 3]</li>
</ol>
<p style="margin-top: 0.75rem;"><strong>Why this order:</strong> [Rationale]</p>
</div>
<h3 style="margin: 1.5rem 0 0.75rem; color: var(--nice);">Quick Wins</h3>
<ul class="risks-list" style="--nice: #2d6a4f;">
<li style="border-left: 3px solid var(--nice); padding-left: 1rem;">[High-impact, low-effort item 1]</li>
<li style="border-left: 3px solid var(--nice); padding-left: 1rem;">[High-impact, low-effort item 2]</li>
</ul>
<h3 style="margin: 1.5rem 0 0.75rem; color: var(--ink);">Success Metrics</h3>
<ul style="list-style: disc; margin-left: 1.5rem;">
<li>[Metric 1 with target value]</li>
<li>[Metric 2 with target value]</li>
<li>[Metric 3 with target value]</li>
</ul>
</section>
</main>
<!-- Recommended Next Step -->
<section class="next-step">
<div class="next-step-label">Phase Completion Criteria</div>
<div class="next-step-action">[Primary deliverable that marks phase completion]</div>
<p class="next-step-why">
<strong>Before moving to next phase:</strong> [What must be verified/delivered]
</p>
</section>
<footer>
<div class="footer-brand">PHASE DEEP DIVE EXPERT</div>
<div>Generated [DATE]</div>
</footer>
</div>
</body>
</html>
A complete HTML template is available at templates/deep-dive-template.html. When generating output:
Color Variables:
:root {
--ink: #1a1a2e;
--paper: #faf9f7;
--accent-gold: #c9a227;
--accent-copper: #b87333;
--critical: #c41e3a;
--important: #e07c24;
--nice: #2d6a4f;
--muted: #6b7280;
--card-bg: #ffffff;
--border: #e5e2dd;
}
Priority Styling:
Typography:
User: "Here's my project plan. Deep dive into Phase 2."
Expected Flow:
development
Use this skill whenever a user asks to "Update the project tracker," "Process meeting notes for the tracker," or "Generate a new task list update." It synthesizes raw meeting transcripts with existing project trackers, dynamically adapts to existing columns, generates a strictly formatted .docx tracker using a Node.js script (docx package), and automatically drafts a clean email summary.
development
Universal project planning skill that works for ANY domain—business, technical, creative, personal, or otherwise. Triggers when a user presents a project description, goal, or endeavor and wants an actionable plan. Researches current best practices, diagnoses the real need through targeted questions, and outputs both strategic phases and detailed prioritized tasks. Use even when the user just has a vague idea or mentions wanting to accomplish something specific.
testing
Craft A/B test variants, optimize open rates, and structure drip campaigns for marketing emails. Trigger when a user explicitly requests a "marketing email," "email sequence," "marketing CTA," or "optimize subject lines." Do not use for standard or internal correspondence.
development
Develops growth marketing plans, funnel optimizations, and AI integration roadmaps. Use for digital marketing strategy, lead generation tactics, or marketing ROI analysis. Conducts diagnostic interviews and outputs an executable 5 Ps Marketing AI framework with code-ready templates.