Agent skill

contract-clause-analyzer

Analyze construction contract clauses. Identify risks, obligations, and key terms using NLP.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 11 KB
Bundled scripts: none
Path: skills/analysis/contract-clause-analyzer/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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]

What's inside
Steps it walks through
  1. Business Case
  2. Problem Statement
  3. Solution
  4. Technical Implementation
  5. Quick Start
  6. Resources
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going