
Typed Service Contracts
- 354 installs
- 27k repo stars
- Updated July 27, 2026
- google-labs-code/design.md
typed-service-contracts is a TypeScript architecture skill that enforces the Spec and Handler pattern with Design by Contract parsing and Result-pattern errors for developers building CLIs, libraries, and type-safe servi
About
typed-service-contracts is a google-labs-code design.md skill defining Vertical Slice Architecture backed by Design by Contract principles for robust TypeScript services. Application logic is organized as Units of Work where inputs are parsed—not merely validated—and errors flow as Result values instead of thrown exceptions. The Spec and Handler pattern creates strict boundaries between user input and system logic, ideal for CLIs, libraries, and complex business modules in design.md projects. Developers reach for typed-service-contracts when API schemas, client-server types, and handler contracts must stay explicit and version-safe as features grow. The skill treats contracts as first-class artifacts so refactors surface breaking changes at compile time rather than runtime failures.
- Contract-first API design
- Typed request/response schemas
- Service boundary clarity
- Client-server type safety
- Versioned interface specs
Typed Service Contracts by the numbers
- 354 all-time installs (skills.sh)
- Ranked #1,186 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/google-labs-code/design.md --skill typed-service-contractsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 354 |
|---|---|
| repo stars | ★ 27k |
| Last updated | July 27, 2026 |
| Repository | google-labs-code/design.md ↗ |
How do you define type-safe TypeScript service contracts?
Define typed service contracts in design.md projects so API boundaries, schemas, and client-server types stay explicit and version-safe.
Who is it for?
TypeScript developers building CLIs, libraries, or multi-module backends who want Design by Contract boundaries with parse-not-validate inputs and explicit Result errors.
Skip if: Quick prototype scripts that intentionally skip typed boundaries or teams standardized on exception-throwing service layers without Result patterns.
When should I use this skill?
The user builds TypeScript CLIs, libraries, or services in a design.md project and needs Spec and Handler contracts with strict typed API boundaries.
What you get
Spec interfaces, Handler implementations, parsed input types, Result error values, and version-safe API boundary documentation for TypeScript services.
- Spec and Handler interface definitions
- Parsed input types with Result error flows
- Version-safe API boundary contracts
Files
Typed Service Contracts (Spec & Handler Pattern)
This skill defines a Vertical Slice Architecture backed by Design by Contract (DbC) principles. It treats application logic as rigorously defined Units of Work where inputs are parsed (not just validated) and errors are treated as values (Result Pattern) rather than exceptions.
When to use this skill
- Building CLIs or Libraries: When you need strict boundaries between user input and system logic.
- Complex Validation: When inputs require transformation (parsing) before being useful (e.g., ensuring a string is a valid file path).
- High-Reliability Requirements: When you cannot afford unhandled runtime exceptions and need exhaustive error handling.
- Testing Focus: When you want to separate data validation tests from business logic tests.
Architecture Components
1. The Spec (spec.ts)
The "Contract" or "Port". It defines the What. It must contain:
- Input Schema: A Zod schema that parses raw input into a valid DTO.
- Output Schema: A Zod schema defining the successful data structure.
- Error Schema: A discriminated union of specific failure modes (not generic errors).
- Result Type: A
DiscriminatedUnionofSuccess | Failure. - Interface: The capability definition (e.g.,
interface ConfigureSpec).
2. The Handler (handler.ts)
The "Implementation" or "Adapter". It defines the How. It must:
- Implement the Interface defined in the Spec.
- Be an "Impure" class that handles side effects (File System, API calls).
- NEVER throw exceptions. It must catch internal errors and map them to the
Resulttype.
---
How to use it
Step 1: Define the Contract (spec.ts)
Follow this template to define the boundaries.
import { z } from 'zod';
// 1. VALIDATION HELPERS (Reusable Refinements)
export const SafePathSchema = z.string()
.min(1)
.refine(p => !p.includes('..'), "No traversal allowed");
// 2. INPUT (The Command) - "Parse, don't validate"
export const MyTaskInputSchema = z.object({
path: SafePathSchema,
force: z.boolean().default(false),
});
export type MyTaskInput = z.infer<typeof MyTaskInputSchema>;
// 3. ERROR CODES (Exhaustive)
export const MyTaskErrorCode = z.enum([
'FILE_NOT_FOUND',
'PERMISSION_DENIED',
'UNKNOWN_ERROR'
]);
// 4. RESULT (The Monad)
export const MyTaskSuccess = z.object({
success: z.literal(true),
data: z.string(), // The output payload
});
export const MyTaskFailure = z.object({
success: z.literal(false),
error: z.object({
code: MyTaskErrorCode,
message: z.string(),
suggestion: z.string().optional(),
recoverable: z.boolean(),
})
});
export type MyTaskResult =
| z.infer<typeof MyTaskSuccess>
| z.infer<typeof MyTaskFailure>;
// 5. INTERFACE (The Capability)
export interface MyTaskSpec {
execute(input: MyTaskInput): Promise<MyTaskResult>;
}
Step 2: Implement the Handler (handler.ts)
Follow this template to implement the logic.
import { MyTaskSpec, MyTaskInput, MyTaskResult } from './spec.js';
import * as fs from 'fs';
export class MyTaskHandler implements MyTaskSpec {
async execute(input: MyTaskInput): Promise<MyTaskResult> {
try {
// 1. Business Logic
if (!fs.existsSync(input.path)) {
// 2. Explicit Error Return (No Throwing)
return {
success: false,
error: {
code: 'FILE_NOT_FOUND',
message: `Path does not exist: ${input.path}`,
recoverable: true
}
};
}
// 3. Success Return
return {
success: true,
data: 'Operation complete'
};
} catch (error) {
// 4. Safety Net: Catch unknown runtime errors
return {
success: false,
error: {
code: 'UNKNOWN_ERROR',
message: error instanceof Error ? error.message : String(error),
recoverable: false
}
};
}
}
}
Step 3: Testing Strategy
Do not write monolithic tests. Split them into Contract Tests and Logic Tests.
A. Contract Tests (Schema)
Test the Bouncer. Ensure invalid data is rejected before it reaches the handler.
- Focus: Edge cases, validation rules, Zod refinements.
- Style: Data-driven (Table tests).
// spec.test.ts
import { MyTaskInputSchema } from './spec';
const invalidCases = [
{ val: '../etc/passwd', err: 'No traversal allowed' },
{ val: '', err: 'min(1)' },
];
test.each(invalidCases)('validates paths', ({ val, err }) => {
const result = MyTaskInputSchema.safeParse({ path: val });
expect(result.success).toBe(false);
});
B. Logic Tests (Handler)
Test the Chef. Mock external dependencies (fs, network) and assert the Result Object.
- Focus: Business logic flow, error mapping, success states.
- Style: Mocked unit tests or Scenario Runners.
// handler.test.ts
import { MyTaskHandler } from './handler';
import { vi } from 'vitest'; // or jest
test('returns FILE_NOT_FOUND if path missing', async () => {
// MOCK
vi.mocked(fs.existsSync).mockReturnValue(false);
// EXECUTE
const handler = new MyTaskHandler();
const result = await handler.execute({ path: '/fake' });
// ASSERT (Check the Result Object)
expect(result.success).toBe(false);
if (!result.success) {
expect(result.error.code).toBe('FILE_NOT_FOUND');
}
});
Related skills
FAQ
What pattern does typed-service-contracts define?
typed-service-contracts defines the Spec and Handler pattern with Vertical Slice Architecture and Design by Contract parsing. TypeScript services treat logic as Units of Work with explicit input parsing and Result-pattern errors.
When should developers use typed-service-contracts?
typed-service-contracts fits building CLIs, libraries, or complex business logic in design.md projects where strict boundaries between user input and system logic must remain type-safe and version-stable.
How does typed-service-contracts handle errors?
typed-service-contracts instructs developers to treat errors as Result values returned from handlers instead of thrown exceptions, keeping service contract boundaries explicit and composable across TypeScript modules.