near-ai-cloud
NEAR AI Cloud private inference and verification. Use when integrating NEAR AI Cloud API for verifiable private AI inference, verifying model or gateway TEE attestation (NVIDIA NRAS, Intel TDX), verifying chat message signatures, implementing end-to-end encrypted chat, or using the OpenAI-compatible API with NEAR AI Cloud.
npx skills add internet-court/internet-court-skill --skill near-ai-cloud --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# NEAR AI Cloud Verifiable private AI inference through Trusted Execution Environments (TEEs). All inference runs inside Intel TDX confidential VMs with NVIDIA TEE GPUs — your data stays encrypted and isolated from infrastructure providers, model providers, and NEAR itself. ## Quick Start The API is OpenAI-compatible. Point any OpenAI SDK at `https://cloud-api.near.ai/v1`: ```python import openai client = openai.OpenAI( base_url="https://cloud-api.near.ai/v1", api_key="YOUR_API_KEY" # from cloud.near.ai dashboard ) response = client.chat.completions.create( model="deepseek-ai/DeepSeek-V3.1", messages=[{"role": "user", "content": "Hello, NEAR AI!"}] ) print(response.choices[0].message.content) ``` ```javascript import OpenAI from 'openai'; const openai = new OpenAI({ baseURL: 'https://cloud-api.near.ai/v1', apiKey: 'YOUR_API_KEY', }); const completion = await openai.chat.completions.create({ model: 'deepseek-ai/DeepSeek-V3.1', messages: [{ role: 'user', content: 'Hello, NEAR AI!' }] }); console.log(completion.choices[0].message.content); ``` ## How It Works - All inference runs inside **Intel TDX** confidential VMs with **NVIDIA TEE** GPUs - TLS terminates **inside the TEE**, not at
- Quick Start
- How It Works
- Verification Flow
- API Endpoints
- Critical Knowledge
- References
- Resources
What does the near-ai-cloud skill do?
NEAR AI Cloud private inference and verification. Use when integrating NEAR AI Cloud API for verifiable private AI inference, verifying model or gateway TEE attestation (NVIDIA NRAS, Intel TDX), verifying chat message signatures, implementing end-to-end encrypted chat, or using the OpenAI-compatible API with NEAR AI Cloud.
How do I install it?
Run `npx skills add internet-court/internet-court-skill --skill near-ai-cloud --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From internet-court/internet-court-skill, a repository with 1,536 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.