Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Conducting Technical Due Diligence

ASecurity

Structures technology diligence with architecture review, code quality assessment, scalability analysis, and technical debt evaluation. Use when evaluating startup technology, assessing engineering teams, or reviewing technical infrastructure.

22 stars
0 votes
0 copies
0 views
Added 9/20/2026
securitygoawsgcpazuretestinggitapidatabaseci/cdsecurity

Works with

api

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add lev-os/agents --skill conducting-technical-due-diligence --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Conducting Technical Due Diligence?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Conducting Technical Due Diligence
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/lev-os-conducting-technical-due-diligence/badge)](https://www.skillsdirectory.com/skills/lev-os-conducting-technical-due-diligence)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: conducting-technical-due-diligence
description: Structures technology diligence with architecture review, code quality assessment, scalability analysis, and technical debt evaluation. Use when evaluating startup technology, assessing engineering teams, or reviewing technical infrastructure.
tags:
  - process
  - venture-capital
  - valuation
metadata:
  author: casemark
  practice_areas:
    - Venture Capital
    - Seed/Series Investing
    - Startup Ecosystems
  document_types:
    - Process Documentation
  skill_modes:
    - Process Management
---
# Conducting Technical Due Diligence

Structures technology diligence for venture and growth-stage investments, covering architecture review, code quality assessment, scalability analysis, technical debt quantification, and engineering team evaluation.

## When To Use

- Pre-term-sheet or post-term-sheet diligence on a software-intensive target company
- Assessing a startup's technical infrastructure before seed, Series A, or later rounds
- Evaluating acqui-hire candidates where engineering talent is the primary asset
- Follow-on investment decisions where product has scaled since initial diligence
- LP or co-investor requests for independent technical assessment

## Inputs To Gather

- **Architecture artifacts**: System diagrams, infrastructure-as-code repos, cloud provider dashboards (AWS/GCP/Azure), CI/CD pipeline configs
- **Codebase access**: Primary repositories, commit history (12+ months preferred), branch/merge strategy documentation
- **Engineering org data**: Team roster with tenure, hiring plan, reporting structure, attrition history
- **Operational metrics**: Uptime/SLA history, incident post-mortems (last 12 months), deploy frequency, mean time to recovery (MTTR)
- **Product roadmap**: Feature backlog, technical roadmap items vs. product-driven items, deferred maintenance list
- **Third-party dependencies**: Vendor contracts, open-source license inventory, API integrations list
- **Security posture**: Penetration test reports, SOC 2 / ISO 27001 status, vulnerability scan results [VERIFY: request NDA-gated reports directly from target]

## Workflow

1. **Scope the engagement**
   - Define diligence depth: lightweight (2–3 day review) vs. comprehensive (1–2 week deep dive)
   - Identify red-line issues specific to the deal thesis (e.g., "Can this platform handle 100x current load?" or "Is the ML model defensible IP?")
   - Establish data room access and NDA coverage for code review

2. **Architecture review**
   - Map the system topology: monolith vs. microservices, data stores, message queues, external integrations
   - Assess cloud infrastructure design: redundancy, auto-scaling configuration, disaster recovery plan
   - Evaluate data architecture: schema design, data pipeline reliability, storage costs at projected scale
   - Flag single points of failure and vendor lock-in risks

3. **Code quality assessment**
   - Review commit history for contribution patterns (bus factor), code review discipline, and merge hygiene
   - Analyze static analysis metrics: test coverage percentage, linting compliance, cyclomatic complexity
   - Sample-review critical modules (auth, payments, core business logic) for code clarity and correctness
   - Identify copy-paste duplication, dead code, and abandoned feature branches

4. **Scalability analysis**
   - Review load testing results or request a load test against projected 12–24 month user growth
   - Evaluate database query performance at scale: indexing strategy, N+1 queries, read/write split architecture
   - Assess whether current infrastructure costs scale linearly or super-linearly with users
   - Identify architectural ceilings that would require a rewrite vs. incremental optimization

5. **Technical debt quantification**
   - Catalog known debt items from issue trackers, tech-debt tags, and developer interviews
   - Estimate remediation cost in engineer-months for critical items
   - Classify debt as: (a) blocking scale, (b) increasing operational risk, (c) slowing velocity, or (d) cosmetic
   - Compare debt load against company stage — early-stage debt is expected; Series B+ debt warrants scrutiny

6. **Engineering team evaluation**
   - Assess team composition: seniority distribution, specialization gaps, key-person dependencies
   - Review hiring pipeline and employer brand signals (Glassdoor, GitHub presence, conference talks)
   - Evaluate engineering culture indicators: documentation habits, on-call practices, blameless post-mortems
   - Benchmark compensation against market to assess retention risk [VERIFY: use current comp data for target geography]

7. **Security and compliance review**
   - Verify authentication/authorization implementation (OAuth, RBAC, token management)
   - Check secrets management practices (no hardcoded credentials, proper vault usage)
   - Review open-source license compliance — flag copyleft licenses in proprietary distribution paths [VERIFY: license obligations depend on distribution model]
   - Assess data privacy controls relative to applicable regulations (GDPR, CCPA, HIPAA if applicable) [VERIFY: regulatory scope depends on target's markets and data types]

## Output

Structure the technical diligence report with:

- **Executive summary**: 1-page investment-grade overview with go/no-go recommendation and confidence level
- **Risk matrix**: Categorize findings as Critical / High / Medium / Low with estimated remediation effort
- **Architecture scorecard**: Rate each domain (infrastructure, data, security, scalability, code quality) on a standardized scale (e.g., 1–5)
- **Technical debt ledger**: Itemized list with severity, estimated fix cost, and business impact if unaddressed
- **Team assessment**: Strengths, gaps, and key-person risk summary
- **Deal-specific answers**: Direct responses to the red-line questions defined in scoping
- **Recommended post-close actions**: Prioritized technical initiatives for the first 90 days if the investment proceeds

## Quality Checks

- Every critical finding is supported by specific evidence (code snippets, metrics, configuration references) — no unsupported assertions
- Scalability claims are grounded in load test data or architecture analysis, not founder assertions
- Technical debt estimates use engineer-month units with stated assumptions about team productivity
- Security findings reference specific CWE/OWASP categories where applicable
- The report distinguishes between stage-appropriate trade-offs and genuinely concerning deficiencies
- All jurisdiction-dependent or regulation-dependent findings are marked with [VERIFY]
- The executive summary is understandable by non-technical investment partners

Attribution

lev-oslev-os
View sourceMore from lev-os →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Springboot Security

Java Spring Boot 服务中关于身份验证/授权、验证、CSRF、密钥、标头、速率限制和依赖安全的 Spring Security 最佳实践。

2456590 votes

Security Review

Use this skill when adding authentication, handling user input, working with secrets, creating API endpoints, or implementing payment/sensitive features. Provides comprehensive security checklist and patterns.

2456590 votes

Paperclip Task Bridge

Create, comment on, update, and list Paperclip tasks from Hermes using scoped Paperclip API credentials.

805540 votes

Summarize Status

Write a short, colloquial summary for a Paperclip summary slot: open with the 1–3 specific, concrete actions the reader needs to take right now to unblock the work, then a brief plain-language status, streaming progress as it works.

805540 votes

Paperclip Evals

Choose, inspect, validate, and report Paperclip Runner or Product E2E evaluations while preserving evidence, provenance, cost, and failure classification.

805540 votes
View all in security →