silverstripe-dev

silverstripe-dev is a skill for Claude Code, Codex from sandervanscheepen/silverstripe-mcp. It costs 0 tokens per session (541 once invoked), scanned A, original, MIT.

A development guide for Silverstripe CMS 6, a PHP system for building and managing websites. It covers important changes in the sixth major version.

In plain words
What is it for?
It supports Silverstripe 6 PHP work, including updated namespaces and the Symfony Console pattern used for command-line build tasks.
Why use it?
It helps developers avoid using older class names or task patterns that no longer match Silverstripe 6.

Skill for Claude CodeCodex

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

Good fit It supports Silverstripe 6 PHP work, including updated namespaces and the Symfony Console pattern used for command-line build tasks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sandervanscheepen/silverstripe-mcp/silverstripe-dev
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 sandervanscheepen/silverstripe-mcp --skill silverstripe-dev
Clone the repo
git clone --depth 1 https://github.com/sandervanscheepen/silverstripe-mcp

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 silverstripe-dev

README.md
[![agentmods](https://agentmods.dev/badge/skills/sandervanscheepen/silverstripe-mcp/silverstripe-dev/github.svg)](https://agentmods.dev/skills/sandervanscheepen/silverstripe-mcp/silverstripe-dev)
Your own site
<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.

agentmods 80×15 button for silverstripe-dev

Your own site · 80×15
<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>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 541 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.00000 $0.00541
Opus 5 $0.00000 $0.00270
Sonnet 5 $0.00000 $0.00108
Haiku 4.5 $0.00000 $0.00054

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

Security

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.

plugins/silverstripe/skills/silverstripe-dev/SKILL.md · 78 lines

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) method
  • echo for output
  • private 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:

  1. ss-validator - ALWAYS validate PHP code before presenting to user
  2. list-sections - Discover available SS6 changelog sections
  3. get-documentation - Fetch specific changelog sections

Read the full file on GitHub · 78 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. 11d ago First seen · 78 lines · 0 tokens per session scan A a19ec7d0cf9c

Subscribe to this mod's changes

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.

Related

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

cyanheads/mcp-ts-core · 50 tokens

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.

youdotcom-oss/dx-toolkit · 51 tokens

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.

n24q02m/wet-mcp · 48 tokens

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…

scraperapi/scraperapi-skills · 154 tokens

Laravel Migration Safety Review

Reviews Laravel migrations for destructive operations, change() dropping modifiers, locking index creation on large tables (PostgreSQL), and asymmetric down().

s977043/river-review · 32 tokens

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.

klever-io/mcp-klever-vm · 76 tokens