Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

http-generatehttp 生成

Agent Skill

http-generate 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

272

周安装

11

GitHub Stars

公开资料未说明

下载量

85
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add spring-ai-alibaba/examples --skill "http-generate"

简介

发现并安装 AI 代理技能的通用搜索工具。

  • 适用于在主流 AI 平台扩展 Agent 功能集。
  • 通过关键词匹配推荐可用技能模块。http-generate 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 依赖 npx 命令安装,注意宿主环境支持情况。
  • 建议查看原始仓库获取技能清单与使用示例。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

HTTP Generator

This skill automatically analyzes Spring Boot Web controllers and generates HTTP request examples for all REST endpoints, saving them as .http files in their respective module directories according to the task specification.

When to Use

Use this skill when you need to:

  • Generate API documentation for testing
  • Create HTTP request examples for new modules
  • Document existing Spring Boot REST controllers
  • Provide ready-to-use request samples for developers
  • Automate API testing setup
  • Create interface specifications for team collaboration

How to Use

Generate HTTP Requests for a Single Module

Execute the HTTP generator script to create request examples for all controllers in a module:

python .claude/skills/http-generate/scripts/http_generator.py <module_path> [output_file]

Generate HTTP Requests for All Modules

Use the all parameter to automatically discover and generate HTTP files for all modules with controllers:

python .claude/skills/http-generate/scripts/http_generator.py all

Parameters:

  • module_path (required): Path to the Spring Boot module directory, or all to process all modules
  • output_file (optional): Custom output file path (default: {module_name}.http)

Examples:

# Generate for chat module-generate.md (creates basic/chat/chat.http)
python .claude/skills/http-generate/scripts/http_generator.py basic/chat

# Generate for all modules automatically
python .claude/skills/http-generate/scripts/http_generator.py all

# Generate for graph module-generate.md (creates graph/graph.http)
python .claude/skills/http-generate/scripts/http_generator.py graph/parallel

# Generate with custom output file
python .claude/skills/http-generate/scripts/http_generator.py basic/chat custom-api.http

# Generate for different modules
python .claude/skills/http-generate/scripts/http_generator.py basic/tool
python .claude/skills/http-generate/scripts/http_generator.py basic/image
python .claude/skills/http-generate/scripts/http_generator.py graph/stream

Supported Controller Patterns

The skill automatically detects and generates requests for:

HTTP Methods

  • GET @GetMapping - Query operations
  • POST @PostMapping - Create operations
  • PUT @PutMapping - Update operations
  • DELETE @DeleteMapping - Delete operations

Parameter Types

  • @RequestParam with default values
  • @RequestParam without default values
  • @PathVariable for path parameters
  • URL encoding for Chinese characters and special values

Controller Annotations

  • @RestController - JSON API endpoints
  • @Controller - MVC controllers
  • @RequestMapping - Base path mapping

Output Format (Task Specification)

The skill generates .http files according to the task specification format:

Basic Format

# {Controller类名}的{方法名}方法
{HTTP_METHOD} {完整URL路径}?{参数键值对}

###
# {Controller类名}的{方法名}方法
{HTTP_METHOD} {完整URL路径}?{参数键值对}

Generated Example

# ChatController类的callChat方法
GET http://localhost:8080/basic/chat/call?query=你好,很高兴认识你,能简单介绍一下自己吗?

###
# ChatController类的streamChat方法
GET http://localhost:8080/basic/chat/stream?query=你好,很高兴认识你,能简单介绍一下自己吗?

###
# ChatController类的callOption方法
GET http://localhost:8080/basic/chat/call/option?query=你好,很高兴认识你,能简单介绍一下自己吗?

Generated Request Features

Each generated HTTP request includes:

  • Method Documentation: Comment format # Controller类名的方法名方法
  • Complete URL: Full endpoint URL with base path
  • Default Parameters: All @RequestParam values with defaults
  • Proper Encoding: URL encoding for Chinese characters
  • Query String: Properly formatted parameter strings with ? and &
  • Separators: ### used to separate different interfaces
  • File Organization: Grouped by controller and module

Module Discovery

The skill automatically:

  1. Discovers Modules: Scans project directories for modules containing controllers
  2. Identifies Controllers: Files ending with Controller.java
  3. Analyzes Annotations: Extracts mapping annotations
  4. Extracts Parameters: Finds @RequestParam configurations
  5. Builds URLs: Constructs complete request URLs
  6. Generates Examples: Creates ready-to-use HTTP requests

Supported Spring Boot Patterns

Example 1: Simple GET Controller

@RestController
@RequestMapping("/basic/chat")
public class ChatController {

    @GetMapping("/call")
    public String callChat(
        @RequestParam(value = "query",
                    defaultValue = "你好,很高兴认识你,能简单介绍一下自己吗?",
                    required = false) String query) {
        return chatClient.prompt(query).call().content();
    }
}

Generated Request:

# ChatController类的callChat方法
GET http://localhost:8080/basic/chat/call?query=你好,很高兴认识你,能简单介绍一下自己吗?

Example 2: Complex Parameters

@GetMapping("/expand-translate")
public Map<String, Object> expandAndTranslate(
        @RequestParam(value = "query", defaultValue = "你好", required = false) String query,
        @RequestParam(value = "expander_number", defaultValue = "3", required = false) Integer expanderNumber,
        @RequestParam(value = "translate_language", defaultValue = "english", required = false) String translateLanguage) {
    // implementation
}

Generated Request:

# ParallelController类的expandAndTranslate方法
GET http://localhost:8080/graph/parallel/expand-translate?query=你好&expander_number=3&translate_language=english

Example 3: Multiple Controllers

For modules with multiple controllers, the skill generates requests for all with ### separators:

# TimeController类的call方法
GET http://localhost:8080/basic/tool/time/call?query=请告诉我现在北京时间几点了

###
# TimeController类的callToolFunction方法
GET http://localhost:8080/basic/tool/time/call/function?query=请告诉我现在北京时间几点了

###
# SearchController类的search方法
GET http://localhost:8080/basic/tool/search?query=Spring+AI

File Organization (Task Specification)

Output Location

  • Default: {module_name}/{module_name}.http
  • File Naming: Uses module name as filename (e.g., chat.http, tool.http)
  • Custom: User-specified path
  • Encoding: UTF-8 for Chinese characters

Directory Structure Example

basic/
├── chat/
│   ├── chat.http          ← Generated file
│   └── src/main/java/.../ChatController.java
├── tool/
│   ├── tool.http          ← Generated file
│   └── src/main/java/.../TimeController.java
└── image/
    ├── image.http         ← Generated file
    └── src/main/java/.../ImageController.java

Task Specification Compliance

The generated files strictly follow the task specification:

  1. 文件命名: 以模块名称命名,使用 .http 后缀 ✅
  2. 文件位置: 放置在对应模块的根目录下 ✅
  3. 内容来源: 基于 Controller 类中的接口方法生成 ✅
  4. 注释格式: 使用 # Controller类名的方法名方法
  5. 分隔符: 使用 ### 分隔不同接口 ✅
  6. 参数处理: 正确处理查询参数拼接 ✅

Integration with Development Workflow

Use with IDE HTTP Client

The generated .http files work seamlessly with:

  • IntelliJ IDEA HTTP Client
  • VS Code REST Client
  • Postman Import
  • curl commands

Automated Documentation

Perfect for:

  • API documentation generation
  • Testing automation
  • Developer onboarding
  • Contract testing
  • Integration testing setup

Customization Options

Modify Script Behavior

Edit scripts/http_generator.py to customize:

  • Base URL: Change from http://localhost:8080
  • Output Format: Modify request template according to specification
  • Parameter Handling: Add support for other annotations
  • File Patterns: Change controller detection logic
  • Encoding: Adjust URL encoding rules

Extend Functionality

Add support for:

  • POST body parameters
  • Header handling
  • Authentication headers
  • Multi-parameter requests
  • File upload examples

Notes

  • The script automatically discovers all modules with controllers when using all parameter
  • Only processes files ending with Controller.java
  • Supports UTF-8 encoding for Chinese parameters
  • Requires Python 3 and no external dependencies
  • Handles complex Spring Boot annotation patterns
  • Preserves parameter defaults from source code
  • Groups requests by controller for clarity
  • Follows task specification format exactly

Error Handling

Common issues and solutions:

  • No controllers found: Ensure module contains *Controller.java files
  • Missing @RequestMapping: Controllers without base mapping will use root path
  • Complex parameters: Some advanced parameter types may need manual adjustment
  • Encoding issues: Chinese characters are automatically URL-encoded
  • Module discovery: Use all parameter to auto-discover modules with controllers

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

kilo

30.3%
按下载量换算26

OpenCode

26.15%
按下载量换算22

Claude Code

18.28%
按下载量换算16

cline

13.21%
按下载量换算11

qoder

7.04%
按下载量换算6

Cursor

3.62%
按下载量换算3

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills