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.
Version Note
The current public project release and latest reviewed immutable MCP image are
both v0.4.9. The inspection procedure below pins its recorded digests; those
values must not be silently replaced with a mutable tag. For a normal
provider-free demo, use the current v0.4.9 command in the
project README.
A new content review is required before changing this pinned procedure.
Prerequisites And Setup
- Confirm that Codex CLI and Docker are installed and Docker is running.
- If the 12 tools are already visible, skip setup and do not register a
duplicate server.
- Explain the first stage: it downloads one reviewed platform from the
immutable
0.4.9 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.
- After that first approval, pull the reviewed platform manifest and complete
the inspection. Do not execute the image or register it yet:
IMAGE='ghcr.io/happy520ai/unified-ai-system/mcp-server@sha256:751a0d32acd2d6b1da6ad9ac67987fbd1ff36ce26b7160014d8605f18b7907b3'
PLATFORM='linux/amd64' # Use linux/arm64 only on a reviewed ARM64 engine.
REVIEW_DIR="$(mktemp -d)"
docker pull --platform "$PLATFORM" "$IMAGE"
docker image inspect "$IMAGE" --format 'Id={{.Id}} OS={{.Os}} Architecture={{.Architecture}} User={{json .Config.User}} Entrypoint={{json .Config.Entrypoint}} Cmd={{json .Config.Cmd}} Labels={{json .Config.Labels}}'
docker image history --no-trunc "$IMAGE" > "$REVIEW_DIR/image-history.txt"
REVIEW_CONTAINER="$(docker create --platform "$PLATFORM" --pull never --entrypoint /bin/true "$IMAGE")"
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"
: > "$REVIEW_DIR/app-links.txt"
while IFS= read -r -d '' APP_LINK; do
ls -ld -- "$APP_LINK" >> "$REVIEW_DIR/app-links.txt"
done < <(find "$REVIEW_DIR/rootfs/app" \( -type l -o -type f -links +1 \) -print0)
: > "$REVIEW_DIR/native-binaries.sha256"
while IFS= read -r -d '' NATIVE_BINARY; do
sha256sum -- "$NATIVE_BINARY" >> "$REVIEW_DIR/native-binaries.sha256"
done < <(find "$REVIEW_DIR/rootfs/app" -type f -name '*.node' -print0)
find "$REVIEW_DIR/rootfs" -type f \( -perm -0100 -o -perm -0010 -o -perm -0001 \) -print > "$REVIEW_DIR/executable-files.txt"
find "$REVIEW_DIR/rootfs" -type f \( -perm -4000 -o -perm -2000 \) -print > "$REVIEW_DIR/suid-sgid-files.txt"
find "$REVIEW_DIR/rootfs/app" -type f \( -name '.env' -o -name '.env.*' -o -name '*.pem' -o -name '*.key' -o -name '*.p12' -o -name '*.pfx' -o -path '*/.ssh/id_*' \) -print > "$REVIEW_DIR/credential-like-files.txt"
grep -RInHE --include='package.json' '"(preinstall|install|postinstall|prepare|prepack|postpack)"' "$REVIEW_DIR/rootfs/app" > "$REVIEW_DIR/lifecycle-hooks.txt"
grep -RInE 'child_process|spawn\(|fetch\(|AI_GATEWAY_MCP_URL|process\.env|writeFile|appendFile|unlink|rm\(' "$REVIEW_DIR/rootfs/app/packages/mcp-server/src" "$REVIEW_DIR/rootfs/app/packages/shared-sdk/src" > "$REVIEW_DIR/runtime-sensitive-code.txt"
If sha256sum is unavailable, use the platform's SHA-256 utility and preserve
the same report. Keep the review directory until the report is accepted; its
deletion is another filesystem change and requires approval for the exact path.
Read every generated inventory and report the inspection before proceeding.
Compare it with the versioned
image content review.
Require OCI index digest
sha256:751a0d32acd2d6b1da6ad9ac67987fbd1ff36ce26b7160014d8605f18b7907b3.
For linux/amd64, require manifest digest
sha256:ff6cf988b01d5fb2e97aabe8e952f6a303dcffe650df5b4dcb0ba3d51ee88c06
and config digest
sha256:0c2c0c7b9c7fb7ca24c73d9a903bcf719b079a0b285a3a3269ee3ae059905e97.
For linux/arm64, require manifest digest
sha256:90318b9e373820f863c1c1addc759be4b5ce186f2ecb6232ee502fad7c6613de
and config digest
sha256:c2047eb63fdc42bcb16d53fca17d78a4a6fb355cf6320b9aa6688e594371054f.
Require source https://github.com/happy520ai/unified-ai-system, revision
342a47313927870bcc696be13c9e5fb922062dac, version 0.4.9, license
Apache-2.0, entrypoint docker-entrypoint.sh, and command
node packages/mcp-server/src/index.js.
Report these reviewed risks explicitly: the image uses the default root
user; includes Debian shell/package utilities and 11 base-image SUID/SGID
files; contains 522 internal pnpm links, three native Node binaries, and eight
lifecycle-hook declarations; and starts a child gateway with loopback HTTP.
The optional AI_GATEWAY_MCP_URL can make an HTTP or HTTPS connection only
when explicitly passed. The registered command below passes no host files,
environment variables, or ports and disables container networking. Stop on
any mismatch, unexpected link, credential-like file, native binary, hook,
privileged file, or sensitive-code behavior.
Explain the second stage: it persists a Codex MCP configuration and permits
Codex to launch the inspected image in a later task. Obtain a separate
explicit approval for registration and activation; the download approval
does not carry over.
After that second approval, register the reviewed platform digest with
pulling, container networking, Linux capabilities, and privilege escalation
disabled, then inspect the stored configuration:
IMAGE='ghcr.io/happy520ai/unified-ai-system/mcp-server@sha256:751a0d32acd2d6b1da6ad9ac67987fbd1ff36ce26b7160014d8605f18b7907b3'
PLATFORM='linux/amd64' # Match the reviewed platform inspected above.
codex mcp add unified-ai-system -- docker run --rm -i --pull never --platform "$PLATFORM" --network none --cap-drop ALL --security-opt no-new-privileges "$IMAGE"
codex mcp get unified-ai-system --json
- Restart Codex or open a new task, then use
/mcp verbose to confirm that all
12 tools are available. Remove the registration when it is no longer
wanted:
codex mcp remove unified-ai-system
Removing the registration does not remove the pulled image from Docker's
cache. Treat image-cache deletion as a separate host-state change and obtain
approval before doing it.
When to Use This Skill
- Use when a user asks whether Unified AI System is healthy or ready.
- Use when a user wants a credential-free gateway chat proof.
- Use when a user asks about the gateway's knowledge, workflow, or workforce
surfaces.
- Use when a user wants evidence from the bundled MCP tools rather than a claim
inferred from documentation or process exit codes.
Do not use this skill for generic model comparisons, unrelated MCP servers, or
deploying a production gateway.
Workflow
- Confirm that the
unified-ai-system MCP tools are available in the current
task. If they are absent, follow the approved setup above and wait for a
restarted or new task.
- Call
gateway_health, then gateway_readiness, before attempting chat.
- Select the narrowest additional tool that answers the request.
- Report returned provider, execution mode, readiness, and blockers exactly.
- Separate transport success from product, production-readiness, autonomy, or
AGI claims.
Tool Map
gateway_health: managed gateway status and provider mode
gateway_readiness: chat-path readiness and blockers
gateway_prompt_enhance: local prompt structuring without a provider call
gateway_chat: deterministic credential-free chat proof
knowledge_readiness: knowledge subsystem readiness
workflow_health: workflow subsystem status
workflow_actions: available workflow actions
workforce_health: workforce subsystem status
workforce_agents: available workforce agents
Example
User: Check whether the local gateway is ready, then prove chat works safely.
Agent:
1. Call gateway_health.
2. Call gateway_readiness.
3. Call gateway_chat only if both results prove fake-provider mode.
4. Report provider, model, execution mode, response, and every blocker.
Safety Boundaries
- Keep the credential-free local fake provider as the default.
- Never request, read, or transmit provider credentials through this skill.
- Do not enable or call a real provider without explicit scoped authorization.
- Treat MCP registration, image pulls, container creation, networking, and
teardown as host-state changes that require informed user approval.
- Never substitute a mutable tag, a different OCI index, or an unreviewed
platform manifest for the reviewed
0.4.9 identities. Keep download and
inspection approval separate from registration and activation approval.
- Keep
--pull never in the registered command. If the reviewed image is
absent from the local cache, fail closed and return to the first approval
stage.
- Keep
--network none, --cap-drop ALL, and
--security-opt no-new-privileges in the registered command.
- Do not claim production readiness, L5 autonomy, or AGI from a healthy handshake.
- Treat a zero exit code as transport evidence, not proof that readiness gates
passed.
Limitations
- This skill file does not bundle the MCP server, Docker image, or Codex
configuration. It only operates tools supplied by the separately installed
official integration.
- It does not deploy, benchmark, or certify the gateway for production use.
- The credential-free chat tool proves only the deterministic local fake path.
- It does not configure real providers or handle provider credentials.
- The published MCP image requires Docker.
- The reviewed
0.4.9 path covers linux/amd64 and linux/arm64. Do not activate
another platform image without a separate content review.
- The image runs as the container's default root user and bundles the gateway
source, package-manager tooling, native dependencies, and base-image
SUID/SGID files. The registered command drops capabilities, prevents new
privileges, disables networking, and leaves the image in Docker's cache.
- Existing Codex tasks may not hot-load a newly installed MCP configuration.
Troubleshooting
- If the tools are missing after approved registration, inspect
codex mcp get unified-ai-system --json, then restart Codex or start a new
task.
- If readiness is blocked, report the returned blocker instead of retrying chat
blindly.
- If the runtime might use a real provider, stop before chat and keep the
session read-only.
Additional Resources
1---2name: unified-ai-gateway3description: Operate and evaluate Unified AI System through twelve governed MCP tools, including provider-free prompt enhancement, while preserving fake-provider, authorization, and evidence boundaries.4license: Apache-2.05---67# Unified AI Gateway89## Overview1011Use the official `unified-ai-system` MCP server to inspect and exercise a local12AI gateway without provider credentials. This skill file provides operating13guidance; it does not install the server or change Codex configuration by14itself. The official Codex plugin bundles the MCP definition, while skill-only15installations require the manual setup below.1617## Version Note1819The current public project release and latest reviewed immutable MCP image are20both `v0.4.9`. The inspection procedure below pins its recorded digests; those21values must not be silently replaced with a mutable tag. For a normal22provider-free demo, use the current `v0.4.9` command in the23[project README](https://github.com/happy520ai/unified-ai-system#try-it-in-60-seconds).24A new content review is required before changing this pinned procedure.2526## Prerequisites And Setup27281. Confirm that Codex CLI and Docker are installed and Docker is running.292. If the 12 tools are already visible, skip setup and do not register a30 duplicate server.313. Explain the first stage: it downloads one reviewed platform from the32 immutable `0.4.9` multi-platform index into Docker's cache, inspects its33 metadata and layer history, creates but never starts a temporary container,34 exports its root filesystem, removes that temporary container, and writes an35 inspection inventory to a temporary directory. The reviewed platforms are36 linux/amd64 and linux/arm64. Obtain explicit user approval for those download37 and inspection changes only.384. After that first approval, pull the reviewed platform manifest and complete39 the inspection. Do not execute the image or register it yet:4041```bash42IMAGE='ghcr.io/happy520ai/unified-ai-system/mcp-server@sha256:751a0d32acd2d6b1da6ad9ac67987fbd1ff36ce26b7160014d8605f18b7907b3'43PLATFORM='linux/amd64' # Use linux/arm64 only on a reviewed ARM64 engine.44REVIEW_DIR="$(mktemp -d)"4546docker pull --platform "$PLATFORM" "$IMAGE"47docker image inspect "$IMAGE" --format 'Id={{.Id}} OS={{.Os}} Architecture={{.Architecture}} User={{json .Config.User}} Entrypoint={{json .Config.Entrypoint}} Cmd={{json .Config.Cmd}} Labels={{json .Config.Labels}}'48docker image history --no-trunc "$IMAGE" > "$REVIEW_DIR/image-history.txt"4950REVIEW_CONTAINER="$(docker create --platform "$PLATFORM" --pull never --entrypoint /bin/true "$IMAGE")"51docker export --output "$REVIEW_DIR/rootfs.tar" "$REVIEW_CONTAINER"52docker rm "$REVIEW_CONTAINER"5354tar -tf "$REVIEW_DIR/rootfs.tar" > "$REVIEW_DIR/rootfs-files.txt"55mkdir -p "$REVIEW_DIR/rootfs"56tar --same-permissions -xf "$REVIEW_DIR/rootfs.tar" -C "$REVIEW_DIR/rootfs"57find "$REVIEW_DIR/rootfs/app" -type f -print > "$REVIEW_DIR/app-files.txt"58: > "$REVIEW_DIR/app-links.txt"59while IFS= read -r -d '' APP_LINK; do60 ls -ld -- "$APP_LINK" >> "$REVIEW_DIR/app-links.txt"61done < <(find "$REVIEW_DIR/rootfs/app" \( -type l -o -type f -links +1 \) -print0)62: > "$REVIEW_DIR/native-binaries.sha256"63while IFS= read -r -d '' NATIVE_BINARY; do64 sha256sum -- "$NATIVE_BINARY" >> "$REVIEW_DIR/native-binaries.sha256"65done < <(find "$REVIEW_DIR/rootfs/app" -type f -name '*.node' -print0)66find "$REVIEW_DIR/rootfs" -type f \( -perm -0100 -o -perm -0010 -o -perm -0001 \) -print > "$REVIEW_DIR/executable-files.txt"67find "$REVIEW_DIR/rootfs" -type f \( -perm -4000 -o -perm -2000 \) -print > "$REVIEW_DIR/suid-sgid-files.txt"68find "$REVIEW_DIR/rootfs/app" -type f \( -name '.env' -o -name '.env.*' -o -name '*.pem' -o -name '*.key' -o -name '*.p12' -o -name '*.pfx' -o -path '*/.ssh/id_*' \) -print > "$REVIEW_DIR/credential-like-files.txt"69grep -RInHE --include='package.json' '"(preinstall|install|postinstall|prepare|prepack|postpack)"' "$REVIEW_DIR/rootfs/app" > "$REVIEW_DIR/lifecycle-hooks.txt"70grep -RInE 'child_process|spawn\(|fetch\(|AI_GATEWAY_MCP_URL|process\.env|writeFile|appendFile|unlink|rm\(' "$REVIEW_DIR/rootfs/app/packages/mcp-server/src" "$REVIEW_DIR/rootfs/app/packages/shared-sdk/src" > "$REVIEW_DIR/runtime-sensitive-code.txt"71```7273If `sha256sum` is unavailable, use the platform's SHA-256 utility and preserve74the same report. Keep the review directory until the report is accepted; its75deletion is another filesystem change and requires approval for the exact path.76775. Read every generated inventory and report the inspection before proceeding.78 Compare it with the versioned79 [image content review](https://github.com/happy520ai/unified-ai-system/blob/master/docs/security/mcp-image-review-0.4.9.md).80 Require OCI index digest81 `sha256:751a0d32acd2d6b1da6ad9ac67987fbd1ff36ce26b7160014d8605f18b7907b3`.82 For linux/amd64, require manifest digest83 `sha256:ff6cf988b01d5fb2e97aabe8e952f6a303dcffe650df5b4dcb0ba3d51ee88c06`84 and config digest85 `sha256:0c2c0c7b9c7fb7ca24c73d9a903bcf719b079a0b285a3a3269ee3ae059905e97`.86 For linux/arm64, require manifest digest87 `sha256:90318b9e373820f863c1c1addc759be4b5ce186f2ecb6232ee502fad7c6613de`88 and config digest89 `sha256:c2047eb63fdc42bcb16d53fca17d78a4a6fb355cf6320b9aa6688e594371054f`.90 Require source `https://github.com/happy520ai/unified-ai-system`, revision91 `342a47313927870bcc696be13c9e5fb922062dac`, version `0.4.9`, license92 `Apache-2.0`, entrypoint `docker-entrypoint.sh`, and command93 `node packages/mcp-server/src/index.js`.9495 Report these reviewed risks explicitly: the image uses the default root96 user; includes Debian shell/package utilities and 11 base-image SUID/SGID97 files; contains 522 internal pnpm links, three native Node binaries, and eight98 lifecycle-hook declarations; and starts a child gateway with loopback HTTP.99 The optional `AI_GATEWAY_MCP_URL` can make an HTTP or HTTPS connection only100 when explicitly passed. The registered command below passes no host files,101 environment variables, or ports and disables container networking. Stop on102 any mismatch, unexpected link, credential-like file, native binary, hook,103 privileged file, or sensitive-code behavior.1046. Explain the second stage: it persists a Codex MCP configuration and permits105 Codex to launch the inspected image in a later task. Obtain a separate106 explicit approval for registration and activation; the download approval107 does not carry over.1087. After that second approval, register the reviewed platform digest with109 pulling, container networking, Linux capabilities, and privilege escalation110 disabled, then inspect the stored configuration:111112```bash113IMAGE='ghcr.io/happy520ai/unified-ai-system/mcp-server@sha256:751a0d32acd2d6b1da6ad9ac67987fbd1ff36ce26b7160014d8605f18b7907b3'114PLATFORM='linux/amd64' # Match the reviewed platform inspected above.115codex mcp add unified-ai-system -- docker run --rm -i --pull never --platform "$PLATFORM" --network none --cap-drop ALL --security-opt no-new-privileges "$IMAGE"116codex mcp get unified-ai-system --json117```1181198. Restart Codex or open a new task, then use `/mcp verbose` to confirm that all120 12 tools are available. Remove the registration when it is no longer121 wanted:122123```bash124codex mcp remove unified-ai-system125```126127Removing the registration does not remove the pulled image from Docker's128cache. Treat image-cache deletion as a separate host-state change and obtain129approval before doing it.130131## When to Use This Skill132133- Use when a user asks whether Unified AI System is healthy or ready.134- Use when a user wants a credential-free gateway chat proof.135- Use when a user asks about the gateway's knowledge, workflow, or workforce136 surfaces.137- Use when a user wants evidence from the bundled MCP tools rather than a claim138 inferred from documentation or process exit codes.139140Do not use this skill for generic model comparisons, unrelated MCP servers, or141deploying a production gateway.142143## Workflow1441451. Confirm that the `unified-ai-system` MCP tools are available in the current146 task. If they are absent, follow the approved setup above and wait for a147 restarted or new task.1482. Call `gateway_health`, then `gateway_readiness`, before attempting chat.1493. Select the narrowest additional tool that answers the request.1504. Report returned provider, execution mode, readiness, and blockers exactly.1515. Separate transport success from product, production-readiness, autonomy, or152 AGI claims.153154## Tool Map155156- `gateway_health`: managed gateway status and provider mode157- `gateway_readiness`: chat-path readiness and blockers158- `gateway_prompt_enhance`: local prompt structuring without a provider call159- `gateway_chat`: deterministic credential-free chat proof160- `knowledge_readiness`: knowledge subsystem readiness161- `workflow_health`: workflow subsystem status162- `workflow_actions`: available workflow actions163- `workforce_health`: workforce subsystem status164- `workforce_agents`: available workforce agents165166## Example167168```text169User: Check whether the local gateway is ready, then prove chat works safely.170171Agent:1721. Call gateway_health.1732. Call gateway_readiness.1743. Call gateway_chat only if both results prove fake-provider mode.1754. Report provider, model, execution mode, response, and every blocker.176```177178## Safety Boundaries179180- Keep the credential-free local fake provider as the default.181- Never request, read, or transmit provider credentials through this skill.182- Do not enable or call a real provider without explicit scoped authorization.183- Treat MCP registration, image pulls, container creation, networking, and184 teardown as host-state changes that require informed user approval.185- Never substitute a mutable tag, a different OCI index, or an unreviewed186 platform manifest for the reviewed `0.4.9` identities. Keep download and187 inspection approval separate from registration and activation approval.188- Keep `--pull never` in the registered command. If the reviewed image is189 absent from the local cache, fail closed and return to the first approval190 stage.191- Keep `--network none`, `--cap-drop ALL`, and192 `--security-opt no-new-privileges` in the registered command.193- Do not claim production readiness, L5 autonomy, or AGI from a healthy handshake.194- Treat a zero exit code as transport evidence, not proof that readiness gates195 passed.196197## Limitations198199- This skill file does not bundle the MCP server, Docker image, or Codex200 configuration. It only operates tools supplied by the separately installed201 official integration.202- It does not deploy, benchmark, or certify the gateway for production use.203- The credential-free chat tool proves only the deterministic local fake path.204- It does not configure real providers or handle provider credentials.205- The published MCP image requires Docker.206- The reviewed `0.4.9` path covers linux/amd64 and linux/arm64. Do not activate207 another platform image without a separate content review.208- The image runs as the container's default root user and bundles the gateway209 source, package-manager tooling, native dependencies, and base-image210 SUID/SGID files. The registered command drops capabilities, prevents new211 privileges, disables networking, and leaves the image in Docker's cache.212- Existing Codex tasks may not hot-load a newly installed MCP configuration.213214## Troubleshooting215216- If the tools are missing after approved registration, inspect217 `codex mcp get unified-ai-system --json`, then restart Codex or start a new218 task.219- If readiness is blocked, report the returned blocker instead of retrying chat220 blindly.221- If the runtime might use a real provider, stop before chat and keep the222 session read-only.223224## Additional Resources225226- [Unified AI System](https://github.com/happy520ai/unified-ai-system)227- [60-second Codex MCP quickstart](https://github.com/happy520ai/unified-ai-system/blob/master/docs/codex-mcp-quickstart.md)228- [MCP server guide](https://github.com/happy520ai/unified-ai-system/blob/master/packages/mcp-server/README.md)229- [MCP image content review](https://github.com/happy520ai/unified-ai-system/blob/master/docs/security/mcp-image-review-0.4.9.md)