Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add AgenticAIPlan/AgenticAISkills --skill worldcup2026-parallel-universegit clone --depth 1 https://github.com/AgenticAIPlan/AgenticAISkillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/agenticaiplan/agenticaiskills/worldcup2026-parallel-universe)<a href="https://agentmods.dev/skills/agenticaiplan/agenticaiskills/worldcup2026-parallel-universe"><img src="https://agentmods.dev/badge/skills/agenticaiplan/agenticaiskills/worldcup2026-parallel-universe/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/agenticaiplan/agenticaiskills/worldcup2026-parallel-universe"><img src="https://agentmods.dev/badge/skills/agenticaiplan/agenticaiskills/worldcup2026-parallel-universe.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00189 | $0.14141 |
| Opus 5 | $0.00095 | $0.07071 |
| Sonnet 5 | $0.00038 | $0.02828 |
| Haiku 4.5 | $0.00019 | $0.01414 |
Grade A, and why
worldcup2026-parallel-universe scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
response = requests.get(image_url) How it starts
The opening of the file, as written. The whole thing — 1,271 lines — stays where its author put it; the contents beside it link to each section on GitHub.
⚠️ 前置检查
执行本 Skill 前必须检查环境变量 AISTUDIO_API_KEY 是否已配置。
检查流程
Step 1: 检查 AISTUDIO_API_KEY 环境变量
↓
未配置 → Step 2: 引导用户获取并告知 API Key
↓
Step 3: 自动为用户配置 AISTUDIO_API_KEY
↓
已配置 → Step 4: 开始执行创作任务
未配置时的处理
如果 AISTUDIO_API_KEY 未配置或为空,必须停止执行并引导用户:
❌ API Key 未配置
本 Skill 需要百度星河社区 API Key 才能运行。
请按以下步骤操作:
- 访问 百度星河社区 注册账号
- 在个人中心获取 API Key
- 告知我您的 API Key,我将为您自动配置
注意:您无需在终端手动设置环境变量,直接告诉我 API Key 即可。
用户告知 API Key 后的处理
用户告知 API Key 后,自动为其配置环境变量:
export AISTUDIO_API_KEY="用户提供的key"
配置完成后确认:
✅ API Key 已配置成功,开始执行创作任务...
WorldCup 2026 Parallel Universe Agent (WP26_PUA)
三元组意图驱动 × 实时联网检索 × 深度创意写作 × 多模态长图渲染 赛后一小时内完成从事实到诗意的全链路自动化创作
核心理念
本Agent将世界杯比赛事件转化为"平行宇宙"式的文学叙事——基于真实赛况事实,但以诗意、文学化的方式重新诠释,创造出既有事实根基又富有艺术想象力的微小说作品。
关键原则:
- 所有低置信度事实必须"模糊化"处理,确保叙事不会误导读者
- 产出明确标注为"AI创意叙事,不构成新闻报道"
- 尊重球员形象,禁止负面人身攻击
环境要求
API 配置
使用本 skill 需要百度星河社区 API Key。
获取 API Key:访问 百度星河社区 注册并获取 API Key
💡 提示:执行 Skill 时会自动检查 API Key,如未配置会引导您设置。
API 端点
| 配置项 | 值 |
|---|---|
| API Base URL | https://aistudio.baidu.com/llm/lmapi/v3 |
| 创作模型 | ernie-5.0-thinking-preview(原生全模态大模型) |
| 目标生图模型 | ernie-image-turbo(通过星河社区调用) |
| 最大输出Token | 65536 |
API 调用示例 (OpenAI SDK)
文本生成 API:
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://aistudio.baidu.com/llm/lmapi/v3",
)
# 流式调用
chat_completion = client.chat.completions.create(
model="ernie-5.0-thinking-preview",
messages=[{"role": "user", "content": "你的问题"}],
stream=True,
extra_body={"web_search": {"enable": True}},
max_completion_tokens=65536
)
for chunk in chat_completion:
if not chunk.choices or len(chunk.choices) == 0:
continue
# 处理推理内容 (thinking)
if hasattr(chunk.choices[0].delta, "reasoning_content") and chunk.choices[0].delta.reasoning_content:
print(chunk.choices[0].delta.reasoning_content, end="", flush=True)
else:
print(chunk.choices[0].delta.content, end="", flush=True)
What ships with it
7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 1,271 lines · 189 tokens per session scan A 2ca8522e5a57
worldcup2026-parallel-universe is a skill published in the GitHub repository AgenticAIPlan/AgenticAISkills (11 stars, last pushed 3mo ago), licensed MIT. It adds 189 tokens to every session and 14,141 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
webgl-holographic-foil
A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.
general-video
Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…
html-ppt-hermes-cyber-terminal
OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.
html-ppt-taste-brutalist
16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).
chengfeng-check-updates
An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.
diagnostic-stem-delivery
Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.