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 Kerliula/ship-me --skill build-megit clone --depth 1 https://github.com/Kerliula/ship-meWrote 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/kerliula/ship-me/build-me)<a href="https://agentmods.dev/skills/kerliula/ship-me/build-me"><img src="https://agentmods.dev/badge/skills/kerliula/ship-me/build-me/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/kerliula/ship-me/build-me"><img src="https://agentmods.dev/badge/skills/kerliula/ship-me/build-me.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.00173 | $0.03255 |
| Opus 5 | $0.00086 | $0.01628 |
| Sonnet 5 | $0.00035 | $0.00651 |
| Haiku 4.5 | $0.00017 | $0.00326 |
Grade A, and why
build-me 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.
How it starts
The opening of the file, as written. The whole thing — 313 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Build Me — Implement, One Commit at a Time
Your job is to turn an already-decided solution into working Laravel code. The thinking is done. Don't redesign it — build it.
Input
You need a solution write-up before starting. Accept it as:
- A path to a markdown file (typically the file
/solve-meproduced atdocs/solutions/<topic>.md), or - The solution details pasted directly into the conversation.
Also read the matching problem write-up (docs/grilling/<topic>.md)
if it exists — that's where the numbered requirements (R1, R2, …) and
the out-of-scope list live. You need them to explain why each commit
exists and to avoid building something that was explicitly ruled out.
If you don't have one, ask for it. Don't invent a solution yourself —
that's what /grill-me and /solve-me are for. If the write-up looks
thin, contradictory, missing a clear recommendation for a sub-problem, or
lists anything under "Open trade-offs", stop and say so instead of
guessing — ask the developer to rule on each open trade-off before
writing the plan.
Use the option that was already picked. Every sub-problem in the
solve-me file has a line like **Recommended: Option B**. That's the
default — the developer ratifies it at ship-me's solution gate or,
failing that, when they approve this commit plan. Build that one, not
the one you personally think is best. If you genuinely believe a
different option would be better, say so out loud and wait for a
decision. Never silently swap it.
Step 1 — Learn how this project already does things
Before writing anything, look at how similar things are already built in this codebase: naming, folder placement, how classes are structured (actions, requests, resources, jobs, policies, etc.), how validation is done, how tests are written, how errors are handled. Use CodeGraph or search the codebase for the closest existing example to each sub-problem you're about to build.
New code should look like it was written by the same person who wrote the rest of the app — same conventions, same idioms, same file locations. Don't introduce a new pattern when an existing one already covers the case.
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.
- 8d ago First seen · 313 lines · 173 tokens per session scan A b6c68b085792
build-me is a skill published in the GitHub repository Kerliula/ship-me (1 stars, last pushed 10d ago), licensed MIT. It adds 173 tokens to every session and 3,255 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-31.
Other skills, from other repositories
filament-plugin-development
Build and publish custom Filament plugins (Filament is the Laravel admin-panel framework). Use when creating a Filament plugin/package, implementing the Plugin contract, scaffolding from the plugin skeleton, registering assets/resources/pages/render-hooks, making a configurable plugin, testing it, or publishing to…
laravel-upgrade
Upgrade a Laravel application across major versions safely (Laravel 8 -> 9 -> 10 -> 11 -> 12 -> 13), one hop at a time. Use when upgrading Laravel, when a composer update fails after a major bump, when deciding whether to hop versions by hand or pay for Laravel Shift, or when something compiled fine but broke at…
laravel-13-expert
Comprehensive Laravel 13.x expert skill covering the entire framework — installation, configuration, routing, controllers, middleware, Blade views, Eloquent ORM, migrations, queues, jobs, events, mail, notifications, caching, Redis, scheduling, service container, service providers, authentication, authorization, AI…
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…
create-powergrid-plugin
Create a complete PowerGrid plugin from scratch, including PHP class, Column macro, Blade view, Alpine.js component, and registration.