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

maven-search行家搜索

Agent Skill

用于辅助 Java 项目开发、面向对象设计、Spring 生态、Maven 或 Gradle 依赖和后端工程实践。它适合让 Agent 分析类结构、设计接口、整理服务分层、生成测试或检查常见代码坏味道。使用时需要结合项目已有架构、包结构和依赖版本,不应只按通用教程改代码;涉及数据库、事务、并发或框架配置时,应先确认运行环境和回归测试范围。

总安装

384

周安装

16

GitHub Stars

公开资料未说明

下载量

128
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add teachingai/agent-skills --skill "maven-search"

简介

辅助 Java 项目开发与设计,支持 Maven/Gradle 依赖管理。

  • 适用于后端开发、类结构设计和服务分层优化等任务。maven-search 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过 npx 从 GitHub 安装,支持主流 AI 编辑器集成。
  • 使用时需结合项目实际架构,避免盲目修改代码结构。
  • 建议参考原始技能文档了解支持的框架版本和最佳实践。

SKILL.md

When to use this skill

ALWAYS use this skill when the user mentions:

  • Searching for Maven dependencies or components
  • Finding Maven coordinates (groupId, artifactId, version)
  • Checking component versions or version history
  • Retrieving Maven artifacts (JAR, POM, sources, Javadoc)
  • Verifying Maven dependency coordinates
  • Analyzing dependency trees or transitive dependencies
  • Working with Maven Central Repository
  • Any request related to Maven components, libraries, or dependencies

Trigger phrases include:

  • "查找 Maven 依赖" (find Maven dependency), "搜索 Maven 组件" (search Maven component)
  • "Maven 坐标" (Maven coordinates), "groupId" (groupId), "artifactId" (artifactId)
  • "Maven 版本" (Maven version), "最新版本" (latest version), "版本历史" (version history)
  • "Maven Central" (Maven Central), "Maven 仓库" (Maven repository)
  • "下载 Maven 依赖" (download Maven dependency), "获取 POM 文件" (get POM file)
  • "依赖树" (dependency tree), "传递依赖" (transitive dependencies)
  • Any mention of "Maven", "dependency", "artifact", "repository", "coordinates"

How to use this skill

CRITICAL: This skill should be triggered when the user needs to search, retrieve, or work with Maven components from Maven Central Repository.

Trigger this skill when you see:

  • User says "查找 Maven 依赖" (find Maven dependency), "搜索 Maven 组件" (search Maven component)
  • User needs Maven coordinates (groupId, artifactId, version)
  • User wants to check component versions or retrieve artifacts
  • User mentions Maven Central Repository or Maven dependencies
  • User needs to analyze dependencies or verify coordinates

To search for Maven components:

  1. Identify the search type from the user's request:

- Search by name → Use Maven Central Search API - Get specific version → Use direct repository URL - Check latest version → Query maven-metadata.xml - Analyze dependencies → Parse POM file - Download artifact → Use direct download URL

  1. Load the appropriate example file from the examples/ directory:

- examples/search-by-name.md - Search components by name or keywords - examples/search-by-coordinates.md - Search by groupId and artifactId - examples/get-version-info.md - Get version information and history - examples/download-artifact.md - Download JAR, POM, sources, or Javadoc - examples/analyze-dependencies.md - Analyze dependency tree - examples/verify-coordinates.md - Verify Maven coordinates validity

  1. Follow the specific instructions in that example file for API endpoints, parameters, and best practices
  2. Use Maven Central Repository API: Search API (https://search.maven.org/solrsearch/select): Direct Repository Access (https://repo1.maven.org/maven2/):

- Query parameter: q - Search query (e.g., g:com.google.guava AND a:guava) - Rows parameter: rows - Number of results (default: 20, max: 200) - Start parameter: start - Pagination offset - Core parameter: core - Search core (default: gav) - Path format: {groupId}/{artifactId}/{version}/{artifactId}-{version}.{extension} - GroupId path: Replace dots with slashes (e.g., com.google.guavacom/google/guava) - Metadata: maven-metadata.xml for version information - POM file: {artifactId}-{version}.pom - JAR file: {artifactId}-{version}.jar - Sources: {artifactId}-{version}-sources.jar - Javadoc: {artifactId}-{version}-javadoc.jar

  1. Construct the appropriate URL: Search Example: https://search.maven.org/solrsearch/select?q=g:com.google.guava+AND+a:guava&rows=20&wt=json Direct Access Example: https://repo1.maven.org/maven2/com/google/guava/guava/maven-metadata.xml https://repo1.maven.org/maven2/com/google/guava/guava/33.0.0/guava-33.0.0.pom https://repo1.maven.org/maven2/com/google/guava/guava/33.0.0/guava-33.0.0.jar
  2. Parse and format the results:

- Extract relevant information (groupId, artifactId, version, description) - Format coordinates in standard Maven format: groupId:artifactId:version - Present results in a clear, structured format - Include download links and metadata when relevant

  1. Validate coordinates:

- Verify groupId format (should be reverse domain notation) - Check artifactId format (should be lowercase, hyphen-separated) - Validate version format (semantic versioning preferred) - Confirm artifact exists before providing download links

Output Format Requirements:

  • Always provide Maven coordinates in standard format: groupId:artifactId:version
  • Include direct download URLs when relevant
  • Format search results in a clear, structured table or list
  • Provide metadata information (description, repository, last updated) when available
  • Include version information and release dates when querying versions

Maven Central Repository Structure

Repository Base URL

Path Structure

{groupId}/{artifactId}/{version}/{artifactId}-{version}.{extension}

Example:

com/google/guava/guava/33.0.0/guava-33.0.0.jar

Available Artifacts

  • POM: {artifactId}-{version}.pom - Project Object Model file
  • JAR: {artifactId}-{version}.jar - Compiled Java classes
  • Sources: {artifactId}-{version}-sources.jar - Source code
  • Javadoc: {artifactId}-{version}-javadoc.jar - API documentation
  • Metadata: maven-metadata.xml - Version and release information

Search API Parameters

Query Syntax

  • GroupId search: g:com.google.guava
  • ArtifactId search: a:guava
  • Version search: v:33.0.0
  • Combined search: g:com.google.guava AND a:guava
  • Text search: guava (searches in groupId, artifactId, and description)

Response Format

  • JSON: wt=json (default)
  • XML: wt=xml
  • Java properties: wt=javabin

Pagination

  • rows: Number of results per page (default: 20, max: 200)
  • start: Offset for pagination (default: 0)

Best Practices

  1. Always verify coordinates: Check that groupId, artifactId, and version exist before use
  2. Use latest stable versions: Prefer RELEASE versions over SNAPSHOT versions
  3. Check version metadata: Query maven-metadata.xml for latest version information
  4. Validate before download: Verify artifact exists before providing download links
  5. Include checksums: When available, provide SHA-1 and MD5 checksums for verification
  6. Format coordinates correctly: Always use standard Maven format groupId:artifactId:version
  7. Provide context: Include description, repository information, and last updated date when available

Common Tasks

Task 1: Search by Name

Use the Search API with text query to find components by name or keywords.

Example:

GET https://search.maven.org/solrsearch/select?q=guava&rows=20&wt=json

Task 2: Search by Coordinates

Use the Search API with groupId and artifactId to find specific components.

Example:

GET https://search.maven.org/solrsearch/select?q=g:com.google.guava+AND+a:guava&rows=20&wt=json

Task 3: Get Version Information

Query maven-metadata.xml to get all available versions and latest version.

Example:

GET https://repo1.maven.org/maven2/com/google/guava/guava/maven-metadata.xml

Task 4: Download Artifact

Construct direct download URL for specific artifact.

Example:

GET https://repo1.maven.org/maven2/com/google/guava/guava/33.0.0/guava-33.0.0.jar

Task 5: Analyze Dependencies

Download and parse POM file to extract dependency information.

Example:

GET https://repo1.maven.org/maven2/com/google/guava/guava/33.0.0/guava-33.0.0.pom

Keywords

English keywords: maven, maven central, maven repository, maven dependency, maven artifact, maven component, groupId, artifactId, version, coordinates, pom, jar, dependency, repository, search, retrieve, download, metadata, transitive dependencies, dependency tree, maven coordinates, maven search

Chinese keywords (中文关键词): Maven, Maven 中央仓库, Maven 仓库, Maven 依赖, Maven 组件, Maven 坐标, groupId, artifactId, version, 版本, 坐标, POM, JAR, 依赖, 仓库, 搜索, 检索, 下载, 元数据, 传递依赖, 依赖树, 查找依赖, 搜索组件, 获取版本, 下载依赖

Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

31.43%
按下载量换算40

OpenCode

21.79%
按下载量换算28

Antigravity

17.02%
按下载量换算22

Codex

13.04%
按下载量换算17

windsurf

7.67%
按下载量换算10

Gemini CLI

3.36%
按下载量换算4

安全审计

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

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills