sfcc-dev-mcp: Skill for Claude Code

.github/skills/agent-authoring/SKILL.md

agent-authoring is a skill for Claude Code, Codex from taurgis/sfcc-dev-mcp. It costs 20 tokens per session (873 once invoked), scanned A, original, MIT.

A guide to designing, structuring, and checking custom GitHub Copilot agents. These are specialized agents configured with instructions, tools, and optional handoffs for particular development workflows.

In plain words
What is it for?
Use it to create or update workspace or profile agents for tasks such as testing, log analysis, or other focused development work.
Why use it?
It explains which configuration fields are supported and how to keep an agent focused, maintainable, and suitable for its target environment.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents.

This is taurgis/sfcc-dev-mcp's own configuration. It tells Claude Code and Codex how to work on sfcc-dev-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything sfcc-dev-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to taurgis/sfcc-dev-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/taurgis/sfcc-dev-mcp/main/.github/skills/agent-authoring/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/taurgis/sfcc-dev-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 agent-authoring

README.md
[![agentmods](https://agentmods.dev/badge/skills/taurgis/sfcc-dev-mcp/agent-authoring.svg)](https://agentmods.dev/skills/taurgis/sfcc-dev-mcp/agent-authoring)
Your own site
<a href="https://agentmods.dev/skills/taurgis/sfcc-dev-mcp/agent-authoring"><img src="https://agentmods.dev/badge/skills/taurgis/sfcc-dev-mcp/agent-authoring.svg" alt="Measured on agentmods" height="20"></a>
Per session 20 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 873 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Tool Misuse · line 49
    Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).
    Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
How audits are shown
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.00020 $0.00873
Opus 5 $0.00010 $0.00436
Sonnet 5 $0.00004 $0.00175
Haiku 4.5 $0.00002 $0.00087

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

Security

Grade A, and why

agent-authoring 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.

.github/skills/agent-authoring/SKILL.md · 67 lines

How it starts

The opening of the file, as written. The whole thing — 67 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Agent Authoring Skill

Guidelines for creating and maintaining custom GitHub Copilot agents (.agent.md) tailored to this repository.

When to Use

  • You need a new Copilot agent focused on a workflow (e.g., Storybook tests, log triage).
  • You want to adjust tools/persona for existing agents.
  • You are adding workspace-level agents under .github/agents or profile-level agents for reuse.

Quick Start

  1. Create .github/agents/<agent-name>.agent.md (VS Code auto-detects this folder/extension).
  2. Add YAML frontmatter with only supported fields: name, description, tools, target, infer, mcp-servers, handoffs.
  3. In the body, write concise instructions: task focus, guardrails, run/validate steps, and handoffs.
  4. Keep it under ~200-300 lines; link out to docs instead of pasting everything.

Frontmatter Cheatsheet

  • name: Display name; defaults to file name if omitted.
  • description: Placeholder text in chat input; keep short.
  • tools: List allowed tools. For MCP servers, use <server>/* to include all tools or enumerate specific ones.
  • target: github-copilot for Copilot agents (default), vscode for VS Code target.
  • infer: Allow subagent use (default true). Set false if you want to restrict subagents.
  • mcp-servers: For Copilot agents, point to MCP server configs (paths to server JSON). Use only if you need to pin servers.
  • handoffs: Optional array of next-step buttons { label, agent, prompt?, send? }.
  • Purpose and scope: What this agent does and what it must not do.
  • Operating defaults: Where to run commands, what to inspect first, preferred scripts.
  • Playbooks: Ordered steps for common flows (run, debug, fix, validate).
  • Guardrails: Safe-edit rules (scope, no unrelated changes, ask before destructive ops).
  • Validation: How to verify work (tests/linters), how to summarize outputs.
  • Links: Point to repo docs or skills for deeper detail.

Tool Selection Patterns

  • Editing agent: include workspace, terminal, search; add fetch for docs; add MCP toolsets only if required.
  • Read-only agent: omit editing tools; keep fetch/search.
  • Narrow the tool list to prevent unsafe actions (e.g., no terminal for planning-only agents).

Read the full file on GitHub · 67 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. 8d ago First seen · 67 lines · 20 tokens per session scan A 7a0e8d4e4bbe

Subscribe to this mod's changes

agent-authoring is a skill published in the GitHub repository taurgis/sfcc-dev-mcp (27 stars, last pushed 2d ago), licensed MIT. It adds 20 tokens to every session and 873 once invoked, about $0.0001 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.

Related

Other skills, from other repositories

nebula-logger-instrumentation

Use this skill when the user wants to add or update Nebula Logger instrumentation in Apex, LWC, Aura, Flow, or OmniStudio. Covers logging APIs, save patterns, record association, scenarios, tags, async transaction linking, and save method selection.

jongpie/NebulaLogger · 60 tokens

nebula-logger-plugin-development

Use this skill when the user wants to build a new plugin that extends Nebula Logger - for example, custom trigger handlers on LogEntryEvente / Logc / LogEntryc, custom purge actions, or Slack-style outbound integrations. Covers the plugin framework interfaces, LoggerPluginmdt configuration, package layout, and testing…

jongpie/NebulaLogger · 84 tokens

nebula-logger-testing-your-code

Use this skill when the user wants to write Apex or LWC tests for code that calls Nebula Logger. Covers observing that the right entries were buffered, controlling logging levels inside tests, isolating tests from persisted Logc / LogEntryc / LogEntryTagc / LoggerScenarioc / LoggerTagc records, and Nebula Logger APIs…

jongpie/NebulaLogger · 104 tokens

nebula-logger-purging-and-retention

Use this skill when the user wants to configure how long Nebula Logger keeps log records before deleting or archiving them. Covers retention date semantics on Logc, the LogBatchPurger batch job, LogBatchPurgeScheduler, purge action values, and how to tune retention per user, profile, or scenario.

jongpie/NebulaLogger · 79 tokens

nebula-logger-install

Use this skill when the user wants to install and configure Nebula Logger in a Salesforce org for the first time. Covers package selection, installation paths, permissions, LoggerSettingsc hierarchy, and first-run troubleshooting.

jongpie/NebulaLogger · 49 tokens

nebula-logger-best-practices

Use this skill when the user wants to review, harden, or standardize Nebula Logger usage across a Salesforce team. Covers operational logging standards, environment-aware settings, limit-aware design, and governance guardrails.

jongpie/NebulaLogger · 52 tokens