← Back to Articles & Artefacts
artefactseast

PNT-How2-2d899db6-8198-46cb-b166-17909c6dd65f-260103

IAIP Research
<img src="https://r2cdn.perplexity.ai/pplx-full-logo-primary-dark%402x.png" style="height:64px;margin-right:32px"/>

PNT-How2-2d899db6-8198-46cb-b166-17909c6dd65f-260103

Carefully explore academics, web and other source to write a full article to educate me on 'patenting' and also that document must have an appendix for my terminal agents with prodedure, methods to help them do that job as we progress writing stories and developping technologies. We use the NCP (Narrative Context Protocol) and somehow what you produce will help put into motions the 4 perspectives, context and story to somehow have a team of LLM and human collaborate on trying to patent whatever we need todo.

do not use the word 'comprehensive' in your output and dont talk about the fact that I am asking that.

Patents grant inventors exclusive rights to their creations for a limited time, protecting new, useful, and non-obvious inventions from unauthorized use. This system encourages innovation by balancing public disclosure with temporary monopolies. The process involves rigorous examination to ensure only qualifying ideas receive protection.12

Types of Patents

Utility patents cover new processes, machines, manufactured items, or compositions of matter, lasting 20 years from filing. Design patents protect ornamental appearances of articles, typically for 15 years. Plant patents apply to new asexually reproduced varieties, also for 20 years. Each type demands distinct application elements, like functional descriptions for utility versus visual drawings for design.34

Patent Requirements

Inventions must show novelty, meaning no identical prior public disclosure exists; non-obviousness, where the idea would not be apparent to experts; and utility, providing practical benefits. Subject matter excludes abstract ideas, laws of nature, or natural phenomena unless integrated into practical applications. For AI or software, claims need technical improvements, such as enhanced processing efficiency, to qualify.567

US Patent Process

Inventors start with a prior art search using USPTO tools or databases like Google Patents. File a provisional application for quick "patent pending" status (12-month placeholder) or a non-provisional for full examination. The USPTO reviews for completeness, assigns an examiner for novelty checks, issues office actions with rejections, and requires responses. Approval leads to issuance after fees; expect 1-3 years total.89101

International Protection

The Patent Cooperation Treaty (PCT) enables one filing for 157 countries, entering an international phase with search and opinion, then national phases within 30-31 months. Regional options like EPO cover Europe. Strategy prioritizes key markets while deferring costs.111213

Costs and Maintenance

Filing fees range from $75 for provisional (micro entity) to $1,600+ for non-provisional utility, plus attorney costs ($5,000-$15,000). Maintenance fees for US utility patents due at 3.5, 7.5, and 11.5 years post-grant: $2,000-$8,000 escalating. Miss deadlines, and rights lapse.1415

Common Pitfalls

Inadequate prior art searches miss blocking references. Vague descriptions fail enablement, where skilled persons cannot replicate without excess effort. Overly broad claims invite rejections; inconsistent terms weaken enforceability. Public disclosures before filing bar novelty in most jurisdictions.1617

Appendix: Terminal Agent Procedures

Use these scripts and steps for NCP-integrated agents to handle patent tasks during story/technology development.

Prior Art Search Script

``` #!/bin/bash

Search USPTO, EPO, Google Patents for keywords from NCP context/story elements

query=$(echo "$1" | tr ' ' '+') # e.g., "NCP narrative protocol AI" curl -s "https://patents.google.com/?q=$query&country=US" | grep -oP '(?<=<a href="/patent/)\w+' | head -20 > prior_art.txt echo "Top prior art IDs in prior_art.txt. Review for novelty." ```

Provisional Draft Generator

```

Python script: generate_provisional.py

import sys from ncp_context import extract_invention_story # Assume NCP parser

def draft_provisional(context): invention = extract_invention_story(context) spec = f""" Title: {invention['title']} Description: {invention['problem']} solved by {invention['solution']} Enablement: Steps - 1. {invention['step1']}; 2. {invention['step2']} Drawings: [Describe figures from story diagrams] """ with open('provisional_spec.txt', 'w') as f: f.write(spec) print("Draft in provisional_spec.txt. File via USPTO Patent Center.")

if name == 'main': draft_provisional(sys.argv1) # Pass NCP JSON ```

Filing Checklist

  1. Run prior art search; flag blocking refs in NCP issue tracker.
  2. Extract invention from 4 NCP perspectives (e.g., technical context as claims).
  3. Generate provisional draft; human/LLM review for enablement.
  4. E-file via Patent Center: spec, drawings, fees. Claim priority in non-prov.
  5. Track deadlines: 12mo to non-prov, PCT if global. Set Redis reminders.
  6. Post-filing: Monitor office actions, respond via agent-drafted amendments tied to story evolution.918

Monitoring Script

```

monitor_patent.py - Poll USPTO for application status

import requests from bs4 import BeautifulSoup

app_no = "YOUR_APP_NUMBER" url = f"https://portal.uspto.gov/pair/PublicPair"

Automate status scrape; alert Slack/Email on actions

Integrate with NCP: Update story branch if rejected

```

Agents collaborate: LLM1 searches/drafts, LLM2 claims from perspectives, Human approves filing. Version in GitHub repo linked to NCP stories.1920 <span style="display:none">21222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869</span>

<div align="center">⁂</div>

Footnotes

  1. https://www.uspto.gov/patents/basics/patent-process-overview ↩ ↩2 ↩3

  2. https://www.uspto.gov/patents/basics ↩

  3. https://www.shopify.com/ca/blog/types-of-patents ↩

  4. https://www.goldsteinpatentlaw.com/provisional-vs-non-provisional-patent/ ↩

  5. https://www.vo.eu/dossier/artificial-intelligence/ ↩

  6. https://www.richardt.eu/en/news/detail/patentability-of-ai-inventions/ ↩

  7. https://www.uspto.gov/about-us/news-updates/uspto-issues-ai-subject-matter-eligibility-guidance ↩

  8. https://www.wilsonlue.com/guide/overview-of-the-patent-process ↩

  9. https://www.uspto.gov/patents/basics/apply ↩ ↩2

  10. https://mep.utah.edu/uspto-patent-process-overview/ ↩

  11. https://ised-isde.canada.ca/site/canadian-intellectual-property-office/en/patents/patent-application-and-examination/file-international-patent-application-through-patent-cooperation-treaty-pct-patent-cooperation ↩

  12. https://en.wikipedia.org/wiki/Patent_Cooperation_Treaty ↩

  13. https://www.fillun.com/pct-timeline ↩

  14. https://www.traskbritt.com/a-guide-to-paying-patent-maintenance-fees/ ↩

  15. https://www.heerlaw.com/patent-maintenance-fees ↩

  16. https://www.obrienpatents.com/common-patent-mistakes/ ↩

  17. https://www.novelpatent.com/en-us/blogs/top-10-patent-drafting-mistakes/ ↩

  18. https://boldip.com/blog/write-submit-patent-application/ ↩

  19. https://arxiv.org/pdf/2409.19006.pdf ↩

  20. http://arxiv.org/pdf/2411.13477.pdf ↩

  21. https://www.tandfonline.com/doi/full/10.1080/08956308.1997.11671129 ↩

  22. http://www.bhu.ac.in/research_pub/jsr/Volumes/JSR_64_01_2020/40.pdf ↩

  23. https://www.eurekaselect.com/211866/article ↩

  24. http://link.springer.com/10.1007/978-1-4612-0743-6_16 ↩

  25. http://commercialbiotechnology.com/index.php/jcb/article/view/767 ↩

  26. http://www.emerald.com/bpmj/article/25/2/323-346/256778 ↩

  27. https://onlinelibrary.wiley.com/doi/10.1111/jwip.12361 ↩

  28. https://link.springer.com/10.1007/978-1-62703-505-7_32 ↩

  29. https://www.semanticscholar.org/paper/3c767b151cbc37fa528e487816351be45a9de288 ↩

  30. https://jlsr.thelawbrigade.com/article/lets-talk-about-patent-act-1970/ ↩

  31. https://pmc.ncbi.nlm.nih.gov/articles/PMC549056/ ↩

  32. https://pmc.ncbi.nlm.nih.gov/articles/PMC5676557/ ↩

  33. https://pmc.ncbi.nlm.nih.gov/articles/PMC2751480/ ↩

  34. https://pmc.ncbi.nlm.nih.gov/articles/PMC3737629/ ↩

  35. https://arxiv.org/pdf/2503.11555.pdf ↩

  36. https://arxiv.org/pdf/2501.18043.pdf ↩

  37. https://arxiv.org/pdf/2104.14860.pdf ↩

  38. https://www.invent.org/blog/intellectual-property/how-to-patent-idea-product ↩

  39. https://www.richardspatentlaw.com/faq/what-are-the-stages-of-the-patent-process/ ↩

  40. https://libguides.scu.edu/patents/file ↩

  41. https://aeonlaw.com/ip-101s/the-patent-process-simplified/ ↩

  42. https://foundr.com/articles/building-a-business/how-to-patent-an-idea ↩

  43. https://www.heerlaw.com/patentability-basics-canada ↩

  44. https://pci.upenn.edu/wp-content/uploads/2015/01/U-Penn_Engr_Patent-Application-and-Examination-Processes-04162015.pdf ↩

  45. https://www.patentrenewal.com/post/understanding-the-wipo-patent-cooperation-treaty-application-process ↩

  46. https://www.ropesgray.com/en/insights/alerts/2024/02/can-ai-inventions-be-patented-the-uspto-speaks ↩

  47. https://cooperip.com/7-steps-to-patent-protection/ ↩

  48. https://www.shopify.com/ca/blog/how-to-patent-an-idea ↩

  49. https://www.semanticscholar.org/paper/4a09a421ba5c8b7a2e9dccb0019f97be84131334 ↩

  50. http://link.springer.com/10.1007/978-3-319-70232-2_2 ↩

  51. https://www.semanticscholar.org/paper/adf5be5a6993de0b604c45a69afeeab91fb7c051 ↩

  52. https://arxiv.org/abs/2407.12193 ↩

  53. https://link.springer.com/10.1007/s40319-024-01521-0 ↩

  54. https://journals.lww.com/10.1097/PRS.0000000000008369 ↩

  55. http://www.cardiologyres.org/index.php/Cardiologyres/article/view/1417 ↩

  56. http://link.springer.com/10.1007/s10961-009-9136-0 ↩

  57. https://www.ssrn.com/abstract=3898895 ↩

  58. https://www.eurekaselect.com/215886/article ↩

  59. https://infoscience.epfl.ch/record/272610/files/Final_Version.pdf ↩

  60. https://arxiv.org/pdf/2207.04043.pdf ↩

  61. http://www.scielo.br/pdf/eins/v11n1/en_a03v11n1.pdf ↩

  62. https://arxiv.org/pdf/1912.03502.pdf ↩

  63. https://www.youtube.com/watch?v=rhe6fR4VHqA ↩

  64. https://patents.google.com/patent/US20120016859A1/en ↩

  65. https://ttconsultants.com/the-power-of-words-and-drawings-creating-strong-patents-through-patent-drafting/ ↩

  66. https://www.uspto.gov/patents/initiatives/prior-art-search ↩

  67. https://patentlawyermagazine.com/best-practices-for-drafting-strong-patent-claims/ ↩

  68. https://www.ericksonlawgroup.com/law/patents/patentfaq/start-with-a-provisional-or-a-non-provisional-patent-application/ ↩

  69. https://libguides.uta.edu/c.php?g=1405396\&p=10402709 ↩