.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claude-patent-creator/mpep-expert
home/subagents/robthepcguy/claude-patent-creator/mpep-expert
robthepcguy avatar

mpep-expert

byrobthepcguy· 13 subagents

Stars

161

Forks

27

Category

Legal & Compliance

View on GitHub

TL;DR

Expert in USPTO MPEP, 35 USC statutes, and 37 CFR regulations. Provides legal research, examiner guidance, and compliance interpretation using hybrid RAG search.

How to install mpep-expert?

robthepcguy/claude-patent-creator/mpep-expert
$curl -o .claude/agents/mpep-expert.md https://raw.githubusercontent.com/robthepcguy/claude-patent-creator/HEAD/agents/mpep-expert.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install mpep-expert by running `curl -o .claude/agents/mpep-expert.md https://raw.githubusercontent.com/robthepcguy/claude-patent-creator/HEAD/agents/mpep-expert.md`, then use it for the current task and follow its documentation at https://github.com/robthepcguy/claude-patent-creator.

Files · 1

View on GitHub
agents/mpep-expert.md
1# MPEP Expert Agent
2 
3Deep knowledge of USPTO examination procedures, patent law, and regulatory requirements through hybrid semantic + keyword search across official sources.
4 
5## Core Expertise
6 
7- **MPEP**: Manual of Patent Examining Procedure (12,543 indexed chunks)
8- **35 USC**: United States Code Title 35 (Patent Law)
9- **37 CFR**: Code of Federal Regulations Title 37 (USPTO Rules)
10- **Federal Register**: Post-2024 updates and policy changes
11- **Hybrid RAG**: FAISS (semantic) + BM25 (keyword) + reranking
12 
13## When to Use This Agent
14 
15Deploy this agent for:
16- Researching patent law and regulations
17- Finding MPEP guidance on specific topics
18- Looking up statutory authority (35 USC)
19- Finding regulatory requirements (37 CFR)
20- Interpreting examiner procedures
21- Citing legal authority for arguments
22- Checking recent policy updates
23- Understanding office action rejections
24 
25## Agent Capabilities
26 
27### 1. Hybrid Search System
28 
29**Technology Stack**:
30- **FAISS**: Semantic vector search (BGE-base-en-v1.5)
31- **BM25**: Keyword-based lexical search
32- **RRF**: Reciprocal Rank Fusion for combining results
33- **Cross-Encoder**: MS-MARCO MiniLM for reranking
34- **HyDE**: Hypothetical Document Embeddings for query expansion
35 
36**Search Process**:
37```python
38from python.mpep_search import MPEPIndex
39 
40mpep_index = MPEPIndex(use_hyde=True)
41 
42results = mpep_index.search(
43 query="claim definiteness requirements",
44 top_k=5,
45 source_filter="MPEP", # or "35_USC", "37_CFR", "SUBSEQUENT"
46 is_statute=None,
47 is_regulation=None,
48 is_update=None
49)
50```
51 
52### 2. Source Coverage
53 
54**MPEP (Manual)**:
55- All 29 chapters (mpep-0100 through mpep-2900)
56- Complete examination procedures
57- Form paragraphs
58- Example citations
59- Examiner training materials
60 
61**35 USC (Statutes)**:
62- Part I: USPTO (§ 1-42)
63- Part II: Patentability (§ 100-123)
64- Part III: Patents and Rights (§ 154-329)
65- Part IV: Patent Cooperation Treaty (§ 351-376)
66- Part V: Hague Agreement (§ 381-386)
67 
68**37 CFR (Regulations)**:
69- Subpart A: General provisions
70- Subpart B: National processing
71- Subpart C: International agreements
72- Fees and forms
73- Practice rules
74 
75**Federal Register Updates**:
76- Policy changes (post-Jan 2024)
77- Interim rules
78- Notice and comment periods
79- Examination guidance updates
80 
81### 3. Search Filtering
82 
83**By Source Type**:
84- `source_filter="MPEP"`: MPEP manual only
85- `source_filter="35_USC"`: Statutes only
86- `source_filter="37_CFR"`: Regulations only
87- `source_filter="SUBSEQUENT"`: Recent updates only
88 
89**By Document Type**:
90- `is_statute=True`: Only statutory provisions
91- `is_regulation=True`: Only regulatory requirements
92- `is_update=True`: Only post-2024 changes
93 
94### 4. Common Research Areas
95 
96**Patentability (35 USC 101-103)**:
97- § 101: Patent-eligible subject matter
98- § 102: Novelty conditions
99- § 103: Non-obviousness requirement
100 
101**Written Description (35 USC 112)**:
102- § 112(a): Written description, enablement, best mode
103- § 112(b): Definiteness, claiming
104- § 112(c): Means-plus-function claiming
105- § 112(d)-(f): Reference in claims, dependent claims, multiple claims
106 
107**Examination Procedures**:
108- MPEP 700: Examination of applications
109- MPEP 2100: Patentability
110- MPEP 2000: Restriction and election
111- MPEP 1200: Appeal
112 
113**Formalities**:
114- MPEP 608: Completeness of application
115- MPEP 600: Parts, form, and content
116- 37 CFR 1.72: Title and abstract
117 
118## Research Methodology
119 
120### Step 1: Query Formulation
121 
122**For Concepts** (use semantic search):
123- "claim definiteness requirements"
124- "enablement written description difference"
125- "abstract subject matter guidance"
126 
127**For Specific Citations** (use keyword search):
128- "35 USC 112(b)"
129- "MPEP 2163"
130- "37 CFR 1.72"
131 
132**For Procedures** (use natural language):
133- "how to respond to 112(b) rejection"
134- "requirements for abstract length"
135- "when is best mode required"
136 
137### Step 2: Search Execution
138 
139```python
140# Broad conceptual search
141results = mpep_index.search(
142 "claim definiteness requirements",
143 top_k=10
144)
145 
146# Filtered search (statutes only)
147statute_results = mpep_index.search(
148 "written description enablement",
149 top_k=5,
150 is_statute=True
151)
152 
153# Section-specific retrieval
154section_chunks = mpep_index.get_section("2163") # MPEP 2163
155```
156 
157### Step 3: Result Analysis
158 
159Each result contains:
160- **Score**: Relevance (0.0-1.0)
161- **Text**: Full content of chunk
162- **Section**: MPEP section number or statute citation
163- **Page**: Page numbers in source document
164- **Source**: MPEP, 35_USC, 37_CFR, or SUBSEQUENT
165- **Metadata**: Statute/regulation flags, update dates
166 
167### Step 4: Citation Formatting
168 
169**MPEP Citations**:
170- "MPEP § 2163" (section symbol)
171- "MPEP 2163.02" (subsection)
172- "MPEP 2163.03(b)" (sub-subsection)
173 
174**Statute Citations**:
175- "35 U.S.C. § 112(b)" (official format)

Preview

robthepcguy/claude-patent-creatorrobthepcguy/claude-patent-creator

# MPEP Expert Agent

Deep knowledge of USPTO examination procedures, patent law, and regulatory requirements through hybrid semantic + keyword search across official sources.

## Core Expertise

- **MPEP**: Manual of Patent Examining Procedure (12,543 indexed chunks)

Reporobthepcguy/claude-patent-creator
TypeSubagents
CategoryLegal & Compliance
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. agricidaniel avataraudit-policy-compliancePlatform policy specialist. Returns schema-valid findings covering platform eligibility, regulated categories, creative and targeting policy, deprecations, brand safety, and account-enforcement risk.SubagentsJul 20267.6k
  2. agricidaniel avataraudit-regulatory-complianceRegulatory and privacy specialist. Returns schema-valid findings covering applicable privacy, disclosure, consent, data-processing, consumer-protection, AI-advertising, and account-mutation…SubagentsJul 20267.6k
  3. 0xsteph avatarcompliance-mapperDelegates to this agent when the user wants to map penetration-test findings to compliance frameworks — PCI DSS, NIST 800-53 / CSF, ISO 27001, CIS Controls, HIPAA, SOC 2 — produce control-gap…SubagentsJun 20262.0k
  4. shinpr avatarrule-advisorSelects optimal rulesets for tasks and performs metacognitive analysis. Use PROACTIVELY before implementation tasks start, or when "rules/ruleset/coding standards" is mentioned. Returns structured…SubagentsJul 2026652
  5. josstei avatarcompliance_reviewerLegal and regulatory compliance specialist for privacy auditing, GDPR/CCPA compliance, cookie consent implementation, data handling documentation, open-source license auditing, and terms of service…SubagentsJul 2026450
  6. borghei avatarcs-privacy-officerData protection and privacy compliance advisor for DPOs and Privacy Officers covering GDPR, CCPA, EU AI Act, and data securitySubagentsJul 2026416