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.
npx skills add fanqingxuan/awesome-skills --skill webmangit clone --depth 1 https://github.com/fanqingxuan/awesome-skillsWrote 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/fanqingxuan/awesome-skills/webman)<a href="https://agentmods.dev/skills/fanqingxuan/awesome-skills/webman"><img src="https://agentmods.dev/badge/skills/fanqingxuan/awesome-skills/webman/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/fanqingxuan/awesome-skills/webman"><img src="https://agentmods.dev/badge/skills/fanqingxuan/awesome-skills/webman.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.00092 | $0.01760 |
| Opus 5 | $0.00046 | $0.00880 |
| Sonnet 5 | $0.00018 | $0.00352 |
| Haiku 4.5 | $0.00009 | $0.00176 |
Grade A, and why
webman 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 12d 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 — 318 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Webman 开发指南
Webman 高性能 PHP 框架开发助手,专注于控制器、模型、路由、中间件的快速开发。
常用命令
# 启动服务
php start.php start
# 调试模式启动(前台运行)
php start.php start -d
# 守护进程模式启动
php start.php start -d
# 停止服务
php start.php stop
# 重启服务
php start.php restart
# 平滑重启(不中断服务)
php start.php reload
# 平滑停止
php start.php stop -g
# 查看状态
php start.php status
# 查看连接状态
php start.php connections
# 创建控制器
php webman make:controller UserController
# 创建模型
php webman make:model User
# 创建中间件
php webman make:middleware AuthMiddleware
# 数据库迁移
php webman migrate
# 清除缓存
php webman cache:clear
快速示例
控制器
<?php
namespace app\controller;
use support\Request;
class UserController
{
public function index(Request $request)
{
return json(['code' => 0, 'data' => []]);
}
public function show(Request $request, $id)
{
return json(['code' => 0, 'data' => ['id' => $id]]);
}
}
服务类
<?php
namespace app\service;
use app\model\User;
class UserService
{
public function create(array $data): User
{
return User::create($data);
}
public function update(int $id, array $data): bool
{
$user = User::find($id);
return $user ? $user->update($data) : false;
}
public function delete(int $id): bool
{
$user = User::find($id);
return $user ? $user->delete() : false;
}
}
验证器
<?php
namespace app\validate;
class UserValidate
{
protected $rule = [
'name' => 'require|max:25',
'email' => 'require|email',
];
protected $message = [
'name.require' => '名称必须',
'email.require' => '邮箱必须',
'email.email' => '邮箱格式错误',
];
}
目录结构
app/
├── controller/ # 控制器
├── model/ # 模型
├── middleware/ # 中间件
├── service/ # 服务层
├── validate/ # 验证器
└── view/ # 视图
config/
├── app.php # 应用配置
├── database.php # 数据库配置
├── route.php # 路由配置
└── middleware.php # 中间件配置
内存泄漏注意事项
What ships with it
60 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.
- references/en/aop.md 2.3 KB
- references/en/app/admin.md 725 B
- references/en/app/app.md 1.0 KB
- references/en/app/config.md 1.7 KB
- references/en/app/controller.md 964 B
- references/en/app/create.md 681 B
- references/en/app/database.md 6.2 KB
- references/en/app/directory.md 1.9 KB
- references/en/app/install.md 1.3 KB
- references/en/app/log.md 404 B
- references/en/app/market.md 104 B
- references/en/app/pack.md 1.4 KB
- references/en/app/publish.md 896 B
- references/en/app/redis.md 743 B
- references/en/app/route.md 679 B
- references/en/app/standard.md 2.9 KB
- references/en/app/static.md 197 B
- references/en/app/view.md 258 B
- references/en/attention.md 2.0 KB
- references/en/casbin.md 4.1 KB
- references/en/components/captcha.md 2.5 KB
- references/en/components/casbin.md 6.0 KB
- references/en/components/crontab.md 2.8 KB
- references/en/components/env.md 1.9 KB
- references/en/components/event.md 3.9 KB
- references/en/components/excel.md 860 B
- references/en/components/generate_error_code.md 3.8 KB
- references/en/components/image.md 1.1 KB
- references/en/components/paginator.md 2.1 KB
- references/en/components/pay.md 7.4 KB
- references/en/components/payment.md 7.8 KB
- references/en/components/rate-limiter.md 5.8 KB
- references/en/components/translation.md 5.4 KB
- references/en/components/unitest.md 2.1 KB
- references/en/components/validation.md 61 KB
- references/en/components/wechat.md 3.2 KB
- references/en/config.md 12 KB
- references/en/controller.md 9.7 KB
- references/en/coroutine/context.md 1.3 KB
- references/en/coroutine/coroutine.md 12 KB
- references/en/coroutine/fiber.md 5.6 KB
- references/en/db/cache.md 3.8 KB
- references/en/db/config.md 6.1 KB
- references/en/db/medoo.md 3.0 KB
- references/en/db/migration.md 2.9 KB
- references/en/db/model.md 19 KB
- references/en/db/mongo.md 2.5 KB
- references/en/db/others.md 316 B
- references/en/db/paginator.md 4.6 KB
- references/en/db/queries.md 12 KB
- references/en/db/redis.md 5.2 KB
- references/en/db/relationships.md 121 B
- references/en/db/thinkcache.md 1.6 KB
- references/en/db/thinkorm.md 1.7 KB
- references/en/db/tutorial.md 3.8 KB
- references/en/di.md 11 KB
- references/en/directory.md 2.6 KB
- references/en/event.md 3.5 KB
- references/en/exception.md 4.1 KB
- references/en/help.md 72 B
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.
- 12d ago First seen · 318 lines · 92 tokens per session scan A dbaa21fffbaa
webman is a skill published in the GitHub repository fanqingxuan/awesome-skills (27 stars, last pushed 4mo ago), licensed MIT. It adds 92 tokens to every session and 1,760 once invoked, about $0.0005 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
laravel-specialist
Build and configure Laravel 10+ applications, including creating Eloquent models and relationships, implementing Sanctum authentication, configuring Horizon queues, designing RESTful APIs with API resources, and building reactive interfaces with Livewire. Use when creating Laravel models, setting up queue workers…
php-pro
Use when building PHP applications with modern PHP 8.3+ features, Laravel, or Symfony frameworks. Invokes strict typing, PHPStan level 9, async patterns with Swoole, and PSR standards. Creates controllers, configures middleware, generates migrations, writes PHPUnit/Pest tests, defines typed DTOs and value objects…
craftcms
Craft CMS 5 plugin and module development — extending Craft with PHP. Covers elements, element queries, services, models, records, controllers, migrations, queue jobs, console commands, field types, native fields, events, behaviors, Twig extensions, widgets, filesystems, permissions, project config, GraphQL, testing…
php-ecosystem-reference
Use when picking a non-Laravel PHP tool — Symfony components, API Platform, or Slim — and routing to implementation. Do NOT use for Laravel (laravel-expert).
php-http-psr
Use when building framework-agnostic PHP HTTP code — PSR-7/15/17/18 messages, middleware, factories, clients. Do NOT use for Laravel HTTP or Symfony HttpFoundation (not PSR-7).
scraperapi-php-sdk
Best-practices reference for the ScraperAPI PHP SDK (scraperapi/sdk Composer package). Consult whenever the user is writing, debugging, or reviewing PHP code that calls ScraperAPI. Use when user asks: "scrape a website with PHP and ScraperAPI", "ScraperAPI PHP example", "how do I use the ScraperAPI PHP SDK", "PHP…