Skip to content

How UK Legal Skills Works

When you ask UK Legal Skills to review a contract, something clever happens behind the scenes. Instead of one AI reading the whole thing, the system splits the work across multiple specialist AI agents -- each one focused on a different aspect of the law. This is like sending your contract to five different solicitors simultaneously, then getting a combined report.

The 60-Second Version

  1. You upload a contract
  2. AI reads it and figures out what type of document it is
  3. Multiple AI agents analyse it simultaneously -- one checks for risks, another checks compliance, another looks for missing protections
  4. The results are combined into a single scored report
  5. You get a Contract Safety Score (0-100) with specific recommendations

Contract review process (broadsheet rebrand) — the panel convenes

Plate I — the broadsheet rebrand.

How the review process works — from upload to scored report

Plate I.a — the original, kept for reference.

The Technical Detail

UK Legal Skills analyses legal documents using a large language model supplied by your agent host. Rather than traditional code, the system is built from markdown prompt files that direct the model in how to reason about English law.

Skills Are Markdown Prompts

Every /legal command maps to a SKILL.md file inside skills/legal-*/. Each file is a self-contained prompt that tells the model:

  • What jurisdiction to apply (England & Wales)
  • What legislation to reference
  • How to structure the analysis (phases, checklists, scoring)
  • What output format to produce

There is no shared library, no runtime code, and no compiled artefacts. A skill is pure text.

The Orchestrator

When you run /legal review, the main orchestrator at legal/SKILL.md reads your command and routes it to the correct skill file. The routing table maps every command to its skill directory:

/legal review     →  skills/legal-review/SKILL.md
/legal employment →  skills/legal-employment/SKILL.md
/legal ir35       →  skills/legal-ir35/SKILL.md
...

Parallel agent orchestration (broadsheet rebrand) — 5, 4 and 3 agent patterns

Plate I — the broadsheet rebrand.

Five parallel agents analyse your contract simultaneously

Plate I.a — the original, kept for reference.

Single-Agent vs Multi-Agent Skills

Most skills run the full analysis in one pass -- Claude reads the document and produces a scored report directly.

Three flagship skills launch parallel AI agents for deeper, multi-perspective analysis:

AgentFileWeight
Clause Analysisagents/legal-clauses.md20%
Risk Assessmentagents/legal-risks.md25%
Compliance Checkagents/legal-compliance.md20%
Terms Analysisagents/legal-terms.md15%
Recommendationsagents/legal-recommendations.md20%

The parent skill aggregates the five agent outputs into a single Contract Safety Score (0--100).

AgentFileWeight
Contract Reviewagents/legal-employment-contract.md25%
Employment Rightsagents/legal-employment-rights.md25%
Discrimination Scanagents/legal-employment-discrimination.md25%
Obligations Mapagents/legal-employment-obligations.md25%

All four agents carry equal weight.

AgentFileWeight
Complianceagents/legal-corporate-compliance.md35%
Documentsagents/legal-corporate-documents.md35%
Riskagents/legal-corporate-risk.md30%

How Agents Work

Each agent is a separate markdown file in agents/ that defines a focused analysis task. When the parent orchestrator skill runs, it launches all its agents simultaneously using the Agent tool. Each agent:

  1. Receives the ingested document text
  2. Performs its specialised analysis
  3. Returns a structured result (scores, findings, recommendations)

The parent skill then collects all agent responses and aggregates them using the defined weights into a final scored report.

TIP

Parallel agents are significantly faster than running analyses sequentially. A 5-agent contract review completes in roughly the same wall-clock time as a single-agent skill.

Beyond the Command Line

A hosted web app, The Counsel, is built on the same skills but lives in a separate repository.

UK Legal Skills — Established MMXXVI · Built for England & Wales · Not legal advice.