auroraview: Skill for Claude Code

.codebuddy/skills/gallery-mcp-tester/SKILL.md

gallery-mcp-tester is a skill for Claude Code, Codex from loonghao/auroraview. It costs 49 tokens per session (1,538 once invoked), scanned A, original, MIT.

An iterative testing workflow for AuroraView’s Python API through the Gallery MCP server. MCP is a way for an AI tool to call functions exposed by another service.

In plain words
What is it for?
Use it to run examples, inspect source code, manage processes, exchange data with them, and repeatedly verify fixes through Gallery’s MCP tools.
Why use it?
It turns API testing into a repeatable loop of running tools, finding design or code-quality problems, fixing them, and testing again.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

This is loonghao/auroraview's own configuration. It tells Claude Code and Codex how to work on auroraview itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything auroraview configures →

Reuse

Borrowing it

Nothing to install: this file belongs to loonghao/auroraview. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/loonghao/auroraview/main/.codebuddy/skills/gallery-mcp-tester/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/loonghao/auroraview

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for gallery-mcp-tester

README.md
[![agentmods](https://agentmods.dev/badge/skills/loonghao/auroraview/gallery-mcp-tester/github.svg)](https://agentmods.dev/skills/loonghao/auroraview/gallery-mcp-tester)
Your own site
<a href="https://agentmods.dev/skills/loonghao/auroraview/gallery-mcp-tester"><img src="https://agentmods.dev/badge/skills/loonghao/auroraview/gallery-mcp-tester/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.

agentmods 80×15 button for gallery-mcp-tester

Your own site · 80×15
<a href="https://agentmods.dev/skills/loonghao/auroraview/gallery-mcp-tester"><img src="https://agentmods.dev/badge/skills/loonghao/auroraview/gallery-mcp-tester.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,538 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00049 $0.01538
Opus 5 $0.00024 $0.00769
Sonnet 5 $0.00010 $0.00308
Haiku 4.5 $0.00005 $0.00154

Measured 11d ago against content hash 22cb47d35fed, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

gallery-mcp-tester scanned grade A with 0 findings 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 11d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.codebuddy/skills/gallery-mcp-tester/SKILL.md · 178 lines

How it starts

The opening of the file, as written. The whole thing — 178 lines — stays where its author put it; the contents beside it link to each section on GitHub.

通过 MCP 工具测试 AuroraView Python API,发现设计缺陷和代码味道。

工作流程

┌─────────────────────────────────────────────────────────────┐
│  1. 用户手动启动: vx just gallery-mcp 27168                  │
│  2. AI 调用 auroraview-gallery MCP 工具进行测试              │
│  3. 发现问题 → 在当前分支修复                                │
│  4. 重复测试直到所有问题解决                                 │
└─────────────────────────────────────────────────────────────┘

Step 1: 启动服务(用户手动执行)

在终端中运行:

vx just gallery-mcp 27168

等待看到以下输出表示服务就绪:

[Python] MCP server listening on port 27168

Step 2: 测试 MCP 工具

可用工具列表

工具名 描述 参数
api.get_samples 获取所有示例列表
api.get_categories 获取分类信息
api.get_mcp_info 获取 MCP 服务器信息
api.get_source 获取示例源代码 sample_id: str
api.run_sample 运行示例 sample_id, show_console?, use_channel?
api.prepare_run_sample 准备运行示例 sample_id, show_console?, use_channel?
api.kill_process 终止进程 pid: int
api.list_processes 列出运行中的进程
api.send_to_process 发送数据到进程 pid, data
api.send_json_to_process 发送 JSON 到进程 pid, data
api.launch_example_as_child 作为子窗口启动示例 sample_id, extra_env?
api.close_child 关闭子窗口 child_id
api.get_children 获取所有子窗口
api.send_to_child 发送事件到子窗口 child_id, event, data
api.broadcast_to_children 广播事件 event, data
api.list_webview_extensions 列出已安装扩展
api.install_to_webview 安装扩展 path, name?
api.remove_webview_extension 移除扩展 id
api.open_extensions_dir 打开扩展目录
api.install_extension_from_url 从 URL 安装扩展 url
api.start_extension_bridge 启动扩展桥接
api.stop_extension_bridge 停止扩展桥接
api.get_extension_status 获取桥接状态
api.broadcast_to_extensions 广播到扩展 event, data
api.install_extension 安装浏览器扩展 path, browser
api.open_url 打开 URL url

测试顺序

  1. 基础功能测试
    • api.get_samples - 验证返回格式
    • api.get_categories - 验证分类结构
    • api.get_mcp_info - 验证 MCP 信息

Read the full file on GitHub · 178 lines

Changes

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.

  1. 11d ago First seen · 178 lines · 49 tokens per session scan A 22cb47d35fed

Subscribe to this mod's changes

gallery-mcp-tester is a skill published in the GitHub repository loonghao/auroraview (44 stars, last pushed 1mo ago), licensed MIT. It adds 49 tokens to every session and 1,538 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

server-side-calls

Call tRPC procedures directly from server code using t.createCallerFactory() and router.createCaller(context) for integration testing, internal server logic, and custom API endpoints. Catch TRPCError and extract HTTP status with getHTTPStatusCodeFromError(). Error handling via onError option.

trpc/trpc · 61 tokens

mem0-test-integration

Verify a Mem0 integration produced by /mem0-integrate. Runs in the same workspace on the same branch (loose coupling) — installs dependencies, runs the repo's native test suite, then exercises a real end-to-end smoke flow against the user's API key. Produces a scorecard. TRIGGER when: user has just run /mem0-integrate…

mem0ai/mem0 · 207 tokens

prowler-test-api

Testing patterns for Prowler API: JSON:API, Celery tasks, RLS isolation, RBAC. Trigger: When writing tests for api/ (JSON:API requests/assertions, cross-tenant isolation, RBAC, Celery tasks, viewsets/serializers).

prowler-cloud/prowler · 62 tokens

python-sdk

Implement or modify Python SDK behavior under python/composio, including tools, toolkits, sessions, auth configs, connected accounts, client integration, and shared Python models. Use for Python core runtime/API work; pair with python-testing and cross-sdk-parity when TypeScript must match.

ComposioHQ/composio · 60 tokens

convex-test

Generate convex-test tests for the app's Convex functions.

openclaw/clawhub · 16 tokens

voiden

Create and edit Voiden .void files for API testing. Covers the .void file format and all enabled extension block types.

VoidenHQ/voiden · 28 tokens