Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计通过

customize-sdk-hookscustomize SDK hooks 命令行

Agent Skill

customize-sdk-hooks 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,018

周安装

42

GitHub Stars

13

下载量

333
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:customize-sdk-hooks(customize SDK hooks 命令行)
来源仓库:https://github.com/speakeasy-api/skills
仓库路径:skills/customize-sdk-hooks
安装命令:
npx skills add https://github.com/speakeasy-api/skills --skill customize-sdk-hooks
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/speakeasy-api/skills --skill customize-sdk-hooks

简介

为生成式 SDK 添加请求拦截逻辑,如自定义头部、HMAC 签名或遥测埋点。

  • 适用于在 SDK 层面统一注入 User-Agent、关联 ID 或认证 token refresh 逻辑。
  • 不支持 OpenAPI 规范修改,仅限运行时中间件级别的代码增强。
  • 实现时应避免阻塞主线程,并为错误处理预留降级通道保证接口可用性。
  • customize-sdk-hooks 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Customize SDK Hooks

When to Use

Use this skill when you need to add custom code logic to the generated SDK:

  • Add custom headers (User-Agent, correlation IDs) to every SDK request via code
  • Implement telemetry, logging, or observability at the SDK level
  • Add custom authentication logic (HMAC signatures, token refresh) that runs in SDK code
  • Transform responses or errors before they reach the caller
  • Implement custom request/response middleware
  • User says: "SDK hooks", "add custom logic", "intercept requests with code", "HMAC signing hook", "telemetry in SDK"

NOT for:

  • OpenAPI spec modifications (see manage-openapi-overlays)
  • Runtime SDK client config (see configure-sdk-options)

Inputs

  • Hook type: Which lifecycle event to intercept (init, before request, after success, after error)
  • SDK language: The target language of the generated SDK (TypeScript, Go, Python, Java, C#, Ruby, PHP, etc.)
  • Custom logic: The behavior to inject at the hook point

Outputs

  • Hook implementation file(s) in src/hooks/ (or language equivalent)
  • Updated src/hooks/registration.ts to register the new hook
  • The hook is preserved across SDK regenerations

Prerequisites

  • A Speakeasy-generated SDK (any supported language)
  • Understanding of the SDK's request/response lifecycle
  • The src/hooks/ directory exists in the generated SDK (created by default)

Hook Types

HookWhen CalledCommon Use Cases
SDKInitHookSDK client initializationConfigure defaults, validate config, set base URL
BeforeCreateRequestHookBefore the HTTP request object is createdModify input parameters, inject defaults
BeforeRequestHookBefore the HTTP request is sentAdd headers, logging, telemetry, sign requests
AfterSuccessHookAfter a successful HTTP responseTransform response, emit warnings, log metrics
AfterErrorHookAfter an HTTP error responseError transformation, retry logic, error logging

Hook Interfaces (TypeScript)

// SDKInitHook
interface SDKInitHook {
  sdkInit(opts: SDKInitOptions): SDKInitOptions;
}

// BeforeCreateRequestHook
interface BeforeCreateRequestHook {
  beforeCreateRequest(hookCtx: BeforeCreateRequestHookContext, input: any): any;
}

// BeforeRequestHook
interface BeforeRequestHook {
  beforeRequest(
    hookCtx: BeforeRequestHookContext,
    request: Request
  ): Request;
}

// AfterSuccessHook
interface AfterSuccessHook {
  afterSuccess(
    hookCtx: AfterSuccessHookContext,
    response: Response
  ): Response;
}

// AfterErrorHook
interface AfterErrorHook {
  afterError(
    hookCtx: AfterErrorHookContext,
    response: Response | null,
    error: unknown
  ): { response: Response | null; error: unknown };
}

Directory Structure

src/
  hooks/
    types.ts          # Generated - DO NOT EDIT (hook interfaces/types)
    registration.ts   # Custom - YOUR registrations (preserved on regen)
    custom_useragent.ts   # Custom - your hook implementations
    telemetry.ts          # Custom - your hook implementations

Key rule: registration.ts and any custom hook files you create are preserved during SDK regeneration. The types.ts file is regenerated and should not be modified.

Registration Pattern

All hooks are registered in src/hooks/registration.ts. This file is created once by the generator and never overwritten. You add your hooks here:

// src/hooks/registration.ts
import { Hooks } from "./types.js";
import { CustomUserAgentHook } from "./custom_useragent.js";
import { TelemetryHook } from "./telemetry.js";

/*
 * This file is only ever generated once on the first generation and then is free
 * to be modified. Any hooks you wish to add should be registered in the
 * initHooks function. Feel free to define them in this file or in separate files
 * in the hooks folder.
 */

export function initHooks(hooks: Hooks) {
  hooks.registerBeforeRequestHook(new CustomUserAgentHook());
  hooks.registerAfterSuccessHook(new TelemetryHook());
}

Command

To add a hook to a Speakeasy-generated SDK:

  1. Create your hook implementation file in src/hooks/
  2. Implement the appropriate interface from src/hooks/types.ts
  3. Register it in src/hooks/registration.ts
  4. Regenerate the SDK -- your hooks are preserved
# After adding hooks, regenerate safely
speakeasy generate sdk -s openapi.yaml -o . -l typescript
# Your registration.ts and custom hook files are untouched

Examples

Example 1: Custom User-Agent Hook

Add a custom User-Agent header to every outgoing request.

// src/hooks/custom_useragent.ts
import {
  BeforeRequestHook,
  BeforeRequestHookContext,
} from "./types.js";

export class CustomUserAgentHook implements BeforeRequestHook {
  private userAgent: string;

  constructor(appName: string, appVersion: string) {
    this.userAgent = `${appName}/${appVersion}`;
  }

  beforeRequest(
    hookCtx: BeforeRequestHookContext,
    request: Request
  ): Request {
    // Clone the request to add the custom header
    const newRequest = new Request(request, {
      headers: new Headers(request.headers),
    });
    newRequest.headers.set("User-Agent", this.userAgent);

    // Optionally append the existing User-Agent
    const existing = request.headers.get("User-Agent");
    if (existing) {
      newRequest.headers.set(
        "User-Agent",
        `${this.userAgent} ${existing}`
      );
    }

    return newRequest;
  }
}

Register it:

// src/hooks/registration.ts
import { Hooks } from "./types.js";
import { CustomUserAgentHook } from "./custom_useragent.js";

export function initHooks(hooks: Hooks) {
  hooks.registerBeforeRequestHook(
    new CustomUserAgentHook("my-app", "1.0.0")
  );
}

Example 2: Custom Security Hook (HMAC Signing)

For APIs requiring HMAC signatures or custom authentication that cannot be expressed in the OpenAPI spec, combine an overlay with a BeforeRequestHook.

Step 1: Use an overlay to mark the security scheme so Speakeasy generates the hook point:

# overlay.yaml
overlay: 1.0.0
info:
  title: Add HMAC security
actions:
  - target: "$.components.securitySchemes"
    update:
      hmac_auth:
        type: http
        scheme: custom
        x-speakeasy-custom-security: true

Step 2: Implement the signing hook:

// src/hooks/hmac_signing.ts
import {
  BeforeRequestHook,
  BeforeRequestHookContext,
} from "./types.js";
import { createHmac } from "crypto";

export class HmacSigningHook implements BeforeRequestHook {
  beforeRequest(
    hookCtx: BeforeRequestHookContext,
    request: Request
  ): Request {
    const timestamp = Date.now().toString();
    const secret = hookCtx.securitySource?.apiSecret;
    if (!secret) {
      throw new Error("API secret is required for HMAC signing");
    }

    const signature = createHmac("sha256", secret)
      .update(`${request.method}:${request.url}:${timestamp}`)
      .digest("hex");

    const newRequest = new Request(request, {
      headers: new Headers(request.headers),
    });
    newRequest.headers.set("X-Timestamp", timestamp);
    newRequest.headers.set("X-Signature", signature);

    return newRequest;
  }
}

Register it:

// src/hooks/registration.ts
import { Hooks } from "./types.js";
import { HmacSigningHook } from "./hmac_signing.js";

export function initHooks(hooks: Hooks) {
  hooks.registerBeforeRequestHook(new HmacSigningHook());
}

Best Practices

  1. Keep hooks focused: Each hook should address a single concern. Use separate hooks for user-agent, telemetry, and auth rather than one monolithic hook.
  2. Clone responses before reading the body: The Response.body stream can only be consumed once. Always clone before reading: afterSuccess(hookCtx: AfterSuccessHookContext, response: Response): Response {// CORRECT: clone before reading const cloned = response.clone(); cloned.json().then((data) => console.log("Response:", data)); return response; // return the original, unconsumed}
  3. Fire-and-forget for telemetry: Do not block the request pipeline for non-critical operations like logging or metrics: beforeRequest(hookCtx: BeforeRequestHookContext, request: Request): Request {// Fire-and-forget: do not await void fetch("https://telemetry.example.com/events", {method: "POST", body: JSON.stringify({operation: hookCtx.operationID}),}); return request;}
  4. Test hooks independently: Write unit tests for hooks in isolation by constructing mock Request/Response objects and hook contexts.
  5. Use hookCtx.operationID: The hook context provides the current operation ID, which is useful for per-operation behavior, logging, and metrics.

What NOT to Do

  • Do NOT edit types.ts: This file is regenerated. Your changes will be lost.
  • Do NOT consume the response body without cloning: This causes downstream failures because the body stream is exhausted.
  • Do NOT perform blocking I/O in hooks: Long-running operations (network calls, file I/O) in hooks will degrade SDK performance. Use fire-and-forget patterns for non-critical work.
  • Do NOT throw errors in AfterSuccessHook unless you intend to convert a success into a failure. Throwing in hooks disrupts the normal flow.
  • Do NOT store mutable shared state in hooks without synchronization. Hooks may be called concurrently in multi-threaded environments.
  • Do NOT duplicate logic that belongs in an OpenAPI overlay. If you need to modify the API spec (add security schemes, change parameters), use an overlay instead of a hook.

Troubleshooting

Hook is not being called

  • Verify the hook is registered in src/hooks/registration.ts
  • Confirm you are registering for the correct hook type (e.g., registerBeforeRequestHook vs registerAfterSuccessHook)
  • Check that initHooks is exported and follows the expected signature

Response body is empty or already consumed

  • You are reading response.body or calling response.json() without cloning first
  • Always use response.clone() before consuming the body, then return the original

Hooks lost after regeneration

  • Custom hook files in src/hooks/ are preserved, but only if they are separate files
  • registration.ts is never overwritten after initial generation
  • types.ts IS overwritten -- never put custom code there

TypeScript compilation errors after regeneration

  • types.ts may have updated interfaces. Check for breaking changes in hook signatures
  • Update your hook implementations to match the new interface definitions

Hook causes request failures

  • Ensure you are returning a valid Request or Response object
  • Check that cloned requests preserve the original body and headers
  • Verify any injected headers have valid values (no undefined or null)

Other Languages

While the examples above are in TypeScript, Speakeasy SDK hooks are available across all supported languages:

  • Go: Hooks implement interfaces in hooks/hooks.go with registration in hooks/registration.go
  • Python: Hooks are classes in src/hooks/ implementing protocols from src/hooks/types.py
  • Java: Hooks implement interfaces from hooks/SDKHooks.java
  • C#: Hooks implement interfaces from Hooks/SDKHooks.cs
  • Ruby: Hooks use Sorbet-typed classes with Faraday middleware patterns
  • PHP: Hooks use PSR-7 request/response interfaces with Guzzle middleware

The hook types, lifecycle, and registration pattern are consistent across all languages. Refer to the generated types file in your SDK for language-specific interface definitions.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

40.04%
按下载量换算133

Claude

27.43%
按下载量换算91

Cursor

18.45%
按下载量换算61

Gemini CLI

8.68%
按下载量换算29

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills