acquire-codebase-knowl…
Use this skill when the user explicitly asks to map, document, or onboard into an existing codebase. Trigger for prompts like "map this codebase", "document…
Creates, reads, updates, and deletes Arize AI integrations that store LLM provider credentials used by evaluators and other Arize features. Supports any LLM provider (e.g. OpenAI, Anthropic, Azure OpenAI, AWS Bedrock, Vertex AI, Gemini, NVIDIA NIM). Use when the user mentions AI
$ npx -y skills add github/awesome-copilot --skill arize-ai-provider-integration --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/arize-ai-provider-integrationContext preview
The summary Claude sees to decide when to auto-load this skill.
Creates, reads, updates, and deletes Arize AI integrations that store LLM provider credentials used by evaluators and other Arize features. Supports any LLM provider (e.g. OpenAI, Anthropic, Azure OpenAI, AWS Bedrock, Vertex AI, Gemini, NVIDIA NIM). Use when the user mentions AI
name: arize-ai-provider-integration description: Creates, reads, updates, and deletes Arize AI integrations that store LLM provider credentials used by evaluators and other Arize features. Supports any LLM provider (e.g. OpenAI, Anthropic, Azure OpenAI, AWS Bedrock, Vertex AI, Gemini, NVIDIA NIM). Use when the user mentions AI integration, LLM provider credentials, create integration, list integrations, update credentials, delete integration, or connecting an LLM provider to Arize. metadata: author: arize version: "1.0" compatibility: Requires the ax CLI and a configured Arize profile.
> **`SPACE`** — Most `--space` flags and the `ARIZE_SPACE` env var accept a space **name** (e.g., `my-workspace`) or a base64 space **ID** (e.g., `U3BhY2U6...`). Find yours with `ax spaces list`. > **Note:** `ai-integrations create` does **not** accept `--space` — AI integrations are account-scoped. Use `--space` only with `list`, `get`, `update`, and `delete`.
Proceed directly with the task — run the `ax` command you need. Do NOT check versions, env vars, or profiles upfront.
If an `ax` command fails, troubleshoot based on the error:
---
List all integrations accessible in a space:
ax ai-integrations list --space SPACE
Filter by name (case-insensitive substring match):
ax ai-integrations list --space SPACE --name "openai"
Paginate large result sets:
# Get first page ax ai-integrations list --space SPACE --limit 20 -o json # Get next page using cursor from previous response ax ai-integrations list --space SPACE --limit 20 --cursor CURSOR_TOKEN -o json
**Key flags:**
| Flag | Description | |------|-------------| | `--space` | Space name or ID to filter integrations | | `--name` | Case-insensitive substring filter on integration name | | `--limit` | Max results (1–100, default 15) | | `--cursor` | Pagination token from a previous response | | `-o, --output` | Output format: `table` (default) or `json` |
**Response fields:**
| Field | Description | |-------|-------------| | `id` | Base64 integration ID — copy this for downstream commands | | `name` | Human-readable name | | `provider` | LLM provider enum (see Supported Providers below) | | `has_api_key` | `true` if credentials are stored | | `model_names` | Allowed model list, or `null` if all models are enabled | | `enable_default_models` | Whether default models for this provider are allowed | | `function_calling_enabled` | Whether tool/function calling is enabled | | `auth_type` | Authentication method: `default`, `proxy_with_headers`, or `bearer_token` |
---
ax ai-integrations get NAME_OR_ID ax ai-integrations get NAME_OR_ID -o json ax ai-integrations get NAME_OR_ID --space SPACE # required when using name instead of ID
Use this to inspect an integration's full configuration or to confirm its ID after creation.
---
Before creating, always list integrations first — the user may already have a suitable one:
ax ai-integrations list --space SPACE
If no suitable integration exists, create one. The required flags depend on the provider.
ax ai-integrations create \ --name "My OpenAI Integration" \ --provider openAI \ --api-key $OPENAI_API_KEY
ax ai-integrations create \ --name "My Anthropic Integration" \ --provider anthropic \ --api-key $ANTHROPIC_API_KEY
ax ai-integrations create \ --name "My Azure OpenAI Integration" \ --provider azureOpenAI \ --api-key $AZURE_OPENAI_API_KEY \ --base-url "https://my-resource.openai.azure.com/"
AWS Bedrock uses IAM role-based auth. Provide the ARN of the role Arize should assume via `--provider-metadata`:
ax ai-integrations create \
--name "My Bedrock Integration" \
--provider awsBedrock \
--provider-metadata '{"role_arn": "arn:aws:iam::123456789012:role/ArizeBedrockRole"}'Vertex AI uses GCP service account credentials. Provide the GCP project and region via `--provider-metadata`:
ax ai-integrations create \ --name "My Vertex AI Integration" \ --provider vertex
A community-created collection of custom agents, instructions, skills, hooks, workflows, and plugins to supercharge your GitHub Copilot experience.
Repo: github/awesome-copilot
Use this skill when the user explicitly asks to map, document, or onboard into an existing codebase. Trigger for prompts like "map this codebase", "document…
Run the AgentRC readiness assessment on the current repository and produce a static HTML dashboard at reports/index.html. Wraps `npx github:microsoft/agentrc…
Generate tailored AI agent instruction files via AgentRC instructions command. Produces .github/copilot-instructions.md (default, recommended for Copilot in VS…
Help the user pick, write, or apply an AgentRC policy. Policies customise readiness scoring by disabling irrelevant checks, overriding impact/level, setting…
Use this skill when the user shares ad campaign performance data and asks what to cut, scale, or test. Trigger for prompts like "analyze my ad campaigns",…
Add educational comments to the file specified, or prompt asking for file to comment if one is not provided.