Borrowing it
Nothing to install: this file belongs to oryx-labs/oryxos. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/oryx-labs/oryxos/main/.claude/skills/oryxos-admin-ui/SKILL.mdgit clone --depth 1 https://github.com/oryx-labs/oryxosWrote 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/oryx-labs/oryxos/oryxos-admin-ui)<a href="https://agentmods.dev/skills/oryx-labs/oryxos/oryxos-admin-ui"><img src="https://agentmods.dev/badge/skills/oryx-labs/oryxos/oryxos-admin-ui/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/oryx-labs/oryxos/oryxos-admin-ui"><img src="https://agentmods.dev/badge/skills/oryx-labs/oryxos/oryxos-admin-ui.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Tool Misuse · line 61 Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
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.00181 | $0.01935 |
| Opus 5 | $0.00090 | $0.00967 |
| Sonnet 5 | $0.00036 | $0.00387 |
| Haiku 4.5 | $0.00018 | $0.00194 |
Grade A, and why
oryxos-admin-ui 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 10d 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.
How it starts
The opening of the file, as written. The whole thing — 89 lines — stays where its author put it; the contents beside it link to each section on GitHub.
OryxOS 管理台前端生成规范
本 skill 是 OryxOS Web 管理台(/admin)前端的唯一风格与工程口径来源。生成或扩展管理台页面时读它、照它做,保证每次产出跟官网首页同一个气质、可复现、能被 Spring 直接托管。
何时用 / 不用
- 用:生成整套只读管理台(26 节)、给管理台加页(30 节的"Agent 管理"页:列表 + 新建表单 + 编辑/删除)、调整管理台样式使其与首页一致。
- 不用:后端 REST(那是 spec-kit 的 Java 管道)、认证鉴权(核心阶段内网假设)、脱离下方 token 的自创配色。
一、设计 token(唯一风格来源,值取自 website/.vitepress/theme/custom.css,一个字别自创)
深色主题 + 橙色强调,跟首页完全一致。生成的 Vue 工程里放一份 src/styles/tokens.css 并全局引入:
:root {
/* 背景层次 */
--bg: #000000; /* 页面底 */
--bg-soft: #111111; /* 卡片 / 面板 */
--bg-mute: #1a1a1a; /* 悬浮 / 选中块 */
--border: #222222; /* 分隔线 / 边框 */
/* 主色(橙)——仅用于强调:激活项、链接、数值高亮、主按钮。不铺大面积 */
--brand-1: #c2550a; /* 深 */
--brand-2: #ea6a00; /* hover / 强调 */
--brand: #f97316; /* 主 */
--brand-soft: rgba(249, 115, 22, 0.12);
/* 文字 */
--text-1: #f5f5f5; /* 主 */
--text-2: #a3a3a3; /* 次 */
--text-3: #666666; /* 弱 / 占位 */
/* 状态 */
--ok: #22c55e; /* 成功 */
--err: #ef4444; /* 失败 */
--warn: #f97316; /* 警告(复用橙) */
/* 字体 */
--font-base: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
--font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', ui-monospace, monospace;
/* 形状 */
--radius: 5px; /* 小圆角,克制 */
}
- 正文用
--font-base;ID / session_id / JSON / cron / token 数这类机读值一律--font-mono。 - 主色只点睛,不做大色块背景;整体克制、留白足。
二、工程约定(决定它能不能被 Spring 托管)
- 技术栈:Vue 3 + Vite(跟
website/同生态;管理台是 app,用普通 Vue SPA,不用 VitePress)。源码在oryxos-web/src/main/frontend/。 - base 与产物:
vite.config设base: '/admin/'、build.outDir指到../resources/static/admin(即oryxos-web/src/main/resources/static/admin/),资源用相对路径。 - SPA 路径回落:Spring 对
/admin/**未命中路径回落admin/index.html;GET /api/v1/**不受影响(后端接线,提醒 plan 处理)。 - 数据来源:只调
/api/v1/**。只读页调GET(/sessions、/profiles、/tools、/memory、/info);管理页(30 节)调POST/PUT/DELETE /agents。开发期npm run dev起热更、代理/api到:8080;发布形态是"打进 fat JAR、一个进程托管一切"。 - 错误展示:后端统一
ErrorBody(errorCode/message/timestamp);页面出错就把message显示出来,不吞、不弹裸堆栈。
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.
- 10d ago First seen · 89 lines · 181 tokens per session scan A d9a0f7110549
oryxos-admin-ui is a skill published in the GitHub repository oryx-labs/oryxos (156 stars, last pushed today), licensed Apache-2.0. It adds 181 tokens to every session and 1,935 once invoked, about $0.0009 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.
Other skills, from other repositories
html-artifacts
Author the HTML for a plan artifact, dashboard iframe, or Slack attachment — structure, design plan, available runtime, theming, and craft. Read this before writing HTML for saveplan, outputiframe, or slackattachhtml.
langbot-dev
Develop, build, and debug the LangBot core backend and web frontend. Use when working inside the LangBot repository — backend (Python/Quart, src/langbot/pkg), the Vite/React web UI, HTTP API controllers/services, Alembic migrations, or the MCP server. Covers the dev environment (uv, pnpm), repo layout, the API auth…
ask-user-question
Ask users questions via the UI. Use when you need clarification, user preferences, or confirmation before proceeding. The user CANNOT see CLI output - this tool is the ONLY way to communicate with them.
html-coder
Expert HTML development skill for building web pages, forms, and interactive content. Use when creating HTML documents, structuring web content, implementing semantic markup, adding forms and media, working with HTML5 APIs, or needing HTML templates, best practices, and accessibility guidance. Supports modern HTML5…
AwesomeWebpageMetaSkill
Build a local multimedia webpage project from a user topic, audience, language, style, and media preferences by framing requirements, researching, planning, acquiring media, generating files, packaging, validating, repairing, and delivering usage guidance.
web-design
Penguin visual language for generated web pages and app UIs — GitHub-style simplicity with a single blue accent, light and pure-black dark themes, design tokens, component and chat-interface recipes, plus an opt-in warm paper editorial theme.