spring-ai-community

Agent Client Tutorial — Git skill for Claude Code

Git community

No longer maintained — active development moved to https://github.com/markpollack/agent-client-tutorial.

How to install Agent Client Tutorial

This entry records only its repository, not the path inside it, so there is no exact command to give. Open spring-ai-community/agent-client-tutorial and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Agent Client Tutorial does

No longer maintained — active development moved to https://github.com/markpollack/agent-client-tutorial.

Alternatives in Git

  • Skill Development Guide — Community Examples 81.1k ★
  • Worktree Parallel Init — Create multiple git worktrees for parallel development: $ARGUMENTS 23.4k ★
  • Superclaude — by SuperClaude-Org - A versatile configuration framework that enhances Claude Code with specialized commands 21.7k ★

README

[!IMPORTANT] **This repository is no longer maintained.**

Active development has moved to [markpollack/agent-client-tutorial](https://github.com/markpollack/agent-client-tutorial). Current documentation is available at [lab.pollack.ai](https://lab.pollack.ai/projects/agent-client).

This repository remains available for historical Spring AI Community releases. Its Apache 2.0 license and historical contents are unchanged. Please submit new issues and pull requests to the active repository.

Agent Client Tutorial

Progressive examples for the [Spring AI Agent Client](https://github.com/spring-ai-community/agent-client) — a portable abstraction for agentic CLI tools (Claude Code, OpenAI Codex, Gemini CLI).

Examples

# Example What It Demonstrates
01 create-file Simplest task — create a file — with all three providers

Quick Start

git clone https://github.com/spring-ai-community/agent-client-tutorial.git
cd agent-client-tutorial

# Run with Claude (default)
./mvnw spring-boot:run -pl 01-create-file

# Run with Codex
./mvnw spring-boot:run -pl 01-create-file -Dspring.profiles.active=codex

# Run with Gemini
./mvnw spring-boot:run -pl 01-create-file -Dspring.profiles.active=gemini

Prerequisites

  • Java 17+
  • At least one agentic CLI installed and authenticated:
Provider Install Auth
Claude Code npm install -g @anthropic-ai/claude-code claude auth login
OpenAI Codex npm install -g @openai/codex Set OPENAI_API_KEY
Gemini CLI npm install -g @anthropic-ai/gemini-cli Set GOOGLE_API_KEY

Documentation