LaunchKit · 2026
Back to Skills

delegation

Architecture-first workflow for delegating complex projects to AI coding agents.

2
1.1k downloads
by @michaelmonetized

Setup & Installation

openclaw skills install @michaelmonetized/delegation

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install delegation

What This Skill Does

Architecture-first workflow for delegating complex projects to AI coding agents. Every code change is analyzed against the system architecture before being written, with explicit filepath declarations, dependency mapping, and conflict checks built into the response format.

Forces AI agents to declare intent and validate fit before generating code, reducing the need to refactor or revert changes that violate existing architecture.

When to use it

  • Adding a new API endpoint without breaking existing module contracts
  • Onboarding an AI agent to a large unfamiliar codebase
  • Generating production-ready code that matches existing naming conventions
  • Catching duplicate functionality before it gets committed
  • Ensuring new features stay within their intended architectural layer

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Add a user preferences service to the backend

AGENT
  1. 1Reads architecture document to locate where a preferences service belongs
  2. 2Declares target filepath and one-line purpose
  3. 3Lists all imports the new service depends on and which modules will consume it
  4. 4Checks for existing services that might duplicate this functionality
  5. 5Outputs fully typed, production-ready code with error handling and matching test filepath
OUTPUT

A preferences service file with explicit architecture analysis, typed implementation, test location, and a checklist confirming no linter, type, or architectural violations