Artifact-level assessment — not a survey, a real score.
This directory contains the complete customer qualification and onboarding mechanism for the D1 Velocity pillar. It answers one question: where does this startup stand on AI-DLC maturity, and what’s the fastest path to Level 3+?
Read the full Assessment Methodology Guide — detailed documentation of how the scanner works, interview scoring rubrics, blended score formula, track routing logic, and report generation.
┌─────────────────────────────────────────────────────────────┐
│ QUALIFICATION │
│ │
│ Customer Repo ──→ prism-scan CLI ──→ Scanner Score (0-100) │
│ 12 categories, real artifacts │
│ │
│ SA Interview ──→ Scoring Sheet ──→ Interview Score (0-100) │
│ 20 questions, 6 sections │
│ │
│ Org Readiness ──→ 5 binary factors ──→ Org Score (0-20) │
│ │
├─────────────────────────────────────────────────────────────┤
│ SCORING │
│ │
│ Blended = 40% Scanner + 40% Interview + 20% Org Readiness │
│ │ │
│ PRISM D1 Level (L1.0 – L5.0) │
│ │ │
│ Verdict: │
│ • READY_FOR_PILOT (≥L2.0, org≥12) │
│ • NEEDS_FOUNDATIONS (≥L1.5, org≥8) │
│ • NOT_QUALIFIED (below thresholds) │
│ │
├─────────────────────────────────────────────────────────────┤
│ ONBOARDING │
│ │
│ Track A: Foundations ──→ Modules 00-02, 2wk pre-work │
│ Track B: Full Workshop ──→ All modules, 8-week pilot │
│ Track C: Accelerated ──→ Modules 03-05, targeted gaps │
│ Track D: Advanced ──→ Custom engagement, L4+ optimization │
│ │ │
│ Customer-Facing Report │
│ (HTML + Markdown + JSON) │
└─────────────────────────────────────────────────────────────┘
cd scanner
npm install
npx ts-node src/index.ts --repo /path/to/customer/repo --verbose
npx ts-node src/index.ts --repo /path/to/customer/repo --output json --output-file ../reports/scan-result.json
Print interview/scoring-sheet.md and follow interview/interview-guide.md.
import { computeAssessment } from './scoring/scoring-model';
const result = computeAssessment({
scannerScore: 48,
interviewScore: 54,
orgReadiness: {
executiveSponsor: true,
budgetAllocated: true,
dedicatedOwner: true,
awsRelationship: true,
teamSizeAppropriate: true,
},
scannerCategories: [...], // from scanner output
interviewSections: [...], // from scoring sheet
});
// → { blendedScore: 60.8, level: 'L2.5', verdict: 'READY_FOR_PILOT' }
import { routeOnboarding } from './onboarding/onboarding-router';
const plan = routeOnboarding(assessmentResult, customerInfo);
// → { track: 'B', workshopModules: [...], preWork: [...], milestones: [...] }
import { generateReport } from './reports/report-generator';
const markdown = generateReport(fullAssessmentData, 'markdown');
const html = generateReport(fullAssessmentData, 'html');
assessment/
├── scanner/ # Automated repo scanner CLI (prism-scan)
│ └── src/
│ ├── scanners/ # 12 independent category scanners
│ ├── scoring.ts # Score aggregation + level mapping
│ └── reporter.ts # Console, JSON, Markdown output
│
├── interview/ # SA interview materials
│ ├── interview-guide.md # 20 questions with scoring rubrics
│ ├── scoring-sheet.md # Printable scoring sheet
│ └── pre-interview-checklist.md
│
├── scoring/ # Scoring model + qualification logic
│ ├── scoring-model.ts # 40/40/20 weighted scoring
│ ├── level-definitions.ts # L1.0-L5.0 with evidence + metrics
│ └── qualification-matrix.md
│
├── onboarding/ # Track assignment + onboarding plans
│ ├── tracks.md # 4 tracks (A-D) defined
│ ├── onboarding-router.ts # Deterministic track assignment
│ ├── email-templates.md # 5 SA email templates
│ └── pre-work/ # Track-specific pre-work checklists
│
└── reports/ # Customer-facing report generation
├── report-generator.ts # HTML, Markdown, JSON reports
├── templates/ # Report templates with radar charts
└── sample-reports/ # 3 sample assessments (L1.5, L2.5, L3.5)
See reports/sample-reports/ for realistic assessment examples. Each has JSON data, rendered HTML, and a print-ready PDF.
| Sample | Company | Level | Verdict | Track | PDF Report |
|---|---|---|---|---|---|
| L1.5 | NovaPay (Series A, 6 eng) | L1.5 | NEEDS_FOUNDATIONS | A | PDF | HTML |
| L2.5 | Arcline Health (Series B, 14 eng) | L2.5 | READY_FOR_PILOT | B | PDF | HTML |
| L3.5 | Vectrix AI (Series C, 28 eng) | L3.5 | READY_FOR_PILOT | C | PDF | HTML |
cd assessment/reports
python3 generate-pdfs.py
Requires Google Chrome installed. PDFs are generated via Chrome headless with print-ready CSS.