# Do Shared

> Shared resources and dependencies used by other do-* skills. Not a user-invocable skill. Contains MCP capability registry and discovery instructions referenced by do-execute-task, do-execute-qa, do-execute-review, and do-execute-qa-bugfix.

- Skill: `fabio-barboza/do-shared` (Agent Skill, multi-file: 4 files)
- Install (CLI): `npx skillmds@latest add fabio-barboza/do-shared`
- Raw SKILL.md: https://api.skillmd.com/api/skills/fabio-barboza/do-shared/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Product & Planning
- Author: fabio-barboza (https://skillmd.com/u/fabio-barboza)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/fabio-barboza/do-shared

---


# Shared Resources

## Purpose
Centralizes references consumed by multiple `do-*` execution skills. Avoids duplication of the MCP capability registry and the discovery procedure across skills.

## Contents
- `references/do-mcp-capabilities.md`: Registry mapping each configured MCP server to its capabilities, tool prefix, runtime requirements, and unavailability handling.
- `references/do-mcp-discovery-instructions.md`: Standard procedure for discovering MCP servers in the active AI tool's configuration file and applying the capability guard.
- `references/do-service-readiness.md`: Standard procedure for checking, reusing, and starting services (frontend dev server, backend API, broker, database) before invoking MCP tools or E2E tests. Enforces "check first, reuse if running, start only when needed, never kill running services".

## Consumers
The following skills read these references at runtime:
- `do-execute-task`
- `do-execute-qa`
- `do-execute-qa-bugfix`
- `do-execute-review`

## Usage
This skill is **not user-invocable**. Other `do-*` skills cite the absolute path (e.g., `do-shared/references/do-mcp-capabilities.md`) when their procedure requires the registry or the discovery flow.

## Error Handling
- If a consumer skill cannot locate `do-shared/references/do-mcp-capabilities.md`, halt and report the missing dependency — do not fall back to hardcoded MCP assumptions.
- If a new MCP is configured by the user but absent from the registry, add an entry to `do-shared/references/do-mcp-capabilities.md` following the existing schema; no skill code needs to change.

## References
- MCP Registry: `do-shared/references/do-mcp-capabilities.md`
- MCP Discovery: `do-shared/references/do-mcp-discovery-instructions.md`
- Service Readiness: `do-shared/references/do-service-readiness.md`

