Use when mapping patent claims to products, analyzing patent infringement, or preparing freedom-to-operate analyses. Compares patent claims against product features for biotech and pharmaceutical IP assessment.
56
66%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./scientific-skills/Evidence Insight/patent-claim-mapper/SKILL.mdMap patent claims to product features for infringement analysis, freedom-to-operate assessments, and competitive intelligence in biotech/pharma.
scripts/main.py.references/ for task-specific guidance.Python: 3.10+. Repository baseline for current packaged skills.dataclasses: unspecified. Declared in requirements.txt.cd "20260318/scientific-skills/Evidence Insight/patent-claim-mapper"
python -m py_compile scripts/main.py
python scripts/main.py --helpExample run plan:
CONFIG block or documented parameters if the script uses fixed settings.python scripts/main.py with the validated inputs.See ## Workflow above for related details.
scripts/main.py.references/ contains supporting rules, prompts, or checklists.Use this command to verify that the packaged script entry point can be parsed before deeper execution.
python -m py_compile scripts/main.pyUse these concrete commands for validation. They are intentionally self-contained and avoid placeholder paths.
python -m py_compile scripts/main.py
python scripts/main.py --helpfrom scripts.claim_mapper import ClaimMapper
mapper = ClaimMapper()
# Map claims to product
mapping = mapper.analyze(
patent_claims="patent_claims.txt",
product_description="product_spec.txt"
)claims = mapper.parse_claims(
patent_file="US10123456B2.pdf",
independent_only=False
)mapping = mapper.map_to_product(
claim="A monoclonal antibody that binds to PD-1...",
product_features=product_specs
)Mapping Results:
gaps = mapper.identify_gaps(
mapping_results,
strategy="design_around"
)python scripts/claim_mapper.py \
--patent US10123456B2 \
--product product_spec.txt \
--output mapping_report.pdfSkill ID: 213 | Version: 1.0 | License: MIT
Every final response should make these items explicit when they are relevant:
scripts/main.py fails, report the failure point, summarize what still can be completed safely, and provide a manual fallback.This skill accepts requests that match the documented purpose of patent-claim-mapper and include enough context to complete the workflow safely.
Do not continue the workflow when the request is out of scope, missing a critical input, or would require unsupported assumptions. Instead respond:
patent-claim-mapperonly handles its documented workflow. Please provide the missing required inputs or switch to a more suitable skill.
Use the following fixed structure for non-trivial requests:
If the request is simple, you may compress the structure, but still keep assumptions and limits explicit when they affect correctness.
f5ef65b
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.