project-dashboard
This skill should be used when users ask 'where am I?', 'what is my progress?', mentions 'status', 'dashboard', 'progress', wants to know if they are ready for the next stage, or needs an overview of their project state.
What this skill does
# project-dashboard
Progress visualization and status reporting for qualitative research projects. Shows where you are in the sandwich methodology and what comes next.
## When to Use
Use this skill when:
- User asks "where am I?" or "what's my progress?"
- User mentions "status", "dashboard", or "progress"
- User wants to know if they're ready for the next stage
- User needs an overview of their project state
## Capabilities
1. **Progress Visualization** - ASCII and structured progress display
2. **Readiness Checks** - Determine if prerequisites are met
3. **Recommendations** - Suggest next steps based on current state
4. **Statistics** - Show coding counts, quotes, concepts
## Scripts
### calculate-progress.js
Calculate progress percentages for each stage.
```bash
node skills/project-dashboard/scripts/calculate-progress.js \
--project-path /path/to/project
```
**Returns:**
```json
{
"stage1_progress": 85,
"stage2_progress": 30,
"stage3_progress": 0,
"overall_progress": 38
}
```
### generate-dashboard.js
Generate a formatted dashboard view.
```bash
node skills/project-dashboard/scripts/generate-dashboard.js \
--project-path /path/to/project \
--format ascii|json|markdown
```
### check-readiness.js
Check readiness for stage transitions.
```bash
node skills/project-dashboard/scripts/check-readiness.js \
--project-path /path/to/project \
--target-stage stage2
```
**Returns:**
```json
{
"ready": true,
"requirements_met": ["10+ documents", "memos written"],
"requirements_missing": [],
"recommendations": ["Consider more memos for depth"]
}
```
## Dashboard Output
### ASCII Format
```
The Sandwich Methodology
========================
Stage 1: Human Foundation
[========= ] 90%
12 documents coded | 5 memos written
Status: Ready for Stage 2!
Stage 2: Human-AI Partnership
[==== ] 40%
Phase 1: Complete | Phase 2: In Progress | Phase 3: Not Started
25 documents processed | 156 quotes extracted
Stage 3: Human Synthesis
[LOCKED ]
Complete Stage 2 to unlock
Next Steps:
- Continue Phase 2 synthesis work
- Review synthesized patterns before Phase 3
```
### JSON Format
Full structured data for programmatic use.
### Markdown Format
Formatted for documentation or export.
## Progress Calculations
### Stage 1 (0-100%)
- Documents manually coded: 70% weight (target: 10)
- Memos written: 30% weight (target: 3)
- Formula: `(docs/10 * 70) + (min(memos,3)/3 * 30)`
### Stage 2 (0-100%)
- Phase 1 Parallel Streams: 33%
- Phase 2 Synthesis: 33%
- Phase 3 Pattern Characterization: 34%
- Each phase: not_started=0, in_progress=50%, complete=100%
### Stage 3 (0-100%)
- Evidence organized: 33%
- Theory developed: 33%
- Manuscript drafted: 34%
## Visualizations
### Sandwich Progress
```
๐ HUMAN BREAD (Stage 1) [COMPLETE]
Your foundation is solid!
๐ง AI FILLING (Stage 2) [IN PROGRESS]
โ Phase 1: โ Parallel streams
โ Phase 2: โ Synthesis (current)
โ Phase 3: โ Pattern characterization
๐ HUMAN BREAD (Stage 3) [LOCKED]
Awaiting Stage 2 completion
```
### Concept Growth
```
Week 1: โโโ (15 concepts)
Week 2: โโโโโโ (28 concepts)
Week 3: โโโโโโโโ (35 concepts)
Week 4: โโโโโโโ (32 concepts - consolidation)
```
## State Dependencies
This skill reads from:
- `.interpretive-orchestration/config.json`
- `stage1-foundation/` directory contents
- `stage2-collaboration/` directory contents
Use `_shared/scripts/query-status.js` for the underlying data.
## Integration Points
- **_shared scripts** - query-status.js provides core data
- **Commands** - /qual-status triggers this skill
- **Hooks** - Updates after significant actions
## Related
- **Commands:** `/qual-status` is the main trigger
- **Skills:** `_shared/` provides underlying state queries
- **Agents:** None directly
Related in Data & Analytics
clawarr-suite
IncludedComprehensive management for self-hosted media stacks (Sonarr, Radarr, Lidarr, Readarr, Prowlarr, Bazarr, Overseerr, Plex, Tautulli, SABnzbd, Recyclarr, Unpackerr, Notifiarr, Maintainerr, Kometa, FlareSolverr). Deep library exploration, analytics, dashboard generation, content management, request handling, subtitle management, indexer control, download monitoring, quality profile sync, library cleanup automation, notification routing, collection/overlay management, and media tracker integration (Trakt, Letterboxd, Simkl).
querying-soql
IncludedSOQL query generation, optimization, and analysis with 100-point scoring. Use this skill when the user needs SOQL/SOSL authoring or optimization: natural-language-to-query generation, relationship queries, aggregates, query-plan analysis, and performance or safety improvements for Salesforce queries. TRIGGER when: user writes, optimizes, or debugs SOQL/SOSL queries, touches .soql files, or asks about relationship queries, aggregates, or query performance. DO NOT TRIGGER when: bulk data operations (use handling-sf-data), Apex DML logic (use generating-apex), or report/dashboard queries.
app-store-optimization
IncludedApp Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklists, and tracking ranking changes.
habit-flow
IncludedAI-powered atomic habit tracker with natural language logging, streak tracking, smart reminders, and coaching. Use for creating habits, logging completions naturally ("I meditated today"), viewing progress, and getting personalized coaching.
app-store-optimization
IncludedApp Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklists, and tracking ranking changes.
visualizing-data
IncludedBuilds dashboards, reports, and data-driven interfaces requiring charts, graphs, or visual analytics. Provides systematic framework for selecting appropriate visualizations based on data characteristics and analytical purpose. Includes 24+ visualization types organized by purpose (trends, comparisons, distributions, relationships, flows, hierarchies, geospatial), accessibility patterns (WCAG 2.1 AA compliance), colorblind-safe palettes, and performance optimization strategies. Use when creating visualizations, choosing chart types, displaying data graphically, or designing data interfaces.