seevin-claude-plugins: Instructions file for Claude Code

CLAUDE.md

seevin-claude-plugins CLAUDE.md is an instructions file for Claude Code from zhanyoulin456/seevin-claude-plugins. It costs 1,606 tokens per session, scanned A, original, MIT.

A set of project instructions for Seevin’s Claude Code plugin marketplace, including its plugin structure, metadata files, commands, skills, and connection settings.

In plain words
What is it for?
Use it when working on the marketplace, especially when editing plugin manifests, skills, commands, MCP server settings, or directory layout.
Why use it?
It gives an AI coding assistant the repository’s conventions for adding or changing plugins and keeping their configuration consistent.

Instructions file for Claude Code

Written for Claude Code: Claude Code plugin machinery. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions Claude Code.

This is zhanyoulin456/seevin-claude-plugins's own configuration. It tells Claude Code how to work on seevin-claude-plugins 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 seevin-claude-plugins configures →

Reuse

Borrowing it

Nothing to install: this file belongs to zhanyoulin456/seevin-claude-plugins. 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/zhanyoulin456/seevin-claude-plugins/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/zhanyoulin456/seevin-claude-plugins

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 seevin-claude-plugins CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/zhanyoulin456/seevin-claude-plugins/claude-md/github.svg)](https://agentmods.dev/instructions/zhanyoulin456/seevin-claude-plugins/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/zhanyoulin456/seevin-claude-plugins/claude-md"><img src="https://agentmods.dev/badge/instructions/zhanyoulin456/seevin-claude-plugins/claude-md/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 seevin-claude-plugins CLAUDE.md

Your own site · 80×15
<a href="https://agentmods.dev/instructions/zhanyoulin456/seevin-claude-plugins/claude-md"><img src="https://agentmods.dev/badge/instructions/zhanyoulin456/seevin-claude-plugins/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 1,606 This file is loaded in full into every session.
When invoked 1,606 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.01606 $0.01606
Opus 5 $0.00803 $0.00803
Sonnet 5 $0.00321 $0.00321
Haiku 4.5 $0.00161 $0.00161

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

Security

Grade A, and why

seevin-claude-plugins CLAUDE.md 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 8d 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.md · 234 lines

How it starts

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

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

项目概述

这是 Seevin 团队的 Claude Code 插件市场,提供企业级前端开发工具集。项目采用模块化插件架构,包含两个核心插件:

  • seevin-core: 核心工具集,开箱即用
  • seevin-yapi-tools: YAPI 自动化工具,需配置个人凭证

插件架构

插件市场配置

.claude-plugin/marketplace.json 定义了整个插件市场的元数据:

  • 插件市场信息(name, description, owner, homepage)
  • 插件列表及其源码路径:source: ./plugins/插件目录

每个插件的详细元数据由其 plugin.json 定义,strict 模式下会自动合并。

插件目录结构

每个插件遵循统一的结构:

plugins/插件名/
├── .claude-plugin/
│   └── plugin.json          # 插件元数据(包含路径配置)
├── commands/                # 命令文件(.md)
│   └── command-name.md
├── skills/                  # 技能目录
│   └── skill-name/
│       ├── SKILL.md         # 必需:技能定义
│       ├── LICENSE.txt      # 可选:许可证
│       └── references/      # 可选:参考资料
└── .mcp.json               # MCP 服务器配置

plugin.json 包含:

  • 基本信息:name, description, version, author, license
  • 分类信息:category, tags
  • 路径配置:mcpServers, commands, skills, homepage
  • 这些配置使插件自包含,成为单一事实来源

技能(Skills)文件格式

SKILL.md - 技能定义文件,使用 frontmatter 格式:

---
name: skill-name
description: 触发条件描述,用于匹配用户请求
license: Complete terms in LICENSE.txt
---

# 技能标题

技能详细说明和执行指南...

技能采用三级加载系统管理上下文,避免一次性加载过多内容。

命令(Commands)文件格式

命令文件使用 frontmatter 定义元数据:

---
description: 命令描述
argument-hint: [参数提示]
---

# 命令标题

执行步骤说明...

命令通过斜杠命令调用,例如:/jsd-auto-lint

MCP 服务器配置

.mcp.json 定义 MCP 服务器集成:

{
  "mcpServers": {
    "服务器名称": {
      "type": "stdio",
      "command": "npx",
      "args": ["包名", "--参数", "值"]
    }
  }
}

已集成的 MCP 服务器:

  • chrome-devtools: Chrome DevTools 集成
  • context7: 库文档查询(Upstash)
  • tdesign-mcp-server: TDesign 组件库工具
  • yapi-get-interface-mcp: YAPI 接口文档获取

核心技能说明

frontend-design

创建高质量前端界面,避免通用 AI 美学。关键原则:

  • 选择独特的设计方向并坚持执行
  • 使用独特的字体(避免 Inter、Roboto 等常见字体)
  • 采用大胆的配色方案和主题
  • 通过动画和微交互增强体验
  • 创造意外的布局和空间构成

layerdata-to-code

将设计工具的 layerDatas 转换为 Vue 组件代码。参考文件:

  • ASCII.md: ASCII 艺术字符参考
  • examples.md: 代码示例
  • reference.md: 技术参考

Read the full file on GitHub · 234 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. 8d ago First seen · 234 lines · 1,606 tokens per session scan A dd0f4eec1c66

Subscribe to this mod's changes

seevin-claude-plugins CLAUDE.md is an instructions file published in the GitHub repository zhanyoulin456/seevin-claude-plugins (4 stars, last pushed 7mo ago), licensed MIT. It adds 1,606 tokens to every session, about $0.0080 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 instructions, from other repositories

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens