Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add frankxai/claude-code-oracle-skills --skill oracle-ai-architectgit clone --depth 1 https://github.com/frankxai/claude-code-oracle-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/frankxai/claude-code-oracle-skills/oracle-ai-architect)<a href="https://agentmods.dev/skills/frankxai/claude-code-oracle-skills/oracle-ai-architect"><img src="https://agentmods.dev/badge/skills/frankxai/claude-code-oracle-skills/oracle-ai-architect/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/frankxai/claude-code-oracle-skills/oracle-ai-architect"><img src="https://agentmods.dev/badge/skills/frankxai/claude-code-oracle-skills/oracle-ai-architect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00015 | $0.03057 |
| Opus 5 | $0.00008 | $0.01528 |
| Sonnet 5 | $0.00003 | $0.00611 |
| Haiku 4.5 | $0.00002 | $0.00306 |
Grade A, and why
Oracle AI Architect scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
response = requests.post( How it starts
The opening of the file, as written. The whole thing — 477 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Oracle AI Architect - Extended Reference
Purpose
Comprehensive implementation reference for Oracle AI Architects building enterprise AI solutions. Covers OCI Generative AI APIs, Database 26ai Vector Search, Select AI, NVIDIA NIM deployment, and multi-agent patterns with Oracle ADK.
This document provides extended reference material for the Oracle AI Architect skill.
OCI Generative AI API Examples
Chat Completion
import oci
from oci.generative_ai_inference import GenerativeAiInferenceClient
from oci.generative_ai_inference.models import (
ChatDetails,
CohereChatRequest,
OnDemandServingMode
)
config = oci.config.from_file()
client = GenerativeAiInferenceClient(config)
chat_request = CohereChatRequest(
message="Explain Oracle AI Vector Search",
max_tokens=500,
temperature=0.7
)
response = client.chat(
chat_details=ChatDetails(
compartment_id=compartment_id,
serving_mode=OnDemandServingMode(model_id="cohere.command-a"),
chat_request=chat_request
)
)
print(response.data.chat_response.text)
Embeddings
from oci.generative_ai_inference.models import (
EmbedTextDetails,
OnDemandServingMode
)
embed_request = EmbedTextDetails(
inputs=["Document text to embed"],
serving_mode=OnDemandServingMode(model_id="cohere.embed-english-v3.0"),
compartment_id=compartment_id
)
response = client.embed_text(embed_request)
embeddings = response.data.embeddings
Database 26ai AI Vector Search Examples
Creating Vector Tables
-- Basic vector column
CREATE TABLE docs (
id NUMBER GENERATED ALWAYS AS IDENTITY,
content CLOB,
embedding VECTOR(1536, FLOAT32),
CONSTRAINT docs_pk PRIMARY KEY (id)
);
-- With automatic embedding generation
CREATE TABLE smart_docs (
id NUMBER GENERATED ALWAYS AS IDENTITY,
content CLOB,
embedding VECTOR GENERATED ALWAYS AS (
VECTOR_EMBEDDING(content USING 'doc-embed-model')
) VIRTUAL
);
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 477 lines · 15 tokens per session scan A b743124a9b68
Oracle AI Architect is a skill published in the GitHub repository frankxai/claude-code-oracle-skills (2 stars, last pushed 14d ago), licensed Apache-2.0. It adds 15 tokens to every session and 3,057 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
t-cloud-public
Read T Cloud Public (formerly Open Telekom Cloud) infrastructure inventory and prepare guarded DevOps operations through gateway-managed OTC API signing.
zabbix
Read Zabbix monitoring state, inspect monitored hosts, summarize current or recent problems, and prepare guarded incident-response context without exposing Zabbix credentials.
oci-drawio-icon-native
Build and validate OCI draw.io diagrams in icon-native mode so they never depend on mxgraph.oci. runtime libraries. Use when authoring or fixing Oracle Cloud architecture diagrams in draw.io that must render portably.
gke-compute-classes
Configures, optimizes, and troubleshoots GKE ComputeClasses. Use when configuring Spot VMs with on-demand fallback, targeting specific accelerators (GPUs/TPUs) or machine families, restricting ComputeClass access, or debugging pending pods related to node pool auto-creation. Do not use for cluster-level Node Auto…
gke-reliability
Improves GKE workload reliability, using PDBs, health probes, and topology spread constraints. Use when configuring GKE workload reliability, setting up PDBs, or configuring GKE health probes (liveness, readiness, startup). Don't use for disaster recovery setup or full cluster backups (use gke-backup-dr instead).
azure-mgmt-botservice-dotnet
Azure Resource Manager SDK for Bot Service in .NET. Management plane operations for creating and managing Azure Bot resources, channels (Teams, DirectLine, Slack), and connection settings. Triggers: "Bot Service", "BotResource", "Azure Bot", "DirectLine channel", "Teams channel", "bot management .NET", "create bot".