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 sandervanscheepen/silverstripe-mcp --skill silverstripe-devgit clone --depth 1 https://github.com/sandervanscheepen/silverstripe-mcpWrote 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/sandervanscheepen/silverstripe-mcp/silverstripe-dev)<a href="https://agentmods.dev/skills/sandervanscheepen/silverstripe-mcp/silverstripe-dev"><img src="https://agentmods.dev/badge/skills/sandervanscheepen/silverstripe-mcp/silverstripe-dev/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/sandervanscheepen/silverstripe-mcp/silverstripe-dev"><img src="https://agentmods.dev/badge/skills/sandervanscheepen/silverstripe-mcp/silverstripe-dev.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.00000 | $0.00541 |
| Opus 5 | $0.00000 | $0.00270 |
| Sonnet 5 | $0.00000 | $0.00108 |
| Haiku 4.5 | $0.00000 | $0.00054 |
Grade A, and why
silverstripe-dev 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 11d 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 — 78 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Silverstripe 6 Development Skill
You are skilled in Silverstripe CMS 6 development. Use this knowledge when working with Silverstripe PHP projects.
Key Silverstripe 6 Changes
Reference: https://docs.silverstripe.org/en/6/changelogs/6.0.0/
Namespace Changes
Many core classes moved namespaces in SS6:
| Class | Old (SS5) | New (SS6) |
|---|---|---|
| ArrayList | SilverStripe\ORM\ArrayList |
SilverStripe\Model\List\ArrayList |
| ArrayData | SilverStripe\View\ArrayData |
SilverStripe\Model\ArrayData |
| ViewableData | SilverStripe\View\ViewableData |
SilverStripe\Model\ModelData |
| PaginatedList | SilverStripe\ORM\PaginatedList |
SilverStripe\Model\List\PaginatedList |
| ValidationResult | SilverStripe\ORM\ValidationResult |
SilverStripe\Core\Validation\ValidationResult |
BuildTask Pattern
SS6 BuildTasks use Symfony Console:
// SS6 BuildTask pattern
use SilverStripe\Dev\BuildTask;
use SilverStripe\PolyExecution\PolyOutput;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
class MyTask extends BuildTask
{
protected static string $commandName = 'my-task';
protected static string $description = 'Task description';
protected function execute(InputInterface $input, PolyOutput $output): int
{
$output->writeln('Output goes here');
return Command::SUCCESS;
}
}
Do NOT use:
run(HTTPRequest $request)methodechofor outputprivate static $segment
Extension Hooks
Extension hook methods should be protected, not public:
// Correct in SS6
protected function updateCMSFields(FieldList $fields): void
protected function onBeforeWrite(): void
protected function onAfterWrite(): void
MCP Tools Available
When the Silverstripe MCP server is connected, use these tools:
- ss-validator - ALWAYS validate PHP code before presenting to user
- list-sections - Discover available SS6 changelog sections
- get-documentation - Fetch specific changelog sections
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.
- 11d ago First seen · 78 lines · 0 tokens per session scan A a19ec7d0cf9c
silverstripe-dev is a skill published in the GitHub repository sandervanscheepen/silverstripe-mcp (5 stars, last pushed 6mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 541 tokens. 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
add-export
Add a new subpath export to the @cyanheads/mcp-ts-core package. Use when creating a new public API surface that consumers import from a dedicated subpath (e.g., @cyanheads/mcp-ts-core/newutil).
typescript-lsp
Search TypeScript SYMBOLS (functions, types, classes) - NOT text. Use Glob to find files, Grep for text search, LSP for symbol search. Provides type-aware results that understand imports, exports, and relationships.
lock-project-stack
Detect a project's manifest (pyproject.toml / package.json / go.mod / Cargo.toml), pin its library set into wet-mcp's Cabinets projectcontext, then route subsequent docs queries to the locked versions automatically.
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…
Laravel Migration Safety Review
Reviews Laravel migrations for destructive operations, change() dropping modifiers, locking index creation on large tables (PostgreSQL), and asymmetric down().
klever-dev
End-to-end Klever blockchain development — smart contracts (Rust/WASM), transaction building (@klever/connect, klever-go-sdk), deployment via ksc + koperator, and on-chain interaction via MCP tools. Use when the task involves KLV, KDA tokens, klv1 addresses, Klever smart contracts, or Klever node/API interaction.