Oracle IP Intelligence

AI-powered intellectual property analysis patterns for enterprise innovation protection

16 stars

Best use case

Oracle IP Intelligence is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

AI-powered intellectual property analysis patterns for enterprise innovation protection

Teams using Oracle IP Intelligence should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/oracle-ip-intelligence/SKILL.md --create-dirs "https://raw.githubusercontent.com/diegosouzapw/awesome-omni-skill/main/skills/data-ai/oracle-ip-intelligence/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/oracle-ip-intelligence/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How Oracle IP Intelligence Compares

Feature / AgentOracle IP IntelligenceStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

AI-powered intellectual property analysis patterns for enterprise innovation protection

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# 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**:

| Platform | Integration | Status |
|----------|-------------|--------|
| Claude Code | Native skill | ✅ Primary |
| Cline / Oracle Code Assistant | .cline rules | ✅ Supported |
| GitHub Copilot | Custom instructions | 🔜 Planned |
| Cursor | .cursorrules | 🔜 Planned |
| Gemini Code Assist | Context 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

| Task | Recommended Model | Why |
|------|-------------------|-----|
| Patent semantic search | Cohere Embed + Command R | Purpose-built RAG, EU residency |
| Claim extraction | Gemini 2.5 Flash | Multimodal doc processing |
| Legal risk analysis | Cohere Command A Reasoning | Multi-step reasoning |
| Citation graph analysis | Database 26ai Graph | Native graph traversal |
| Innovation summarization | Llama 4 Maverick | Long context (1M tokens) |

## Integration with Code Development

### Pre-Commit IP Check
```python
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
```javascript
// 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):

| Capability | OCI Services | Specialization |
|------------|--------------|----------------|
| Structure Search | OCI Vision + Custom Model | SMILES, InChI notation |
| Compound Detection | OCI Document Understanding | Named entity extraction |
| Reaction Analysis | Cohere Command A | Chemical equation parsing |
| Formulation IP | Database 26ai Vector | Similarity search |

## OCI Services Required

| Service | Purpose | Tier |
|---------|---------|------|
| OCI Generative AI | Embeddings, reasoning | Standard |
| Autonomous Database 26ai | Vector + Graph storage | Advanced |
| OCI Document Understanding | Patent PDF processing | Standard |
| OCI Object Storage | Patent corpus | Standard |
| OCI Functions | Serverless IP checks | Standard |

## 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*

Related Skills

20-andruia-niche-intelligence

16
from diegosouzapw/awesome-omni-skill

Estratega de Inteligencia de Dominio de Andru.ia. Analiza el nicho específico de un proyecto para inyectar conocimientos, regulaciones y estándares únicos del sector. Actívalo tras definir el nicho.

sports-oracle

16
from diegosouzapw/awesome-omni-skill

Sports data for prediction market trading. Get live scores, team stats, schedules, and injury reports for NFL, NBA, MLB, NHL.

oracle

16
from diegosouzapw/awesome-omni-skill

Invoke a powerful reasoning model for complex analysis tasks. Use when facing difficult bugs, reviewing critical code, designing complex refactors, needing architectural analysis, or seeking consensus on decisions. Also use for 'ask the oracle', 'get a second opinion', 'consult oracle', or 'deep analysis'.

oracle-sentinel

16
from diegosouzapw/awesome-omni-skill

Autonomous AI agent for Polymarket prediction intelligence. Real-time prices, deep news research, whale trade alerts, dual-model AI analysis.

business-intelligence

16
from diegosouzapw/awesome-omni-skill

Expert business intelligence covering dashboard design, data visualization, reporting automation, and executive insights delivery.

azure-ai-document-intelligence-ts

16
from diegosouzapw/awesome-omni-skill

Extract text, tables, and structured data from documents using Azure Document Intelligence (@azure-rest/ai-document-intelligence). Use when processing invoices, receipts, IDs, forms, or building cu...

apify-competitor-intelligence

16
from diegosouzapw/awesome-omni-skill

Analyze competitor strategies, content, pricing, ads, and market positioning across Google Maps, Booking.com, Facebook, Instagram, YouTube, and TikTok.

AI Nervous System - Document Intelligence

16
from diegosouzapw/awesome-omni-skill

Vector search and AI-powered document processing skills for OpenClaw integration

Oracle Agent Spec Expert

16
from diegosouzapw/awesome-omni-skill

Design framework-agnostic AI agents using Oracle's Open Agent Specification for portable, interoperable agentic systems with JSON/YAML definitions

ask-oracle

16
from diegosouzapw/awesome-omni-skill

This skill should be used when solving hard questions, complex architectural problems, or debugging issues that benefit from GPT-5 Pro or GPT-5.1 thinking models with large file context. Use when standard Claude analysis needs deeper reasoning or extended context windows.

bgo

10
from diegosouzapw/awesome-omni-skill

Automates the complete Blender build-go workflow, from building and packaging your extension/add-on to removing old versions, installing, enabling, and launching Blender for quick testing and iteration.

Coding & Development

accessibility-ux-audit

16
from diegosouzapw/awesome-omni-skill

Audit and enhance accessibility and UX across all pages and components.