oryxos: Skill for Claude Code

.claude/skills/oryxos-admin-ui/SKILL.md

oryxos-admin-ui is a skill for Claude Code from oryx-labs/oryxos. It costs 181 tokens per session (1,935 once invoked), scanned A, original, Apache-2.0.

A specification for building OryxOS’s web administration interface as a Vue 3 and Vite single-page application. It defines the shared dark theme, orange accents, fonts, layout rules, and how the app is served under /admin/.

In plain words
What is it for?
Use it to create or extend read-only admin pages, such as agent lists and forms that call existing REST APIs, with the required build output and browser path handling.
Why use it?
It keeps new administration pages visually and technically consistent with the OryxOS website, while setting clear limits on what the frontend should change.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

This is oryx-labs/oryxos's own configuration. It tells Claude Code how to work on oryxos 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 oryxos configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/oryx-labs/oryxos/main/.claude/skills/oryxos-admin-ui/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/oryx-labs/oryxos

Made for: Claude Code.

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 oryxos-admin-ui

README.md
[![agentmods](https://agentmods.dev/badge/skills/oryx-labs/oryxos/oryxos-admin-ui/github.svg)](https://agentmods.dev/skills/oryx-labs/oryxos/oryxos-admin-ui)
Your own site
<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.

agentmods 80×15 button for oryxos-admin-ui

Your own site · 80×15
<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>
Per session 181 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,935 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 warn 7 Sept 2026
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.
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.00181 $0.01935
Opus 5 $0.00090 $0.00967
Sonnet 5 $0.00036 $0.00387
Haiku 4.5 $0.00018 $0.00194

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

Security

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.

.claude/skills/oryxos-admin-ui/SKILL.md · 89 lines

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-baseID / session_id / JSON / cron / token 数这类机读值一律 --font-mono
  • 主色只点睛,不做大色块背景;整体克制、留白足。

二、工程约定(决定它能不能被 Spring 托管)

  • 技术栈:Vue 3 + Vite(跟 website/ 同生态;管理台是 app,用普通 Vue SPA,不用 VitePress)。源码在 oryxos-web/src/main/frontend/
  • base 与产物vite.configbase: '/admin/'build.outDir 指到 ../resources/static/admin(即 oryxos-web/src/main/resources/static/admin/),资源用相对路径。
  • SPA 路径回落:Spring 对 /admin/** 未命中路径回落 admin/index.htmlGET /api/v1/** 不受影响(后端接线,提醒 plan 处理)。
  • 数据来源:只调 /api/v1/**。只读页调 GET/sessions/profiles/tools/memory/info);管理页(30 节)调 POST/PUT/DELETE /agents。开发期 npm run dev 起热更、代理 /api:8080;发布形态是"打进 fat JAR、一个进程托管一切"。
  • 错误展示:后端统一 ErrorBodyerrorCode/message/timestamp);页面出错就把 message 显示出来,不吞、不弹裸堆栈。

Read the full file on GitHub · 89 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. 10d ago First seen · 89 lines · 181 tokens per session scan A d9a0f7110549

Subscribe to this mod's changes

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.

Related

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.

langchain-ai/open-swe · 51 tokens

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…

langbot-app/LangBot · 136 tokens

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.

MemTensor/MemOS · 44 tokens

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…

opensquilla/opensquilla · 67 tokens

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.

opensquilla/opensquilla · 51 tokens

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.

Prism-Shadow/penguin-harness · 51 tokens