Oracle IP Intelligence

AI-powered intellectual property analysis patterns for enterprise innovation protection

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "Oracle IP Intelligence" with this command: npx skills add oci-ai-architects/claude-code-oci-ai-architect-skills/oci-ai-architects-claude-code-oci-ai-architect-skills-oracle-ip-intelligence

Oracle IP Intelligence Skill

Purpose

Transform AI coding assistants into IP-aware innovation partners. Combines OCI GenAI, Database 26ai Vector + Graph, and Document Understanding for comprehensive intellectual property analysis.

Cross-Platform Compatibility

This skill is designed for universal AI coding assistant integration:

PlatformIntegrationStatus
Claude CodeNative skill✅ Primary
Cline / Oracle Code Assistant.cline rules✅ Supported
GitHub CopilotCustom instructions🔜 Planned
Cursor.cursorrules🔜 Planned
Gemini Code AssistContext file🔜 Planned

When to Use

Activate when:

  • Reviewing code for potential patentability
  • Searching prior art before R&D investment
  • Analyzing competitive patent landscapes
  • Generating innovation documentation
  • Checking freedom-to-operate for new features

Architecture Pattern

┌─────────────────────────────────────────────────────────────┐
│                    IP Intelligence Platform                  │
├─────────────────────────────────────────────────────────────┤
│                                                              │
│  ┌──────────────┐  ┌──────────────┐  ┌──────────────────┐  │
│  │ Prior Art    │  │ Claim        │  │ Freedom to       │  │
│  │ Agent        │  │ Analyzer     │  │ Operate Agent    │  │
│  │              │  │              │  │                  │  │
│  │ - Semantic   │  │ - Element    │  │ - Risk scoring   │  │
│  │   search     │  │   extraction │  │ - Workaround     │  │
│  │ - Citation   │  │ - Overlap    │  │   suggestions    │  │
│  │   network    │  │   detection  │  │ - Export legal   │  │
│  └──────────────┘  └──────────────┘  └──────────────────┘  │
│                           │                                  │
│              ┌────────────┴────────────┐                    │
│              │  Oracle Database 26ai    │                    │
│              │  Vector + Graph + SQL    │                    │
│              │  ───────────────────     │                    │
│              │  • Patent embeddings     │                    │
│              │  • Citation graph        │                    │
│              │  • Claim mapping         │                    │
│              └──────────────────────────┘                    │
│                                                              │
└─────────────────────────────────────────────────────────────┘

Model Selection for IP Tasks

TaskRecommended ModelWhy
Patent semantic searchCohere Embed + Command RPurpose-built RAG, EU residency
Claim extractionGemini 2.5 FlashMultimodal doc processing
Legal risk analysisCohere Command A ReasoningMulti-step reasoning
Citation graph analysisDatabase 26ai GraphNative graph traversal
Innovation summarizationLlama 4 MaverickLong context (1M tokens)

Integration with Code Development

Pre-Commit IP Check

from oci_ip_intelligence import IPAnalyzer

def pre_commit_ip_hook(code_changes: str) -> dict:
    """
    Analyze code changes for IP implications.
    Runs before commit to catch innovation opportunities.
    """
    analyzer = IPAnalyzer(
        compartment_id=os.environ["OCI_COMPARTMENT_ID"],
        patent_collection="enterprise_patents"
    )
    
    # Extract technical concepts from code
    concepts = analyzer.extract_concepts(code_changes)
    
    # Search prior art
    prior_art = analyzer.search_prior_art(
        concepts=concepts,
        search_mode="hybrid",  # Vector + Graph
        date_range="last_10_years"
    )
    
    # Assess novelty score
    novelty = analyzer.assess_novelty(concepts, prior_art)
    
    return {
        "novelty_score": novelty.score,
        "recommendation": novelty.action,  # "document", "review", "proceed"
        "related_patents": prior_art[:5],
        "innovation_summary": novelty.summary
    }

IDE Integration Pattern

// VS Code / Cursor extension pattern
const ipCheck = async (document) => {
  const analysis = await fetch('/api/ip-check', {
    method: 'POST',
    body: JSON.stringify({
      code: document.getText(),
      language: document.languageId,
      context: getProjectContext()
    })
  });
  
  if (analysis.novelty_score > 0.7) {
    showNotification("🎯 Potential innovation detected! Consider documenting.");
  }
  
  if (analysis.risk_score > 0.5) {
    showWarning("⚠️ Similar patents found. Review before proceeding.");
  }
};

Chemical Industry Specialization

For chemistry/pharma applications (ChemPatent pattern):

CapabilityOCI ServicesSpecialization
Structure SearchOCI Vision + Custom ModelSMILES, InChI notation
Compound DetectionOCI Document UnderstandingNamed entity extraction
Reaction AnalysisCohere Command AChemical equation parsing
Formulation IPDatabase 26ai VectorSimilarity search

OCI Services Required

ServicePurposeTier
OCI Generative AIEmbeddings, reasoningStandard
Autonomous Database 26aiVector + Graph storageAdvanced
OCI Document UnderstandingPatent PDF processingStandard
OCI Object StoragePatent corpusStandard
OCI FunctionsServerless IP checksStandard

Reference Implementations

Working Prototypes

  • projects/Patent AI Agent/chemical-industry/workbench.html - Analyst workflow
  • projects/Patent AI Agent/chemical-industry/search.html - Structure search
  • projects/Patent AI Agent/portal/index.html - Executive showcase

API Endpoints (Reference)

POST /api/v1/prior-art/search
POST /api/v1/claims/analyze
POST /api/v1/fto/check
GET  /api/v1/patents/{id}/citations
POST /api/v1/innovation/document

Cross-Platform Skills Vision

This skill is part of the Unified AI Coding Skills initiative:

┌─────────────────────────────────────────────────────────────────┐
│              UNIFIED SKILLS ARCHITECTURE                         │
├─────────────────────────────────────────────────────────────────┤
│                                                                  │
│  ┌─────────────┐  ┌─────────────┐  ┌─────────────┐              │
│  │ Claude Code │  │   Cline     │  │   Cursor    │   ...more    │
│  │   Skills    │  │   Rules     │  │   Rules     │              │
│  └──────┬──────┘  └──────┬──────┘  └──────┬──────┘              │
│         │                │                │                      │
│         └────────────────┼────────────────┘                      │
│                          │                                       │
│              ┌───────────┴───────────┐                          │
│              │   Skill Translator    │                          │
│              │   (Format Adapter)    │                          │
│              └───────────┬───────────┘                          │
│                          │                                       │
│              ┌───────────┴───────────┐                          │
│              │  Universal Skill Spec │                          │
│              │   (Markdown + YAML)   │                          │
│              └───────────────────────┘                          │
│                                                                  │
└─────────────────────────────────────────────────────────────────┘

Part of OCI AI Architect Skills - Building the future of IP-aware development Reference: oracle-devrel/technology-engineering/ai-solutions/ip-intelligence

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

oracle diagram generator

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

oracle ai architect

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

oracle infogenius

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

oci services expert

No summary provided by upstream source.

Repository SourceNeeds Review