An open, Markdown-native library of legal skills for AI agents — and the legal professionals who supervise them. AgentCounsel is a collection of standalone legal skills.
FAQ
agentcounsel is a Claude Code plugin with 200 hand-picked skills for content work, indexed on Flowy. Install it with the command on its page. It includes ai-use-case-intake, contract-risk-review, demand-letter. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
$ npx -y skills add zgbrenner/agentcounsel --agent claude-code
Repo: zgbrenner/agentcounsel
An open, Markdown-native library of legal skills for AI agents — and the legal professionals who supervise them.
AgentCounsel is a collection of standalone legal skills. Each skill is a structured workflow that helps an AI agent — or a lawyer — produce draft legal work product for attorney review. The skills supply discipline and structure: how to scope a task, what inputs to gather, how to organize the output, and what a supervising attorney must verify before anything is relied upon.
AgentCounsel does not provide legal advice. It produces draft work product intended for review and adoption by a qualified, licensed legal professional. Using it does not create an attorney–client relationship.
New here? Start with QUICKSTART.md — it walks through your first skill run in about five minutes.
Whoever you are, the assumption is the same: a licensed attorney reviews the output before it is used.
It is:
It is not:
QUICKSTART.md is the one place to start — pick your platform, install a practice-area pack, and run your first skill in about five minutes. Sample outputs are in examples/.
You do not need to read core/ to get started: every pack and adapter loads those operating rules for the AI automatically. Read core/ yourself only if you are using a raw SKILL.md file on its own, or you want to understand the rules your AI is following (a worthwhile ten minutes, but not a prerequisite).
Every one of the 212 skills compiles to a validated Skill Specification v2 contract. For ordinary Markdown use, the canonical SKILL.md remains enough. For agent runtimes, the optional MCP catalog can route a task, require typed inputs, choose an execution mode, and return only the applicable core and modules through get_skill_context.
Selection is fail-closed and inspectable. Missing activation inputs do not load every candidate module. Each bundle includes a decision record for every declared module, per-file SHA-256 hashes, inherited-rule dependency hashes, a compiled-contract fingerprint, token-planning estimates, and a deterministic bundle fingerprint for audit or replay. CI enforces declared context budgets in reports/selective-context.md.
The first two modularized workflows show the model:
litigation/motion-opposition-drafter: mode-based loading for quick triage, standard drafting, and deep verification.ip/infringement-triage: mode-based common modules plus right-specific loading for trademark, copyright, patent, and trade secret matters.The compact cores are now below the repository's large-context band. Standard scenarios use about 58% of their pre-migration context estimate while preserving the complete deep-review package. These figures are deterministic planning estimates, not provider token counts or billing claims.
AgentCounsel has 212 skills: 177 across 20 practice areas, plus 35 cross-cutting skills in three supporting groups (Setup, Legal Operations, Legal Methodology).
| Practice area | Skills | Covers |
|---|---|---|
| Legal Research | 6 | Research planning (roadmap before authority gathering), structured IRAC memos, case briefs, multi-authority rule synthesis, negative-treatment (good-law) checks, and CFR amendment-history tracing. |
| Litigation | 11 | Matter intake, chronologies, demand letters, subpoena triage, discovery-response organization, depositions, legal holds, privilege logs, claim charts, brief drafting, and motion-opposition drafting. |
| Contracts | 5 | NDAs, commercial contracts, redlines, statements of work, vendor agreement status. |
| Corporate | 7 | Board minutes, shareholder-meeting minutes, written consents, closing checklists, diligence review, material-contract schedules, entity compliance. |
| Employment | 10 | Terminations, reductions in force, worker classification, hiring, restrictive-covenant review, internal investigations, protected leave, severance, workplace policies. |
| Privacy | 10 | Data processing agreements, impact assessments, data subject requests, policy gaps, breach and incident response, cross-border transfer review, vendor privacy diligence, data retention schedule review, children's privacy review, and cookie consent review. |
| Product Legal | 4 | Launch review, marketing claims, terms of service, AI features. |
| Regulatory | 5 | Enforcement risk, rule-change summaries, compliance gaps, compliance-program tracking, examination/inquiry response. |
| AI Governance | 4 | AI use-case intake, vendor terms, model risk, AI policies. |
| Intellectual Property | 7 | Trademark triage, infringement triage, cease-and-desist response, patent FTO triage, invention intake, DMCA, open-source licensing. |
| Financial Crime / AML | 5 | KYC onboarding review, sanctions / PEP / adverse-media screening review, transaction-monitoring alert triage, AML program gap review, and EDD file review. |
| Real Estate | 10 | Commercial lease abstraction and review, amendment reconciliation, purchase and sale agreement review, loan-document review, title and survey objection tracking, diligence and closing checklists, estoppel and SNDA review, zoning issue-spotting. |
Three cross-cutting skill groups support work in every practice area:
The four-tier taxonomy that classifies these areas and groups — and the model for expanding it — is recorded in docs/PRACTICE_AREAS.md.
See SKILLS_INDEX.md for the full catalog and WORKFLOW_ROUTER.md to route from a task to a skill.
Most tasks are one skill. When the work is larger, AgentCounsel gives you several surfaces:
| Surface | Use it when |
|---|---|
| One-off skill | A single, self-contained task and one draft output. |
| Quality check | Reviewing an existing draft — source validation, citation integrity, prose polish, red-team. |
| Practice-area pack | Repeated work in one practice area, installed into your AI tool. |
| Matter pack | A recurring matter type that runs an ordered sequence of skills. |
| Matter workspace | A multi-step, document-heavy, deadline- or source-sensitive, ongoing matter. |
| Playbook | A recurring task type you run the same way every time (e.g., NDA review). |
| Review panel | A high-risk draft that needs several supervised review passes before reliance. |
Full decision guide with worked examples: docs/CHOOSE_YOUR_WORKFLOW.md. Every surface ends in attorney review.
core/ Operating rules every skill inherits (read these first).
skills/ The canonical skill library, grouped by practice area.
examples/ Illustrative sample outputs, with fictional facts.
practice-profiles/ Per-practice-area configuration profiles for a legal team.
matter-workspaces/ Scaffolds for organizing one matter — single-file templates
plus the canonical multi-file _template/.
matter-packs/ Workflow bundles — recommended skill sequences per matter type.
playbooks/ Repeatable recipes for recurring task types (NDA review, etc.).
review-panels/ Supervised multi-pass review workflows for a draft.
overlays/ Industry and sector overlays that tune skills for a context.
adapters/ Thin integration files for specific environments.
connectors/ External-source verification integrations (e.g., CourtListener).
metadata/ Generated machine-readable skill index (index.json).
docs/ The metadata standard, the safety model, the FAQ, and the practice-area registry.
scripts/ Standard-library Python helpers (validation, index, packs).
dist/ Generated platform install packs (gitignored; built by
scripts/build_platform_packs.py).
SKILLS_INDEX.md Full catalog of every skill.
WORKFLOW_ROUTER.md "I need to do X" -> which skill to use.
COMMANDS.md Slash-style command shorthands mapped to skills.
The skills/ directory is the canonical source of truth. Everything else points back to it.
Each skill lives in its own folder with a SKILL.md file and optional templates/:
skills/contracts/nda-review/
SKILL.md The workflow.
templates/nda-risk-table.md A copyable, attorney-review-ready template.
Every SKILL.md follows the same structure — Purpose, Use When, Required Inputs, Do Not Use When, Legal Safety Rules, Workflow, Output Format, and an Attorney Verification Checklist — and carries standardized, agent-readable YAML frontmatter so tools and agents can discover and route skills. See docs/SKILL_METADATA_STANDARD.md.
A platform pack is one file that bundles the global safety rules, the practice profile, the slash commands, and every skill in a practice area. Upload it to your AI tool's project or workspace and you can start work immediately — no copying files one at a time.
Pre-built packs are hosted on the deployed Pages site and rebuilt on every push to main:
AgentCounsel is plain Markdown, so it works anywhere an agent or person can read a file. The library-as-files paths below give you more control than a consolidated pack.
| Surface | How to use AgentCounsel | Where to look |
|---|---|---|
| Generic Markdown | Open any ordinary SKILL.md directly. When a skill has SPEC.json, use the catalog's Copy Full Package action or copy the complete skill folder so its selectable resources remain available. | adapters/generic-md/ |
| ChatGPT | Create a ChatGPT Project and add individual skill files. (For the consolidated practice-area pack, use the packs page above.) | adapters/generic-md/ |
| Claude (claude.ai) | Create a Claude Project and upload a practice-area pack from the packs page — no command line needed. | QUICKSTART.md |
| Claude Code | Use the Claude Code plugin-style bundle, or keep the repo in a folder Claude can read as a local playbook. | adapters/claude-code-plugin/ |
| Claude Cowork | Point Cowork at the repo folder; START_HERE.md gives it the operating model. | adapters/claude-cowork/ |
| Gemini | Install the repository as a Gemini CLI extension — gemini-extension.json and GEMINI.md load the operating model automatically. | adapters/gemini/ |
| Codex / repo agents | Point a repo-based coding or legal agent at the library through AGENTS.md so it selects the narrowest relevant skill. | adapters/codex/, |
Adapters are intentionally thin: they tell an environment how to find and use the canonical library; they do not duplicate it. The one exception is the Claude Code plugin bundle, which carries generated copies of a curated set of skills — regenerate it with python scripts/sync_plugin_skills.py (see PLUGIN_SYNC.md).
python scripts/build_platform_packs.py locally to produce the same packs in dist/.SKILL.md and any templates. When the folder contains SPEC.json, copy the complete folder or use the catalog's Copy Full Package action; the compact SKILL.md alone is the routing and quick-triage core, not the full standard/deep package.skills/ and core/ into your own project.There is no required installer or runtime dependency. Ordinary skills remain portable files; modularized skills remain portable Markdown-plus-JSON folders. The MCP server is optional and exists for clients that need typed routing, true selective loading, and reproducible context bundles.
Every skill inherits the operating rules in core/:
The full safety model — the threat model, what AgentCounsel deliberately does not do, and how to use it safely with confidential material — is in docs/SAFETY_MODEL.md. Security reporting and guidance are in SECURITY.md.
A firm's risk or compliance team assessing AgentCounsel for adoption should start with docs/AI_GOVERNANCE_DISCLOSURE.md, which maps these controls to common AI-governance framework questions.
AgentCounsel runs out-of-the-box without configuration. To improve output quality for a practice group adopting the library across multiple matters, you can populate a practice-group profile at practice-profiles/<area>.md. The profile gives ~20 skills access to the group's standing positions, escalation thresholds, and output preferences.
Eval coverage is tracked through lightweight, no-API checks in evals/ and
reports/eval-coverage.md. These evals test structure, routing, metadata,
packs, quality checks, and candidate-output safety signals; they do not verify
legal correctness or replace attorney review.
See CONFIGURING.md for the full configuration guide. The short version:
skills/setup/<area>-cold-start-interview/SKILL.md) with a supervising attorney, or edit the profile template directly.practice-profiles/README.md for the list).Configuration is opt-in. Skipping it costs you benchmarking-against-standing-positions but does not degrade any other skill's output.
Two optional layers let a legal team adapt the library without changing any skill:
practice-profiles/ — one profile per practice area capturing the team's jurisdictions, escalation thresholds, standard positions, review requirements, and prohibited assumptions. The Setup cold-start interview skills fill a profile in.matter-workspaces/ — scaffolds for organizing one specific matter: parties, documents, deadlines (always flagged for attorney verification), open items, sources, and an index of the draft work product produced by skills. Single-file templates plus a canonical multi-file template at matter-workspaces/_template/, which python scripts/init_matter_workspace.py instantiates. See docs/MATTER_WORKSPACES.md.Both are plain Markdown and add no backend, runtime, or vendor dependency.
The examples/ directory contains illustrative sample outputs — including primary skill outputs and quality-layer passes such as source validation, prose polish, hallucination red-team, and attorney-review gating. Every fact in them is fictional. They show the shape and quality of a skill's deliverable; they are not legal advice and not templates for a real matter. If you have not run a skill end-to-end yet, docs/tutorials/practice-matter.md is a guided, fictional first-run walkthrough.
The repository ships a lightweight validation script — Python standard library only, no dependencies — that checks every skill's structure, frontmatter, links, and safety framing:
python scripts/validate_repo.py
GitHub Actions runs the same checks on every pull request and on pushes to main (see .github/workflows/validate.yml):
python scripts/sync_plugin_skills.py --check # plugin bundle is in sync
python scripts/validate_repo.py # full repository validation
Other standard-library helpers in scripts/ build the machine-readable skill index (build_skill_index.py), the per-platform install packs (build_platform_packs.py), the matter-workspace initializer (init_matter_workspace.py), and the browsable static catalog under site/. Every script is documented in docs/CLI.md; the recommended commands to run after each kind of edit are in docs/AGENT_COMMANDS.md. See VALIDATION.md for the full list of checks.
Platform pack manifests and plugin-compatibility guidance are documented in
docs/PLUGIN_COMPATIBILITY.md. The generated metadata files metadata/index.json, metadata/router.json, metadata/skill_specs.json, metadata/selective_context_metrics.json, and metadata/packs.json are the machine-readable surfaces for skills, routing, typed execution, context budgets, and platform packs.
New skills and improvements are welcome. AgentCounsel is Markdown-first and safety-first — see CONTRIBUTING.md for the rules (including how to add skills, quality checks, evals, playbooks, review panels, and packs), docs/SKILL_METADATA_STANDARD.md for the frontmatter standard, and SECURITY.md for security guidance. Questions are answered in docs/FAQ.md.
For the bigger picture, see docs/PROJECT_STATUS.md (an honest maturity snapshot — what is stable, what needs manual review, what is experimental) and docs/WORKFLOW_MAP.md (how core rules, skills, quality checks, packs, workspaces, playbooks, review panels, and evals fit together).
MIT License — see LICENSE. Attribution for content adapted from other open-source projects (which remain under their original Apache-2.0 terms) is recorded in THIRD_PARTY_NOTICES.md. AgentCounsel is an independent open-source project and is not affiliated with, endorsed by, or sponsored by Anthropic, OpenAI, or Google.
AgentCounsel is a workflow library — not a law firm and not a lawyer. Using it does not create an attorney–client relationship, and it does not provide legal advice. All output is draft work product that must be reviewed and adopted by a qualified, licensed legal professional before it is relied upon. You are responsible for the use of these materials and for compliance with the rules of professional conduct that apply to you.
.devcontainer/
devcontainer.json
.github/
CODEOWNERS
dependabot.yml
ISSUE_TEMPLATE/
bug_report.md
config.yml
documentation.md
eval_benchmark.md
pack_platform_compatibility.md
skill_improvement.md
skill_request.md
pull_request_template.md
workflows/
deploy-pages.yml
links.yml
validate.yml
.gitignore
adapters/
claude-code-plugin/
plugin.json
README.md
skills/
ai-use-case-intake/
SKILL.md
contract-risk-review/
SKILL.md
templates/
contract-risk-matrix.md
demand-letter/
SKILL.md
templates/
demand-letter-outline.md
dpa-review/
SKILL.md
templates/
dpa-risk-table.md
legal-core/
SKILL.md
legal-research-memo/
SKILL.md
templates/
legal-research-memo.md
litigation-chronology/
SKILL.md
templates/
chronology-table.md
nda-review/
SKILL.md
templates/
nda-risk-table.md
termination-risk/
SKILL.md
templates/
termination-risk-checklist.md
claude-cowork/
SKILLS_INDEX.md
START_HERE.md
WORKFLOW_ROUTER.md
codex/
AGENTS.md
SKILLS_INDEX.md
gemini/
README.md
references/
codex-tools.md
copilot-tools.md
gemini-tools.md
using-agentcounsel.md
generic-md/
README.md
START_HERE.md
agentcounsel_mcp.py
AGENTS.md
CHANGELOG.md
CITATION.cff
CLAUDE.md
COMMANDS.md
CONFIGURING.md
connectors/
congress-gov.md
courtlistener.md
ecfr.md
federal-register.md
municipal-ordinances.md
pacer-recap.md
README.md
reporters-and-courts.md
sec-edgar.md
state-courts.md
uspto.md
CONTEXT.md
CONTRIBUTING.md
core/
attorney-review-checklist.md
business-stakeholder-communication.md
capacity-and-vulnerable-parties.md
confidentiality-and-privilege.md
jurisdiction-and-deadline-gates.md
legal-work-product.md
output-format-rules.md
source-and-citation-discipline.md
docs/
AGENT_COMMANDS.md
AI_GOVERNANCE_DISCLOSURE.md
ATTORNEY_REVIEW_GATE.md
BENCHMARKS.md
CHOOSE_YOUR_WORKFLOW.md
CITATION_INTEGRITY.md
CLI.md
decisions/
0001-plugin-bundle-is-generated.md
0002-eight-section-skill-structure.md
0003-markdown-only-no-runtime.md
README.md
DEMO_SCRIPT.md
EVAL_COVERAGE.md
EVALS.md
FAQ.md
GITHUB_TOPICS.md
IMPLEMENTATION_SEQUENCE.md
LAUNCH_POST.md
LOCAL_PLATFORM_PATH.md
MARKDOWN_TO_WORD.md
MATTER_WORKSPACES.md
MCP_SERVER.md
MIGRATION_PLAN_FROM_AGNOSTIC_SKILLS.md
OSS_BORROWING_MAP.md
PLATFORM_GAP_ANALYSIS.md
PLAYBOOKS.md
PLUGIN_COMPATIBILITY.md
PRACTICE_AREAS.md
PROJECT_STATUS.md
QUALITY_LAYER.md
RELEASE_CHECKLIST.md
REVIEW_PANELS.md
SAFETY_MODEL.md
SCANNED_DOCUMENTS.md
SKILL_METADATA_STANDARD.md
SKILL_SPEC_V2.md
SOURCE_VALIDATION.md
superpowers/
plans/
2026-07-13-phase-1-mcp-router.md
2026-07-13-skill-spec-v2.md
2026-07-14-selective-skill-modules.md
specs/
2026-07-13-phase-1-mcp-router-design.md
2026-07-13-skill-spec-v2-design.md
2026-07-14-selective-skill-modules-design.md
templates/
SKILL_TEMPLATE.md
SPEC_TEMPLATE.json
THIRD_PARTY_ATTRIBUTION_POLICY.md
tutorials/
practice-matter.md
WORKFLOW_MAP.md
evals/
benchmarks/
agentcounsel-benchmark.eval.yaml
outputs/
antitrust-compliance-policy-review/
antitrust-compliance-policy-review-golden-path.md
antitrust-compliance-policy-review-safety-stress.md
attorney-review-gate/
attorney-review-gate-golden-path.md
attorney-review-gate-not-ready.md
automatic-stay-issue-spotter/
automatic-stay-issue-spotter-golden-path.md
automatic-stay-issue-spotter-missing-gates.md
automatic-stay-issue-spotter-prohibited-requests.md
bad-faith-risk-triage/
bad-faith-risk-triage-golden-path.md
bad-faith-risk-triage-missing-gates.md
bad-faith-risk-triage-prohibited-requests.md
beneficiary-designation-review/
beneficiary-designation-review-golden-path.md
beneficiary-designation-review-missing-gates.md
beneficiary-designation-review-prohibited-requests.md
capital-markets-closing-checklist/
capital-markets-closing-checklist-golden-path.md
capital-markets-closing-checklist-safety-stress.md
cease-and-desist-response/
cease-and-desist-response-golden-path.md
cease-and-desist-response-missing-gates.md
cease-and-desist-response-prohibited-requests.md
compliance-gap-matrix/
rga-01-regulation-and-controls-golden-path.md
rga-02-no-requirement-source.md
contract-risk-review/
crr-01-counterparty-msa-golden-path.md
crr-02-missing-inputs-stop-and-ask.md
crypto-digital-asset-tax-intake/
crypto-digital-asset-tax-intake-golden-path.md
crypto-digital-asset-tax-intake-missing-gates.md
crypto-digital-asset-tax-intake-prohibited-requests.md
diligence-issue-extraction/
diligence-issue-extraction-golden-path.md
diligence-issue-extraction-missing-gates.md
diligence-issue-extraction-prohibited-requests.md
dpa-review/
dpa-01-controller-side-with-sectoral-overlay.md
dpa-02-ambiguous-role-missing-main-agreement.md
launch-review/
plr-01-consumer-app-children-and-ai.md
plr-02-missing-required-inputs.md
litigation-chronology/
ch-01-sourced-timeline-with-conflict.md
ch-02-no-sources-and-unknown-privilege.md
matter-intake/
mi-01-new-defendant-matter-golden-path.md
mi-02-conflict-and-missing-jurisdiction.md
nda-review/
nda-01-receiving-party-hidden-nonsolicit.md
nda-02-mna-context-routing-gate.md
negative-treatment-check/
negative-treatment-check-golden-path.md
negative-treatment-check-missing-gates.md
negative-treatment-check-prohibited-requests.md
privilege-log-review/
pl-01-mixed-purpose-entries-golden-path.md
pl-02-missing-forum-jurisdiction.md
README.md
rw-insurance-review/
rw-insurance-review-golden-path.md
rw-insurance-review-missing-gates.md
rw-insurance-review-prohibited-requests.md
termination-risk/
termination-risk-golden-path.md
termination-risk-missing-gates.md
termination-risk-prohibited-requests.md
README.md
router/
workflow-router.eval.yaml
RUBRICS.md
shared/
assertions.md
SKILL_QUALITY_RUBRIC.md
skills/
acquisition-diligence-request-list.eval.yaml
ai-feature-review.eval.yaml
ai-governance-cold-start-interview.eval.yaml
ai-use-case-intake.eval.yaml
ai-vendor-terms-review.eval.yaml
aml-program-gap-review.eval.yaml
antitrust-competition-cold-start-interview.eval.yaml
antitrust-compliance-policy-review.eval.yaml
antitrust-risk-intake.eval.yaml
asset-debt-schedule-builder.eval.yaml
asset-liability-inventory-builder.eval.yaml
assumption-audit.eval.yaml
attorney-review-gate.eval.yaml
authority-synthesis.eval.yaml
automatic-stay-issue-spotter.eval.yaml
bad-faith-risk-triage.eval.yaml
bankruptcy-deadline-tracker-intake.eval.yaml
bankruptcy-diligence-request-list.eval.yaml
bankruptcy-matter-intake.eval.yaml
bankruptcy-restructuring-cold-start-interview.eval.yaml
beneficiary-designation-review.eval.yaml
board-minutes.eval.yaml
breach-response-workflow.eval.yaml
brief-section-drafter.eval.yaml
capacity-undue-influence-facts-organizer.eval.yaml
capital-markets-closing-checklist.eval.yaml
case-brief.eval.yaml
cash-collateral-dip-financing-issue-spotter.eval.yaml
cease-and-desist-response.eval.yaml
certificate-of-insurance-review.eval.yaml
child-support-facts-intake.eval.yaml
childrens-privacy-review.eval.yaml
citation-integrity-check.eval.yaml
claim-chart.eval.yaml
claims-chronology-builder.eval.yaml
closing-checklist.eval.yaml
closing-deliverables-tracker.eval.yaml
comfort-backup-request-tracker.eval.yaml
commercial-lease-review.eval.yaml
competitor-collaboration-review.eval.yaml
compliance-gap-matrix.eval.yaml
compliance-program-tracker.eval.yaml
contract-risk-review.eval.yaml
contracts-cold-start-interview.eval.yaml
cookie-consent-review.eval.yaml
corporate-cold-start-interview.eval.yaml
coverage-issue-spotter.eval.yaml
coverage-position-outline.eval.yaml
create-matter-workspace.eval.yaml
creditor-claim-intake.eval.yaml
cross-border-transfer-review.eval.yaml
crypto-digital-asset-tax-intake.eval.yaml
custody-order-review-checklist.eval.yaml
custody-parenting-facts-chronology.eval.yaml
data-retention-schedule-review.eval.yaml
data-room-index-review.eval.yaml
demand-letter.eval.yaml
deposition-prep.eval.yaml
diligence-issue-extraction.eval.yaml
discovery-response-workflow.eval.yaml
distressed-asset-sale-checklist.eval.yaml
distribution-restraints-review.eval.yaml
divorce-intake-organizer.eval.yaml
dmca-takedown.eval.yaml
domestic-violence-safety-referral-checklist.eval.yaml
dpa-review.eval.yaml
dsar-workflow.eval.yaml
edd-file-review.eval.yaml
employee-ai-policy.eval.yaml
employee-policy-review.eval.yaml
employment-cold-start-interview.eval.yaml
employment-tax-worker-classification-intake.eval.yaml
enforcement-risk-memo.eval.yaml
entity-compliance.eval.yaml
entity-tax-classification-checklist.eval.yaml
equity-incentive-plan-review.eval.yaml
estate-document-summary.eval.yaml
estate-litigation-facts-chronology.eval.yaml
estate-planning-intake.eval.yaml
estate-tax-issue-intake.eval.yaml
estoppel-snda-review.eval.yaml
exclusivity-mfn-pricing-review.eval.yaml
executory-contract-assumption-rejection-checklist.eval.yaml
family-law-cold-start-interview.eval.yaml
family-law-discovery-tracker.eval.yaml
family-law-hearing-prep-checklist.eval.yaml
family-law-matter-intake.eval.yaml
fiduciary-duty-issue-spotter.eval.yaml
financial-crime-cold-start-interview.eval.yaml
form-d-blue-sky-tracker.eval.yaml
fto-triage.eval.yaml
gun-jumping-clean-team-checklist.eval.yaml
hallucination-red-team.eval.yaml
hiring-review.eval.yaml
indemnity-escrow-risk-review.eval.yaml
information-sharing-clean-team-review.eval.yaml
infringement-triage.eval.yaml
insider-trading-policy-review.eval.yaml
insurance-cold-start-interview.eval.yaml
insurance-policy-summary.eval.yaml
insurance-requirements-contract-review.eval.yaml
insurer-insured-communications-review.eval.yaml
integration-legal-issues-checklist.eval.yaml
internal-investigation.eval.yaml
international-tax-issue-spotter.eval.yaml
invention-intake.eval.yaml
investor-rights-agreement-review.eval.yaml
ip-cold-start-interview.eval.yaml
kyc-onboarding-review.eval.yaml
launch-review.eval.yaml
lease-abstract.eval.yaml
lease-amendment-reconciliation.eval.yaml
legal-hold.eval.yaml
legal-intake-triage.eval.yaml
legal-meeting-briefing.eval.yaml
legal-prose-polish.eval.yaml
legal-research-memo.eval.yaml
litigation-chronology.eval.yaml
litigation-cold-start-interview.eval.yaml
loan-document-review.eval.yaml
loi-term-sheet-review.eval.yaml
m-and-a-closing-deliverables-tracker.eval.yaml
m-and-a-cold-start-interview.eval.yaml
marketing-claims-review.eval.yaml
material-contract-schedule.eval.yaml
matter-intake.eval.yaml
merger-antitrust-issue-spotter.eval.yaml
model-risk-triage.eval.yaml
motion-opposition-drafter.eval.yaml
nda-review.eval.yaml
negative-treatment-check.eval.yaml
offering-document-disclosure-review.eval.yaml
open-source-license-review.eval.yaml
output-format-compliance-check.eval.yaml
parenting-schedule-facts-organizer.eval.yaml
pia-generation.eval.yaml
plan-disclosure-statement-issue-spotter.eval.yaml
policy-renewal-placement-diligence-checklist.eval.yaml
post-closing-obligations-tracker.eval.yaml
post-death-administration-task-tracker.eval.yaml
preference-demand-response-triage.eval.yaml
pricing-algorithm-risk-triage.eval.yaml
privacy-cold-start-interview.eval.yaml
privacy-policy-gap-review.eval.yaml
private-placement-checklist.eval.yaml
privilege-confidentiality-check.eval.yaml
privilege-log-review.eval.yaml
probate-document-checklist.eval.yaml
product-legal-cold-start-interview.eval.yaml
proof-of-claim-checklist.eval.yaml
protected-leave-review.eval.yaml
psa-review.eval.yaml
public-company-reporting-calendar-intake.eval.yaml
purchase-agreement-issue-list.eval.yaml
real-estate-cold-start-interview.eval.yaml
real-estate-diligence-checklist.eval.yaml
red-team-verifier.eval.yaml
redline-summary.eval.yaml
reduction-in-force-review.eval.yaml
regulatory-cold-start-interview.eval.yaml
... 1028 moreShowing a partial view of a very large repo.
© 2026 Flowy · Free and open source
Built for Claude Code · Not affiliated with Anthropic
| Mergers & Acquisitions | 12 | LOI and term-sheet review, acquisition diligence and data-room review, purchase-agreement and disclosure-schedule review, indemnity and escrow analysis, R&W-insurance review, transition-services-agreement review, third-party consents, and closing, post-closing, and integration tracking. |
| Antitrust / Competition | 10 | Antitrust risk intake, competitor-collaboration and information-sharing review, pricing-algorithm and distribution-restraint review, merger issue-spotting, gun-jumping checklists, and compliance-policy review. |
| Securities / Capital Markets | 13 | Private and public offerings, exemption issue-spotting, offering-document and risk-factor review, SEC filing consistency, Form D and blue-sky tracking, investor-rights, equity-incentive-plan, and insider-trading review, beneficial-ownership triage, and capital-markets closings. |
| Tax | 10 | Tax issue intake, entity tax-classification facts, transaction tax diligence, sales/use tax nexus triage, employment-tax worker-classification intake, contract tax-provision and covenant/indemnity review, tax document organization, international tax issue-spotting, and crypto/digital-asset tax intake. |
| Bankruptcy / Restructuring | 12 | Bankruptcy and creditor-claim intake, proof-of-claim checklists, automatic-stay and preference issue-spotting, executory-contract assumption/rejection review, distressed-M&A diligence and asset-sale checklists, restructuring term-sheet review, plan and disclosure-statement issue-spotting, DIP financing issue-spotting, and deadline-tracker intake. |
| Insurance | 12 | Insurance policy summaries, coverage issue-spotting, claim chronologies, reservation of rights and tender review, coverage-position outlines, bad-faith risk triage, certificate of insurance and contract insurance-requirements review, subrogation/recovery tracking, and renewal/placement diligence checklists. |
| Trusts & Estates | 12 | Estate-planning intake, estate-document summaries, probate document checklists, trust administration and post-death task tracking, fiduciary-duty issue-spotting, beneficiary-designation review, asset and liability inventories, capacity and undue-influence facts organization, estate-litigation chronologies, trust-funding checklists, and estate-tax issue intake. |
| Family Law | 12 | Family-law matter and divorce intake, custody and parenting facts chronologies and schedule organization, custody-order review, child-support and spousal-support facts intake, asset/debt schedules, settlement-agreement issue-spotting, discovery tracking, hearing preparation, and domestic-violence safety referral. |
AGENTS.md| Cursor | Add the library to a project and reference it from a .cursorrules file or AGENTS.md. (The packs page above also serves a ready-made .cursorrules.) | adapters/codex/ |
| MCP client | Use the optional local MCP catalog for stable-ID routing, typed contracts, and deterministic get_skill_context bundles. | docs/MCP_SERVER.md, agentcounsel_mcp.py |
| Your own agent | Vendor the skills/ and core/ directories into your project and reference them from your agent's instructions. | skills/, core/ |