11-管理后台标准

11-管理后台标准 is a skill for Claude Code, Codex from xcodethink/open-claude-code-skills. It costs 235 tokens per session (1,242 once invoked), scanned A, original, MIT.

A Chinese-language standard and reusable code templates for admin dashboards—internal web screens used to manage data, users, settings, and operations.

In plain words
What is it for?
Use it when building an admin panel, including tables, statistics cards, charts, forms, dialogs, sidebars, status labels, API-key management, two-factor authentication, and dark mode.
Why use it?
It reduces repeated design and implementation work by providing shared architecture, database, API, authentication, language, and interface rules.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/xcodethink/open-claude-code-skills/11
Any agent
npx skills add xcodethink/open-claude-code-skills --skill 11
Clone the repo
git clone --depth 1 https://github.com/xcodethink/open-claude-code-skills

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 11-管理后台标准

README.md
[![agentmods](https://agentmods.dev/badge/skills/xcodethink/open-claude-code-skills/11.svg)](https://agentmods.dev/skills/xcodethink/open-claude-code-skills/11)
Your own site
<a href="https://agentmods.dev/skills/xcodethink/open-claude-code-skills/11"><img src="https://agentmods.dev/badge/skills/xcodethink/open-claude-code-skills/11.svg" alt="Measured on agentmods" height="20"></a>
Per session 235 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,242 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00235 $0.01242
Opus 5 $0.00118 $0.00621
Sonnet 5 $0.00047 $0.00248
Haiku 4.5 $0.00023 $0.00124

Measured 4d ago against content hash e78bb1610f53, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

11-管理后台标准 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 4d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (模板代码/lib/adminApi.ts, 模板代码/lib/adminLabels.ts, 模板代码/lib/lazyWithRetry.ts), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/11-管理后台标准/SKILL.md · 90 lines

How it starts

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

管理后台统一标准

开发管理后台时,本目录包含所有需要的资料,按以下顺序使用:

🔴 核心原则:复制,不是重写

管理后台的通用模块 = 从 ProjectA 直接复制代码 + 只改业务数据。禁止从零重写。


📂 本目录结构

11-管理后台标准/
├── SKILL.md                  ← 你在这里(入口文档)
├── 新项目模板.md              ← 🔴 新项目的 CLAUDE.md 模板(跨机器可移植)
├── 规范/                      ← 所有管理后台规范文档
│   ├── 架构.md               ← AdminApp 主容器、路由、骨架屏
│   ├── 后端.md               ← 认证/设备指纹/流量/API用量/2FA/Cron
│   ├── 数据库.md              ← 标准表结构
│   ├── API层.md              ← adminApi.ts 封装
│   ├── 国际化.md              ← adminLabels.ts 双语标签
│   ├── 通用功能模块.md         ← 🔴 核心:模块清单 + 验收清单 + 跨项目同步
│   ├── API密钥管理.md         ← Key 管理全栈方案
│   ├── Safari兼容.md          ← 浏览器兼容修复
│   └── 视觉交互规范.md         ← 🔴 视觉精致度标准(间距/字体/颜色/动画/骨架屏/空态/深色模式)
├── UI组件/                    ← 共享 UI 组件规范
│   ├── 侧边栏导航.md
│   ├── 数据表格.md
│   ├── 统计卡片.md
│   ├── 图表组件.md
│   ├── 表单组件.md
│   ├── 弹窗和抽屉.md
│   └── 状态标签.md
└── 模板代码/                   ← 可直接复制的模板代码
    ├── README.md              ← 模板使用说明
    ├── PATTERNS.md            ← 代码模式
    ├── DESIGN.md              ← 设计规范
    ├── components/admin/      ← 前端组件模板
    │   ├── AdminApp.tsx
    │   ├── AdminSidebar.tsx
    │   ├── AdminHeader.tsx
    │   ├── AdminLogin.tsx
    │   ├── shared/            ← 8 个共享 UI 组件
    │   └── tabs/              ← 14 个通用 Tab 模板(✅ 8 必选 + 📦 6 可选)
    ├── layouts/AdminLayout.astro
    ├── lib/                   ← API 层模板
    │   ├── adminApi.ts
    │   ├── adminLabels.ts
    │   └── lazyWithRetry.ts
    └── pages/admin.astro

🔴 开发步骤

第 1 步:复制模板代码

模板代码/ 目录复制所有文件到新项目对应位置,只改项目名和导航项。

第 2 步:查阅规范文档

  • 不确定架构时 → 读 规范/架构.md
  • 不确定后端时 → 读 规范/后端.md + 规范/数据库.md
  • 不确定功能模块时 → 读 规范/通用功能模块.md

第 3 步:查阅 UI 组件规范

需要特定组件的详细用法时,读 UI组件/ 下对应文档。

第 4 步:新项目配置

新项目模板.md 里的内容加入项目的 CLAUDE.md,确保跨机器可移植。


🔴 跨机器使用

方案 A:同步 skills 目录(推荐)

~/.claude/skills/ 做为 Git 仓库管理,新机器 clone 即可。

方案 B:项目自带规范

新项目模板.md 的内容写入项目的 CLAUDE.md,这样即使没有 skills 目录,Claude Code 也知道从哪里复制代码。


⚠️ 与组件规范的关系

本目录是从 03-组件规范/web/ 独立出来的完整版。管理后台开发只需读本目录,不需要再去 03-组件规范。

Read the full file on GitHub · 90 lines

Files

What ships with it

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

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. 4d ago First seen · 90 lines · 235 tokens per session scan A e78bb1610f53

Subscribe to this mod's changes

11-管理后台标准 is a skill published in the GitHub repository xcodethink/open-claude-code-skills (2 stars, last pushed 29d ago), licensed MIT. It adds 235 tokens to every session and 1,242 once invoked, about $0.0012 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-31.

Related

Other skills, from other repositories

om-backend-ui-design

Design and implement consistent, production-grade backend/backoffice interfaces using the @open-mercato/ui component library. Use this skill when building admin pages, CRUD interfaces, data tables, forms, detail pages, or any backoffice UI components. Ensures visual consistency and UX patterns across all application…

open-mercato/open-mercato · 66 tokens

ss-studio

Turn a product brief and optional references into three distinct creative directions, a human-selected StyleSeed interaction plan, generated image/video asset jobs, a working UI prototype, and a verified prototype-first showcase reel. Use for client concepts, app interaction exploration, trendy but coherent UI…

bitjaru/styleseed · 75 tokens

ss-copy

Generate UX microcopy (button labels, error messages, empty states, toasts) following a casual-but-polite voice and tone.

bitjaru/styleseed · 29 tokens

moai-domain-frontend

Frontend development specialist covering React 19, Next.js 16, Vue 3.5, and modern UI/UX patterns with component architecture. Use when building web UIs, implementing components, optimizing frontend performance, or integrating state management.

modu-ai/moai-adk · 54 tokens

design-director

Используй только внутри активного Codex Project Autopilot-проекта, когда уже выбрана проектная фаза и нужен design direction по плану автопилота.

hashgraph-online/awesome-codex-plugins · 41 tokens

ss-review

Review UI code for design system compliance, accessibility, and best practices.

bitjaru/styleseed · 16 tokens