CurateClick Weekly Picks: 6 Fresh Tools Worth Trying (Mar 22, 2026 Edition)

A2A + CrewAI + OpenRouter Chart Generation Agent Tutorial
Tutorial FocusThis tutorial will guide you through practicing the following core skills:Integrating OpenRouter + CrewAI + A2A: Complete end-to-end Agent development using OpenRouter as LLM provider, CrewAI as Agent framework, and A2A protocol as standardized interfacePracticing A2A Agent Image Data Return: Learn how to make Agents generate and return image data, not just text responsesUsing A2A Inspector to Debug A2A Applications: Master professional debugging tools to test and validate your ...

A2A JS SDK Complete Tutorial: Quick Start Guide
Table of ContentsWhat is A2A JS SDK?A2A JS Installation & SetupA2A JS Core ConceptsCreating Your First A2A JS AgentA2A JS Server DevelopmentA2A JS Client UsageA2A JS Advanced FeaturesA2A JS Best PracticesA2A JS TroubleshootingWhat is A2A JS SDK?A2A JS SDK is a powerful library designed specifically for JavaScript/TypeScript developers to build intelligent agent applications that comply with the Agent2Agent (A2A) Protocol. This A2A JS framework enables developers to easily create intelligent a...
Building: 🤖 https://a2aprotocol.ai/ ⚡ https://deepbolt.xyz/ 🎯 https://qwq32.com/ 🎲 https://randomlettergenerator.app/


CurateClick Weekly Picks: 6 Fresh Tools Worth Trying (Mar 22, 2026 Edition)

A2A + CrewAI + OpenRouter Chart Generation Agent Tutorial
Tutorial FocusThis tutorial will guide you through practicing the following core skills:Integrating OpenRouter + CrewAI + A2A: Complete end-to-end Agent development using OpenRouter as LLM provider, CrewAI as Agent framework, and A2A protocol as standardized interfacePracticing A2A Agent Image Data Return: Learn how to make Agents generate and return image data, not just text responsesUsing A2A Inspector to Debug A2A Applications: Master professional debugging tools to test and validate your ...

A2A JS SDK Complete Tutorial: Quick Start Guide
Table of ContentsWhat is A2A JS SDK?A2A JS Installation & SetupA2A JS Core ConceptsCreating Your First A2A JS AgentA2A JS Server DevelopmentA2A JS Client UsageA2A JS Advanced FeaturesA2A JS Best PracticesA2A JS TroubleshootingWhat is A2A JS SDK?A2A JS SDK is a powerful library designed specifically for JavaScript/TypeScript developers to build intelligent agent applications that comply with the Agent2Agent (A2A) Protocol. This A2A JS framework enables developers to easily create intelligent a...
Building: 🤖 https://a2aprotocol.ai/ ⚡ https://deepbolt.xyz/ 🎯 https://qwq32.com/ 🎲 https://randomlettergenerator.app/
Share Dialog
Share Dialog
Subscribe to czmilo
Subscribe to czmilo
<100 subscribers
<100 subscribers
https://github.com/sing1ee/a2a-js-movie-agent
This project demonstrates a comprehensive movie information agent built with the A2A (Agent-to-Agent) framework. The agent leverages the TMDB (The Movie Database) API to provide detailed movie information, search functionality, and AI-powered conversational capabilities through OpenRouter integration.
Enhanced TMDB API Integration: Modern implementation using Bearer token authentication
Comprehensive Movie Search: Search movies with filters like year, adult content, etc.
Multi-Search Capabilities: Search across movies, TV shows, and people simultaneously
AI-Powered Conversations: Utilizes OpenRouter API for intelligent movie queries
Proxy Support: Built-in SOCKS5/HTTP proxy support for network requests
A2A Framework: Implements the Agent-to-Agent communication protocol
CLI Interface: Interactive command-line interface for testing
Express Server: RESTful API endpoints for agent communication
The project follows a modular architecture with clear separation of concerns:
src/
├── index.ts # Main server entry point
├── cli.ts # Command-line interface
├── config/
│ └── env.ts # Environment configuration
└── movie-agent/
├── index.ts # Core agent executor
├── tools.ts # TMDB API tools
├── tmdb.ts # TMDB API client
└── openai.ts # OpenRouter integration
Node.js (v18 or higher)
Bun package manager
TMDB API account
OpenRouter API account
# Clone the repository
git clone https://github.com/sing1ee/a2a-js-movie-agent.git
cd a2a-js-movie-agent
# Install dependencies using Bun
bun install
Create a .env file in the project root:
# TMDB API Key (Bearer token)
TMDB_API_TOKEN=your_tmdb_api_token_here
# OpenRouter API Key for AI features
OPENROUTER_API_KEY=your_openrouter_api_key_here
# Proxy Configuration (Optional)
USE_PROXY=true
PROXY_URL=socks5://127.0.0.1:7890
# Server Configuration
NODE_ENV=development
PORT=3000
# Start the development server
bun dev
# Or build and run in production
bun run build
bun start
The server will start on http://localhost:3000 (or the port specified in your .env file).
# Run the interactive CLI
bun cli
# Or specify a custom server URL
bun cli http://localhost:3000
Once the server is running, you can access:
Agent Card: http://localhost:3000/.well-known/agent.json
API Documentation: Available through the A2A framework endpoints
MovieAgentExecutor: The main agent logic that processes user queries
TMDB Tools: Five specialized tools for movie data retrieval
OpenAI Integration: Handles AI-powered conversations via OpenRouter
A2A Framework: Manages agent communication protocol
The agent provides five main tools for movie information:
searchMovies: Basic movie search with optional filters (year, adult content)
searchPeople: Search for actors, directors, and other film industry personalities
getMovieDetails: Retrieve detailed information about a specific movie
searchMoviesWithDetails: Combined search and details in one call (recommended)
multiSearch: Search across all content types (movies, TV shows, people) simultaneously
The agent follows this general workflow:
Request Processing: Receives user queries through the A2A framework
Context Management: Maintains conversation history and context
AI Analysis: Uses OpenRouter to understand user intent
Tool Execution: Calls appropriate TMDB tools based on the query
Response Generation: Formats and returns comprehensive movie information
State Management: Tracks task status and provides real-time updates
sequenceDiagram
participant U as User
participant CLI as CLI Client
participant A as A2A Server
participant MA as Movie Agent
participant AI as OpenRouter API
participant TMDB as TMDB API
U->>CLI: Enter movie query
CLI->>A: Send message via A2A protocol
A->>MA: Execute task
MA->>A: Publish "working" status
A->>CLI: Stream status update
CLI->>U: Show "Processing..." message
MA->>AI: Send query with available tools
AI->>MA: Respond with tool calls
MA->>TMDB: Execute tool calls (searchMovies, getMovieDetails, etc.)
TMDB->>MA: Return movie data
MA->>AI: Send tool results
AI->>MA: Generate final response
MA->>A: Publish "completed" status with response
A->>CLI: Stream final response
CLI->>U: Display movie information
Note over MA,TMDB: Tools available:<br/>- searchMovies<br/>- searchPeople<br/>- getMovieDetails<br/>- searchMoviesWithDetails<br/>- multiSearch
The agent uses OpenRouter to provide intelligent responses, automatically determining which tools to use based on user queries. It can handle complex requests like "Find action movies from 2023 starring Tom Cruise" by combining multiple tool calls.
Unlike basic TMDB implementations, this agent:
Uses modern Bearer token authentication
Implements "append to response" for efficient API usage
Automatically generates full image URLs
Provides comprehensive error handling
The agent fully implements the A2A (Agent-to-Agent) protocol, enabling:
Standardized agent discovery through agent cards
Real-time status updates during processing
Proper task lifecycle management
Streaming responses for better user experience
Built-in proxy support ensures the agent can work in restricted network environments, supporting:
SOCKS5 proxies
HTTP/HTTPS proxies
Configurable proxy settings
User: "Tell me about the movie Inception"
Agent: [Searches for Inception, retrieves details, cast, and plot]
User: "Find sci-fi movies from 2020 directed by Christopher Nolan"
Agent: [Uses multiple tools to search and filter results]
User: "What movies has Leonardo DiCaprio been in recently?"
Agent: [Searches for the actor and lists recent filmography]
The project includes comprehensive development tools:
TypeScript: Full type safety throughout the codebase
ESLint & Prettier: Code quality and formatting
Bun: Fast package management and execution
Modular Architecture: Easy to extend and maintain
This A2A JS Movie Agent demonstrates a sophisticated implementation of the Agent-to-Agent framework, combining modern web technologies with AI capabilities to create a powerful movie information system. The project serves as an excellent example of how to build intelligent, conversational agents that can interact with external APIs and provide rich, contextual responses to user queries.
The modular design, comprehensive error handling, and adherence to the A2A protocol make this project suitable for both learning purposes and production deployment scenarios.
https://github.com/sing1ee/a2a-js-movie-agent
This project demonstrates a comprehensive movie information agent built with the A2A (Agent-to-Agent) framework. The agent leverages the TMDB (The Movie Database) API to provide detailed movie information, search functionality, and AI-powered conversational capabilities through OpenRouter integration.
Enhanced TMDB API Integration: Modern implementation using Bearer token authentication
Comprehensive Movie Search: Search movies with filters like year, adult content, etc.
Multi-Search Capabilities: Search across movies, TV shows, and people simultaneously
AI-Powered Conversations: Utilizes OpenRouter API for intelligent movie queries
Proxy Support: Built-in SOCKS5/HTTP proxy support for network requests
A2A Framework: Implements the Agent-to-Agent communication protocol
CLI Interface: Interactive command-line interface for testing
Express Server: RESTful API endpoints for agent communication
The project follows a modular architecture with clear separation of concerns:
src/
├── index.ts # Main server entry point
├── cli.ts # Command-line interface
├── config/
│ └── env.ts # Environment configuration
└── movie-agent/
├── index.ts # Core agent executor
├── tools.ts # TMDB API tools
├── tmdb.ts # TMDB API client
└── openai.ts # OpenRouter integration
Node.js (v18 or higher)
Bun package manager
TMDB API account
OpenRouter API account
# Clone the repository
git clone https://github.com/sing1ee/a2a-js-movie-agent.git
cd a2a-js-movie-agent
# Install dependencies using Bun
bun install
Create a .env file in the project root:
# TMDB API Key (Bearer token)
TMDB_API_TOKEN=your_tmdb_api_token_here
# OpenRouter API Key for AI features
OPENROUTER_API_KEY=your_openrouter_api_key_here
# Proxy Configuration (Optional)
USE_PROXY=true
PROXY_URL=socks5://127.0.0.1:7890
# Server Configuration
NODE_ENV=development
PORT=3000
# Start the development server
bun dev
# Or build and run in production
bun run build
bun start
The server will start on http://localhost:3000 (or the port specified in your .env file).
# Run the interactive CLI
bun cli
# Or specify a custom server URL
bun cli http://localhost:3000
Once the server is running, you can access:
Agent Card: http://localhost:3000/.well-known/agent.json
API Documentation: Available through the A2A framework endpoints
MovieAgentExecutor: The main agent logic that processes user queries
TMDB Tools: Five specialized tools for movie data retrieval
OpenAI Integration: Handles AI-powered conversations via OpenRouter
A2A Framework: Manages agent communication protocol
The agent provides five main tools for movie information:
searchMovies: Basic movie search with optional filters (year, adult content)
searchPeople: Search for actors, directors, and other film industry personalities
getMovieDetails: Retrieve detailed information about a specific movie
searchMoviesWithDetails: Combined search and details in one call (recommended)
multiSearch: Search across all content types (movies, TV shows, people) simultaneously
The agent follows this general workflow:
Request Processing: Receives user queries through the A2A framework
Context Management: Maintains conversation history and context
AI Analysis: Uses OpenRouter to understand user intent
Tool Execution: Calls appropriate TMDB tools based on the query
Response Generation: Formats and returns comprehensive movie information
State Management: Tracks task status and provides real-time updates
sequenceDiagram
participant U as User
participant CLI as CLI Client
participant A as A2A Server
participant MA as Movie Agent
participant AI as OpenRouter API
participant TMDB as TMDB API
U->>CLI: Enter movie query
CLI->>A: Send message via A2A protocol
A->>MA: Execute task
MA->>A: Publish "working" status
A->>CLI: Stream status update
CLI->>U: Show "Processing..." message
MA->>AI: Send query with available tools
AI->>MA: Respond with tool calls
MA->>TMDB: Execute tool calls (searchMovies, getMovieDetails, etc.)
TMDB->>MA: Return movie data
MA->>AI: Send tool results
AI->>MA: Generate final response
MA->>A: Publish "completed" status with response
A->>CLI: Stream final response
CLI->>U: Display movie information
Note over MA,TMDB: Tools available:<br/>- searchMovies<br/>- searchPeople<br/>- getMovieDetails<br/>- searchMoviesWithDetails<br/>- multiSearch
The agent uses OpenRouter to provide intelligent responses, automatically determining which tools to use based on user queries. It can handle complex requests like "Find action movies from 2023 starring Tom Cruise" by combining multiple tool calls.
Unlike basic TMDB implementations, this agent:
Uses modern Bearer token authentication
Implements "append to response" for efficient API usage
Automatically generates full image URLs
Provides comprehensive error handling
The agent fully implements the A2A (Agent-to-Agent) protocol, enabling:
Standardized agent discovery through agent cards
Real-time status updates during processing
Proper task lifecycle management
Streaming responses for better user experience
Built-in proxy support ensures the agent can work in restricted network environments, supporting:
SOCKS5 proxies
HTTP/HTTPS proxies
Configurable proxy settings
User: "Tell me about the movie Inception"
Agent: [Searches for Inception, retrieves details, cast, and plot]
User: "Find sci-fi movies from 2020 directed by Christopher Nolan"
Agent: [Uses multiple tools to search and filter results]
User: "What movies has Leonardo DiCaprio been in recently?"
Agent: [Searches for the actor and lists recent filmography]
The project includes comprehensive development tools:
TypeScript: Full type safety throughout the codebase
ESLint & Prettier: Code quality and formatting
Bun: Fast package management and execution
Modular Architecture: Easy to extend and maintain
This A2A JS Movie Agent demonstrates a sophisticated implementation of the Agent-to-Agent framework, combining modern web technologies with AI capabilities to create a powerful movie information system. The project serves as an excellent example of how to build intelligent, conversational agents that can interact with external APIs and provide rich, contextual responses to user queries.
The modular design, comprehensive error handling, and adherence to the A2A protocol make this project suitable for both learning purposes and production deployment scenarios.
No activity yet