h4tcher-adapter-author

Implement hatch3r platform adapters with BaseAdapter methods and D09 checklist validation.

26|4|Updated Feb 27, 2026
One-click install
npx skills add https://github.com/hatch3r/hatch3r --skill h4tcher-adapter-author
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: h4tcher-adapter-author
Source: https://github.com/hatch3r/hatch3r/tree/main/.claude/skills/h4tcher-adapter-author
Command: npx skills add https://github.com/hatch3r/hatch3r --skill h4tcher-adapter-author

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps you create or update a hatch3r platform adapter that reliably generates the correct files, integrates MCP configuration, and passes the required D09 verification checklist.

Core Features & Use Cases

  • Adapter contract implementation: Guides you to implement BaseAdapter methods like doGenerate() and getOutputPaths() and to follow canonical reading, customization, and MCP transformation flows.
  • Platform documentation-driven accuracy: Directs web research to ensure you match each target platform’s configuration formats, capability support, hooks/events, and model syntax, with version/date citation.
  • Reference-based engineering and verification: Recommends studying existing adapters and running adapter validation plus D09 checklist verification to confirm output paths, format, feature flags, bridge orchestration, MCP handling, secrets, and hooks.

Quick Start

Ask the AI to write a new hatch3r adapter named {name} by researching the target platform, implementing src/adapters/{name}.ts, wiring it into src/adapters/index.ts, and adding src/__tests__/adapters/{name}.test.ts before running npx hatch3r validate.

Frequently Asked Questions about h4tcher-adapter-author

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build a platform adapter that correctly generates agent configuration and MCP integration?

To build a platform adapter, implement BaseAdapter contract methods like doGenerate() to emit agents, skills, rules, commands, hooks, and MCP configuration using merge-safe managed blocks. This ensures your adapter meets the required platform fidelity and passes verification.

What is the best way to ensure my coding-agent platform adapter matches target platform specifications?

The best way to ensure platform adapter accuracy is conducting web research to match configuration formats, capability support, hooks, and model syntax with version citations. This documentation-driven approach guarantees your adapter reflects the target platform accurately.

Can I use web research to drive fidelity when creating platform adapters for agent orchestration?

Yes, you can use web research to drive platform adapter fidelity by directing research to match each target platform's configuration formats, capability support, and model syntax. This ensures your agent orchestration code adheres to platform-specific rules.

How do I wire a new adapter into an existing platform adapter index file?

To wire a new adapter, implement src/adapters/{name}.ts, register adapter capabilities, and import it into src/adapters/index.ts. You must also add src/__tests__/adapters/{name}.test.ts before running npx hatch3r validate to ensure proper integration.

Why does my platform adapter fail D09 verification during code generation?

Platform adapter D09 verification fails when output paths, MCP transformation formats, or feature flags do not match the target platform's requirements. Study existing reference adapters and validate your BaseAdapter contract methods to resolve checklist discrepancies.