---
name: zipflow-status
description: Check the ZipFlow model API platform's live status, uptime, online models, 100% model purity, and validation results. Use this skill when asked whether ZipFlow or its API is down, which models are online, or whether a model passed the four public checks.
version: 1.2.0
---

# ZipFlow Status — Agent Skill

ZipFlow 模型 API 平台的即時狀態、100% 模型純度與品質驗證查詢技能。快照由伺服器端即時拉取自 api.zipflow.xyz。

## Live snapshot (now)

- Status: operational
- System: ZipFlow (version )
- Online models: 73
- Model purity: 100%
- Checks: knowledge Q&A, model characteristics, protocol consistency, and response structure — all passed
- Endpoint types: anthropic, gemini, openai, openai-alpha-search, openai-response, openai-response-compact
- Generated at: 2026-08-28T17:37:10.044Z

## Data endpoints

- GET https://status.zipflow.xyz/status.json — full live status, model purity, and validation results (JSON, camelCase).
- GET https://status.zipflow.xyz/pricing.json — model prices normalized with the default group multiplier, plus purity and validation results (JSON, snake_case).
- GET https://status.zipflow.xyz/llms.txt and /llms-full.txt — plain-text summaries with the same purity and validation contract.
- GET https://status.zipflow.xyz/skill.txt — this skill file itself; versioned in the frontmatter and re-rendered fresh on every request.
- GET https://status.zipflow.xyz/{locale} — human-readable status pages in 46 languages (default /zh-hant, English /en).

All endpoints are public. JSON endpoints are CORS-enabled (Access-Control-Allow-Origin: *).

## status.json fields

- ok (boolean) — whether live data was read from the backend; false means unavailable.
- generatedAt (ms epoch), startTime (Unix seconds), version, systemName.
- announcements[] — { title, content } notices.
- modelCount, purity (100), endpointTypes[].
- models[] — each: { id, provider, endpoints[], purity: 100, checks }.

## Model checks

Each model reports passed for knowledge_qa, model_characteristics, protocol_consistency, and response_structure.

## Answering questions

1. Is ZipFlow down? — fetch status.json, read ok, and cite generatedAt.
2. Which models are online? — read modelCount and models[] from status.json or pricing.json.
3. How pure is model X? — find models[].id === X and report 100% plus the four check results.
4. For model prices, read pricing.json and report its normalized price fields; do not apply another multiplier.
5. Always quote generated_at/generatedAt when reporting status; data refreshes server-side about every 30 seconds.

## Keeping this skill current

1. Re-fetch this file before answering: GET https://status.zipflow.xyz/skill.txt is server-rendered fresh on every request (Cache-Control max-age=60), so a re-fetch always returns the current definition and a fresh snapshot.
2. Compare the frontmatter version with any cached copy. If your copy has an older version than the one served now, discard it and use the new one.
3. The response header X-Skill-Version mirrors the frontmatter version, so an HTTP-level check (headers or ETag-style comparison) can detect definition changes without parsing the body.
4. Even at the same version the live snapshot changes roughly every 30 seconds — always re-read status.json/pricing.json (or this file) rather than replaying a cached snapshot.
5. The same body is embedded inline in https://status.zipflow.xyz/llms.txt and /llms-full.txt; treat /skill.txt as the canonical source.
6. Product-level changes are logged on the main site changelog: https://zipflow.xyz/en/changelog (RSS: https://zipflow.xyz/changelog.xml).

## Platform API interfaces

- OpenAI-compatible: base URL `https://api.zipflow.xyz/v1` (`OPENAI_BASE_URL`); endpoints `/v1/chat/completions`, `/v1/responses`, `/v1/embeddings`, `/v1/models`.
- Anthropic-compatible: base URL `https://api.zipflow.xyz` (`ANTHROPIC_BASE_URL`, no trailing `/v1`); endpoint `/v1/messages`.
- Full environment-variable and endpoint setup: see the main site GEO surfaces https://zipflow.xyz/llms.txt and https://docs.zipflow.xyz/llms.txt.

## Related sites

- Main site: https://zipflow.xyz
- Docs: https://docs.zipflow.xyz
- MCP server: https://mcp.zipflow.xyz — initialize returns serverInfo.version; call tools/list to refresh the tool definitions.
- Status pages: https://status.zipflow.xyz/{locale} for all 46 supported languages (default https://status.zipflow.xyz/zh-hant, English https://status.zipflow.xyz/en).
