Agent skill · AI & Agents

unified-ai-gateway

Operate and evaluate Unified AI System through nine governed MCP tools, including provider-free prompt enhancement, while preserving fake-provider, authorization, and evidence boundaries.

Nick44,414★ · +328/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill unified-ai-gateway --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 12 KB
Bundled scripts: none
Declared author: happy520ai
Path: skills/unified-ai-gateway/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Unified AI Gateway ## Overview Use the official `unified-ai-system` MCP server to inspect and exercise a local AI gateway without provider credentials. This skill file provides operating guidance; it does not install the server or change Codex configuration by itself. The official Codex plugin bundles the MCP definition, while skill-only installations require the manual setup below. ## Prerequisites And Setup 1. Confirm that Codex CLI and Docker are installed and Docker is running. 2. If the nine tools are already visible, skip setup and do not register a duplicate server. 3. Explain the first stage: it downloads one reviewed platform from the immutable `0.4.0` multi-platform index into Docker's cache, inspects its metadata and layer history, creates but never starts a temporary container, exports its root filesystem, removes that temporary container, and writes an inspection inventory to a temporary directory. The reviewed platforms are linux/amd64 and linux/arm64. Obtain explicit user approval for those download and inspection changes only. 4. After that first approval, pull the reviewed platform manifest and complete the inspection. Do not execute the image or register it yet:

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites And Setup
  3. When to Use This Skill
  4. Workflow
  5. Tool Map
  6. Example
  7. Safety Boundaries
  8. Limitations
  9. Troubleshooting
  10. Additional Resources
Commands it runs
docker pull --platform "$PLATFORM" "$IMAGE"
docker image history --no-trunc "$IMAGE" > "$REVIEW_DIR/image-history.txt"
docker export --output "$REVIEW_DIR/rootfs.tar" "$REVIEW_CONTAINER"
docker rm "$REVIEW_CONTAINER"
tar -tf "$REVIEW_DIR/rootfs.tar" > "$REVIEW_DIR/rootfs-files.txt"
mkdir -p "$REVIEW_DIR/rootfs"
tar --same-permissions -xf "$REVIEW_DIR/rootfs.tar" -C "$REVIEW_DIR/rootfs"
find "$REVIEW_DIR/rootfs/app" -type f -print > "$REVIEW_DIR/app-files.txt"
while IFS= read -r -d '' APP_LINK; do
ls -ld -- "$APP_LINK" >> "$REVIEW_DIR/app-links.txt"
More from agentic-awesome-skills
All skills →
About this skill
What does the unified-ai-gateway skill do?

Operate and evaluate Unified AI System through nine governed MCP tools, including provider-free prompt enhancement, while preserving fake-provider, authorization, and evidence boundaries.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill unified-ai-gateway --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 sickn33/agentic-awesome-skills, a repository with 44,414 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.

Keep going