Automated analysis of patent claims for USPTO compliance with 35 USC 112(b) requirements.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionpatent-claims-analyzerExecute the skills CLI command in your project's root directory to begin installation:
Fetches patent-claims-analyzer from robthepcguy/claude-patent-creator and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate patent-claims-analyzer. Access via /patent-claims-analyzer in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
1
total installs
1
this week
66
GitHub stars
0
upvotes
Run in your terminal
1
installs
1
this week
66
stars
Automated analysis of patent claims for USPTO compliance with 35 USC 112(b) requirements.
Invoke this skill when users ask to:
Performs comprehensive automated analysis:
Antecedent Basis Checking:
Definiteness Analysis (35 USC 112(b)):
Claim Structure Validation:
Issue Categorization:
This skill uses the automated claims analyzer from:
Location: ${CLAUDE_PLUGIN_ROOT}/python\claims_analyzer.py
When this skill is invoked:
Load the claims analyzer:
import sys
sys.path.insert(0, os.path.join(os.environ.get('CLAUDE_PLUGIN_ROOT', '.'), 'python'))
from python.claims_analyzer import ClaimsAnalyzer
analyzer = ClaimsAnalyzer()
Analyze claims:
claims_text = """
1. A system comprising:
a processor;
a memory; and
said processor configured to...
"""
results = analyzer.analyze_claims(claims_text)
Present analysis:
{
"claim_count": 20,
"independent_count": 3,
"dependent_count": 17,
"compliance_score": 85, # 0-100
"total_issues": 12,
"critical_issues": 2,
"important_issues": 7,
"minor_issues": 3,
"issues": [
{
"category": "antecedent_basis",
"severity": "critical",
"claim_number": 1,
"term": "said processor",
"description": "Term 'processor' used with 'said' before first introduction",
"mpep_cite": "MPEP 2173.05(e)",
"suggestion": "Change 'said processor' to 'the processor' or introduce with 'a processor' first"
},
# ... more issues
]
}
Antecedent Basis Errors:
Definiteness Issues:
Structure Issues:
Present analysis as:
CLAIMS ANALYSIS REPORT
======================
Summary:
- Total Claims: 20 (3 independent, 17 dependent)
- Compliance Score: 85/100
- Issues Found: 12 (2 critical, 7 important, 3 minor)
CRITICAL ISSUES (Must Fix):
[Claim 1] Antecedent Basis Error
Issue: Term 'processor' used with 'said' before introduction
Location: "said processor configured to..."
MPEP: 2173.05(e)
Fix: Change to 'the processor' or introduce with 'a processor' first
[Claim 5] Indefinite Term
Issue: Subjective term 'substantially' without definition
Location: "substantially similar to..."
MPEP: 2173.05(b)
Fix: Define 'substantially' in specification or use objective criteria
IMPORTANT ISSUES:
...
MINOR ISSUES:
...
For each issue, the skill can:
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
onewave-ai/claude-skills
aidotnet/moyucode
davila7/claude-code-templates
intellectronica/agent-skills
am-will/codex-skills
sickn33/antigravity-awesome-skills
patent-claims-analyzer fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
Keeps context tight: patent-claims-analyzer is the kind of skill you can hand to a new teammate without a long onboarding doc.
Registry listing for patent-claims-analyzer matched our evaluation — installs cleanly and behaves as described in the markdown.
I recommend patent-claims-analyzer for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
patent-claims-analyzer reduced setup friction for our internal harness; good balance of opinion and flexibility.
patent-claims-analyzer has been reliable in day-to-day use. Documentation quality is above average for community skills.
Useful defaults in patent-claims-analyzer — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Registry listing for patent-claims-analyzer matched our evaluation — installs cleanly and behaves as described in the markdown.
Solid pick for teams standardizing on skills: patent-claims-analyzer is focused, and the summary matches what you get after install.
I recommend patent-claims-analyzer for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 36