fastadmin

fastadmin is a skill for Claude Code, Codex from 1821471638/fastadmin-ai-skills. It costs 115 tokens per session (882 once invoked), scanned A, original, MIT.

A development guide for FastAdmin, a PHP framework for building administration panels. It covers adding backend modules, database fields, CRUD screens, permissions, and related source files.

In plain words
What is it for?
It helps developers add or modify FastAdmin backend features, design fields and relationships, generate CRUD modules, configure menus and permissions, and edit controllers, models, validators, JavaScript, views, language files, SQL, or plugins.
Why use it?
It provides project-specific rules for deciding where changes belong and checking that generated modules, database design, menus, permissions, and frontend files fit together.

Skill for Claude CodeCodex

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

Good fit It helps developers add or modify FastAdmin backend features, design fields and relationships, generate CRUD modules, configure menus and permissions, and edit controllers, models, validators, JavaScript, views, language files, SQL, or plugins.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/1821471638/fastadmin-ai-skills/fastadmin
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.

Any agent
npx skills add 1821471638/fastadmin-ai-skills --skill fastadmin
Clone the repo
git clone --depth 1 https://github.com/1821471638/fastadmin-ai-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 fastadmin

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/1821471638/fastadmin-ai-skills/fastadmin"><img src="https://agentmods.dev/badge/skills/1821471638/fastadmin-ai-skills/fastadmin.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 115 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 882 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.
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.00115 $0.00882
Opus 5 $0.00057 $0.00441
Sonnet 5 $0.00023 $0.00176
Haiku 4.5 $0.00012 $0.00088

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

Security

Grade A, and why

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

skills/fastadmin/SKILL.md · 48 lines

What it actually says

FastAdmin 开发

执行边界

  • 先定位 FastAdmin 项目根目录:必须包含 thinkapplication/addons/public/
  • 所有框架路径均相对于当前项目根目录;不得写入本机模板绝对路径。
  • 默认使用简体中文输出分析、执行结果和验证结论;代码、命令、路径、配置 key、错误信息保持原文。
  • 新增功能默认落到 FastAdmin 原生目录;插件目录只允许明确修改原插件已有源文件或在原文件加方法。
  • 不在 addons/<plugin> 下新增独立功能板块。

必读规则

按任务触发读取,不一次性加载所有 references/

  1. 任何任务先读 references/01-ownership.md,确定原生新增、已有源文件修改或插件源文件修改。
  2. 涉及新表、新字段、新索引、状态值、外键或 SQL,读 references/02-database-design.md
  3. 新增标准后台数据管理模块,读 references/03-native-crud.md
  4. 新增原生页面或修改后台视图/JS,读 references/04-native-frontend.md
  5. 修改已有控制器、模型、服务、验证器、JS、视图或插件源文件,读 references/05-existing-source-change.md

固定流程

  1. 判定归属:新增一律原生;已有文件修改按当前文件;明确插件源文件修改才进入插件规则。
  2. 判定项目根和当前项目实际命令:先检查 php thinkapplication/admin/command/Crud.phpapplication/admin/command/Menu.php
  3. 涉及数据库时先完成字段设计,再决定是否执行 php think crud
  4. CRUD 前判断控制器层级、关联模型显示、字段识别、菜单路径;再构造最小必要命令。
  5. CRUD 后生成菜单权限;菜单必须使用最终控制器路径。
  6. 生成后复核 SQL、控制器、模型、验证器、视图、后台 JS、语言包、菜单权限、字段组件、关联显示。

硬性约束

  • php think crud 是生成标准原生管理模块的方式,不决定任务归属。
  • CRUD 默认命令优先,特殊参数后置;--controller 只用于项目层级归属,不用于解决字段组件、pid、selectpage 或减少页面改造。
  • 数据库字段设计必须参考当前项目 application/admin/command/Crud.php 的字段识别规则。
  • 列表需要显示关联表字段时,CRUD 命令必须加入 --relation--relationmode--relationforeignkey--relationprimarykey--relationfields
  • 树形父级字段默认使用 pid,不改成本表名 _id
  • 菜单权限优先用 --menu=1php think menu --controller=<controller>;多个控制器可重复传入 --controller

输出契约

  • 实现前说明:任务归属、目标目录、是否需要数据库、是否适合 CRUD、是否需要关联模型、最终控制器路径、菜单生成方式。
  • 实现后说明:实际执行命令、生成/修改的关键文件、菜单节点、验证结果、未验证项。
Files

What ships with it

6 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. 8d ago First seen · 48 lines · 115 tokens per session scan A 096c3339d9aa

Subscribe to this mod's changes

fastadmin is a skill published in the GitHub repository 1821471638/fastadmin-ai-skills (2 stars, last pushed 3mo ago), licensed MIT. It adds 115 tokens to every session and 882 once invoked, about $0.0006 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

zhihu-search

A search skill for finding content on Zhihu, a Chinese question-and-answer and article platform, through its search API.

itwanger/toBeBetterJavaer · 103 tokens

proxysql

Production standards for ProxySQL, a high-performance MySQL proxy providing connection multiplexing, query routing, caching, and firewalling. Use when configuring, troubleshooting, or making architectural decisions about multiplexing, query caching, query routing rules, or firewall lists. Triggers on: "ProxySQL"…

neverinfamous/mysql-mcp · 92 tokens

mysql-router

Production standards for MySQL Router, the lightweight middleware for transparent routing between applications and MySQL InnoDB Cluster servers. Use when configuring, troubleshooting, or making architectural decisions about HA routing, connection pooling, or cluster integration. Triggers on: "MySQL Router"…

neverinfamous/mysql-mcp · 84 tokens

opentelemetry

Observability standards using OpenTelemetry. Use when instrumenting applications for distributed tracing, metrics, and structured logging. SECURITY: Ensure sensitive PII/secrets are scrubbed before logging. Triggers on: "OpenTelemetry", "OTel", "distributed tracing", "metrics", "structured logging", "OTLP"…

neverinfamous/mysql-mcp · 71 tokens

drizzle-orm

Drizzle ORM — TypeScript SQL ORM. Schema definition, queries, migrations, transactions, RQB, extensions.

pledgeandgrow/pledge-skills · 28 tokens

mem0-oss-to-platform

Plan and then execute a migration of a project from the mem0 open-source / self-hosted SDK (the local Memory class) to the mem0 Platform / hosted / managed SDK (the MemoryClient class). Use this whenever a developer wants to move, switch, or migrate their mem0 usage off OSS/self-hosted to the hosted API — e.g.…

mem0ai/mem0 · 273 tokens