agentsclimarketplace

Recipe claim analysis

Skill flowleap-ai/flowleap-plugins/plugins/flowleap/skills/recipe-claim-analysis

Decompose a patent's claims into elements, keywords, and search queries with full supporting context — claims text, abstract, bibliography, description, and family. Trigger when the user asks to analyze what a patent claims, break claims into elements, or interpret claim scope against its specification.From its SKILL.md

Install
npx -y skills add flowleap-ai/flowleap-plugins --skill recipe-claim-analysis

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.8 KB, 325 tokens by cl100k_base, as published. Nobody here has run it

Recipe: Claim Analysis

Extract a patent's claims with full context, then decompose them into elements.

Steps

Step 1: Extract Claims

flowleap --json ops claims <patent-number>

Done when you have the full claim set, independent claims identified.

Step 2: Get Context

flowleap --json ops abstract <patent-number>
flowleap --json ops biblio <patent-number>
flowleap --json ops description <patent-number>

Step 3: Check Related Patents

flowleap --json ops family <patent-number>

Step 4: Decompose Every Independent Claim

Take each independent claim from Step 1, save its text to a file, and let the backend break it into elements, keywords, and suggested search queries in one pass (--focus full = elements + search):

flowleap analyze-claim --file claim1.txt --focus full

Repeat for every independent claim. For each dependent claim, note how it narrows its parent (the added element). Done when every independent claim has an element breakdown and each dependent claim's added limitation is recorded.

Output

Complete claim data with supporting context:

  • Full claims text (independent and dependent)
  • Abstract, bibliographic data, and description for interpretation
  • Family members for jurisdiction coverage
  • Element breakdown and follow-up search queries per independent claim, plus the narrowing limitation added by each dependent claim

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,645. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.