by wb04307201
A Spring Boot auto-configuration library that injects RAG knowledge base, MCP tool calling, and Skill library into Spring AI applications with an out-of-the-box chat UI.
# Add to your Claude Code skills
git clone https://github.com/wb04307201/spring-ai-loom-agentGuides for using ai agents skills like spring-ai-loom-agent.
Last scanned: 8/23/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-08-23T04:35:17.236Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}spring-ai-loom-agent is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by wb04307201. A Spring Boot auto-configuration library that injects RAG knowledge base, MCP tool calling, and Skill library into Spring AI applications with an out-of-the-box chat UI. It has 274 GitHub stars.
Yes. spring-ai-loom-agent passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/wb04307201/spring-ai-loom-agent" and add it to your Claude Code skills directory (see the Installation section above).
spring-ai-loom-agent is primarily written in Java. It is open-source under wb04307201 on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh spring-ai-loom-agent against similar tools.
No comments yet. Be the first to share your thoughts!
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
Spring Boot AI Agent — an out-of-the-box solution that makes your app converse, remember, think, and act.
6 Pillars: 💬 Chat · Knowledge · 📁 Files · 🔧 MCP · 🧠 Skill · 🛡 RBAC Platform: 🧠 Skill Market · Knowledge Market · 🎛 Admin Console Advanced: 🧩 Sub-tasks · ⏰ Scheduled tasks · 🖼 Multimodal — one dependency, batteries included.
market_skill_id is set; admin only edits / pulls (no creation); no version field. Skills call MCP via @tool_name. Frontend chat input supports / picker for precise skill selection.@ConditionalOnMissingBean, Flyway migrations, broad chat / embedding / vector-store supportAll tools follow the interface + default implementation pattern. Every component is registered with @ConditionalOnMissingBean, allowing consumers to replace any piece with a custom implementation.
| Tool | Interface | Methods | Default | Config Property |
|---|---|---|---|---|
| Time | ITimeTool |
2 | ✅ enabled | time.enabled |
| File | IFileTool |
16 | ✅ enabled | file.enabled |
| Skill | ISkillTool |
3 | ✅ enabled | skill.enabled |
| Knowledge | IKnowledgeTool |
1 | ✅ enabled | knowledge.enabled |
| Sub-task | ISubTaskTool |
4 | ✅ enabled | subtask.enabled |
| Schedule | IScheduleTool |
4 | ✅ enabled | schedule.enabled |
| Git | IGitTool |
28 | ❌ disabled | git.enabled |
| Maven | IMavenTool |
6 | ❌ disabled | maven.enabled |
| Compile & Deploy | ICompileAndDeployTool |
1 | ✅ enabled | compile.enabled |
For full @Tool method signatures, parameter details, and configuration reference, see TOOLS.md.


File, Git, Maven, and Compile each have a standalone MCP server module — the core layer has no Spring dependency and can be deployed via jbang to any MCP-compatible agent (Claude Desktop, Cursor, etc.):
| MCP Server | Description | README |
|---|---|---|
loom-file-mcp |
File system operations — read, write, edit, search, directory browsing, delete (14 tools) | EN · 中文 |
loom-git-mcp |
Git operations via JGit — clone, commit, push, merge, rebase, and more (14 tools) | EN · 中文 |
loom-maven-mcp |
Maven build operations — execute, build, package, test, dependency tree, validate (6 tools) | EN · 中文 |
loom-compile-mcp |
End-to-end deploy pipeline — git clone → build → docker build → docker run → health check (1 tool) | EN · 中文 |
<dependency>
<groupId>io.github.wb04307201</groupId>
<artifactId>spring-ai-loom-agent-spring-boot-starter</artifactId>
<version>1.1.39</version>
</dependency>
The test application uses Alibaba's Qwen (DashScope) via Spring AI Alibaba. Swap the dependency and config for any other provider:
<dependency>
<groupId>com.alibaba.cloud.ai</groupId>
<artifactId>spring-ai-alibaba-starter-dashscope</artifactId>
<version>1.1.2.3</version>
</dependency>
spring:
ai:
dashscope:
api-key: ${DASHSCOPE_API_KEY}
chat:
options:
model: qwen3.7-plus
multi_model: true
enable_thinking: true
Note: For document-based Q&A, ensure the model supports multimodal input (e.g.,
multi_model: true). Document content is injected via System Prompt.
Visit http://localhost:8080/spring/ai/loom


Click the + button next to the input field to upload images or documents. After uploading, type your question and send it.
PDF, DOCX, XLSX, PPTX, MD, TXT, HTML, CSV, RTF, and more.
Uploaded and generated files can get download links via MCP tool downloadFileUrl, or preview links via MCP tool viewFileUrl. Files and directories can be removed via MCP tool deleteFileOrDirectory (requires explicit I_CONFIRM_DELETE confirmation — token configurable via spring.ai.loom.agent.file.deleteConfirmToken, supports recursive directory removal, and cleans up temporary file_info records).
The "File" entry provides unified browsing, previewing, downloading, and deleting for all non-knowledge-base files (including tool uploads and git repositories).
The following example uses Qdrant as the vector store. Add the dependency:
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-starter-vector-store-qdrant</artifactId>
</dependency>
Add configuration:
spring:
ai:
vectorstore:
qdrant:
host: localhost
port: 6334
collection-name: qwen-collection-name
Optional RAG configuration:
spring:
ai:
loom:
agent:
rag:
similarityThreshold: 0.50 # Similarity threshold, default 0.0
top-k: 4 # Top-k results, default 4
Taking the time MCP service as an example, add the dependency:
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-starter-mcp-client</artifactId>
</dependency>
Add configuration:
spring:
ai:
mcp:
client:
stdio:
servers-configuration: classpath:mcp-servers.json
mcp-servers.json:
{
"mcpServers": {
"time": {
"command": "uvx",
"args": [
"mcp-server-time",
"--local-timezone=Asia/Shanghai"
]
}
}
}
The MCP button opens a panel showing available services:


Add Chinese labels and descriptions for tools via configuration:
spring:
ai:
loom:
agent:
mcps:
- name: spring-ai-mcp-client - time
title: Time
description:
A Model Context Protocol service that provides time and timezone conversion functionality. This service enables
large language models to obtain current time information and perform timezone conversions using IANA timezone names,
with autom