contract-clause-analyzer
Analyze construction contract clauses. Identify risks, obligations, and key terms using NLP.
npx skills add majiayu000/claude-skill-registry --skill contract-clause-analyzer --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Contract Clause Analyzer ## Business Case ### Problem Statement Contract review is time-consuming and error-prone: - Important clauses missed - Risk provisions overlooked - Inconsistent interpretation - Long review cycles ### Solution AI-assisted contract clause analysis that identifies key provisions, flags risks, and extracts critical terms. ## Technical Implementation ```python import pandas as pd from datetime import datetime, date from typing import Dict, Any, List, Optional from dataclasses import dataclass, field from enum import Enum import re class ClauseType(Enum): SCOPE = "scope" PAYMENT = "payment" SCHEDULE = "schedule" CHANGE_ORDER = "change_order" TERMINATION = "termination" INDEMNIFICATION = "indemnification" INSURANCE = "insurance" WARRANTY = "warranty" DISPUTE = "dispute" LIABILITY = "liability" FORCE_MAJEURE = "force_majeure" SAFETY = "safety" COMPLIANCE = "compliance" OTHER = "other" class RiskLevel(Enum): HIGH = "high" MEDIUM = "medium" LOW = "low" INFO = "info" @dataclass class ContractClause: clause_id: str section: str title: str text: str clause_type: ClauseType risk_level: RiskLevel key_terms: List[str] = field(default_factory=list) obligations: List[str]
- Business Case
- Problem Statement
- Solution
- Technical Implementation
- Quick Start
- Resources
What does the contract-clause-analyzer skill do?
Analyze construction contract clauses. Identify risks, obligations, and key terms using NLP.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill contract-clause-analyzer --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
