agentsclimarketplace

Recipe freedom to operate

Skill flowleap-ai/flowleap-plugins/plugins/flowleap/skills/recipe-freedom-to-operate

Freedom-to-operate clearance for a product or technology — per-feature query generation, dual-database blocking-patent search, and legal-status, family, and all-elements claim checks on every live candidate. Trigger when the user asks whether a product or technology can launch without infringing, or requests an FTO/clearance search.From its SKILL.md

Install
npx -y skills add flowleap-ai/flowleap-plugins --skill recipe-freedom-to-operate

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

2.7 KB, 553 tokens by cl100k_base, as published. Nobody here has run it

Recipe: Freedom-to-Operate (FTO) Search

Search for potentially blocking patents for a product or technology. Each database uses its own query syntax — see flowleap-uspto for the USPTO Lucene grammar.

Steps

Step 1: Generate Targeted Searches

Build a query per key product feature, in each database's own syntax:

# EPO CQL
flowleap patent build-query "<feature 1 description>" --allow-external-processing
# USPTO ODP
flowleap uspto build-query "<feature 1 description>" --allow-external-processing
# Repeat for each feature

Done when every key feature has an EPO and a USPTO query.

Step 2: Search for Potentially Blocking Patents

flowleap --json patent search --query "<CQL for feature 1>" --limit 20
flowleap --json uspto search --query "<recommended_query for feature 1>" --limit 20
# Repeat for each feature

Done when both databases have been searched for every feature.

Step 3: Screen to Live, In-Market Candidates

Take the one-call snapshot (bibliography + legal status + family + term) and keep only patents that are legally alive and cover a jurisdiction you sell in:

flowleap --json summary <patent-number>

Or, if you need the pieces separately:

flowleap --json ops legal <patent-number>     # is it active?
flowleap --json ops family <patent-number>    # where is it filed?

Done when every survivor is both in force and filed in a sales jurisdiction; drop the rest.

Step 4: All-Elements Claim Mapping

For each surviving blocker, pull its claims and map product features against every element of each independent claim:

flowleap --json ops claims <patent-number>

A claim clears only if at least one of its elements is absent from the product. Done when every independent claim of every survivor is either cleared (≥1 element absent) or flagged as a live infringement risk.

Output

FTO data package per live blocking patent:

  • Legal status (active, expired, abandoned) and remaining term
  • Geographic coverage (family members) against your sales jurisdictions
  • Per-claim all-elements verdict: cleared or at-risk

If the full skill pack is installed, continue with recipe-infringement-charting to chart the at-risk claims element by element.

What ships with it

Read from the repository

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

Keep looking

Skills are one crate of 325,949. 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.