Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

build — Scoped Delivery Implementation Skill

A delivery-focused skill for implementing a scoped, customer-facing change in an existing repository and verifying its behavior.

Dev & CodingIntermediate537118AI score 5/10Last updated: Sep 15, 2026

What it does

  • Guides implementation of a change whose outcome is already understood, inside the existing codebase.
  • Requires reading references/task-context.md (task context contract) first, then references/build.md (the method), so authority and persistence targets are settled up front.
  • Keeps implementation, verification, deployment and acceptance clearly distinguished instead of blurring them into "done".
  • Enforces honest reporting of missing capabilities and unrun checks.
  • When invoked by the @fde workflow, reuses the existing sanitized packet and scope rather than re-running discovery.

Who it's for

  • Developers shipping scoped tickets into an existing repository.
  • Team leads who want delivery work handled differently from incident response.
  • Anyone tired of agents claiming tests passed when nothing was actually run.

Example uses

  1. "Add a retry banner on payment failure" — implement, verify locally, then explicitly list what was not verified.
  2. In a multi-service monorepo, agree on target files and verification steps before writing code.
  3. Pick up a requirements packet from an upstream FDE workflow and jump straight to implementation without repeated questions.

Note: explicitly not intended for incident or outage response.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/suboss87/FDEOps/HEAD/skills/build/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the skills/build folder from the GitHub repo suboss87/FDEOps into my ~/.claude/skills/build/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/suboss87/FDEOps.git && mkdir -p ~/.claude/skills && cp -r FDEOps/skills/build ~/.claude/skills/build

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Clone the repository: git clone https://github.com/suboss87/FDEOps.git
  3. Create the skills directory: mkdir -p ~/.claude/skills
  4. Copy the whole skill folder, including its references: cp -r FDEOps/skills/build ~/.claude/skills/build
  5. Confirm ~/.claude/skills/build/references/ contains task-context.md and build.md; if missing, locate them in the repo and place them there.
  6. Restart Claude Code and try: "use the build skill to implement this change".