Agent skill · Backend & API

atomic-tools-brainblend-ai-atomic-agents-2

This skill should be used when the user asks to "create a tool", "implement BaseTool", "add tool to agent", "tool orchestration", "external API tool", or needs guidance on tool development, tool configuration, error handling, and integrating tools with agents in Atomic Agents applications.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill atomic-tools-brainblend-ai-atomic-agents-2 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Path: skills/ai-llm/atomic-tools-brainblend-ai-atomic-agents-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Atomic Agents Tool Development Tools extend agent capabilities by providing access to external services, APIs, databases, and computations. They follow a consistent pattern with input/output schemas and error handling. ## Tool Architecture ``` ┌─────────────────────────────────────┐ │ BaseTool │ ├─────────────────────────────────────┤ │ input_schema: BaseIOSchema │ │ output_schema: BaseIOSchema │ │ config: BaseToolConfig │ ├─────────────────────────────────────┤ │ run(params) -> Output | Error │ └─────────────────────────────────────┘ ``` ## Basic Tool Template ```python from atomic_agents.lib.base.base_tool import BaseTool, BaseToolConfig from atomic_agents.lib.base.base_io_schema import BaseIOSchema from pydantic import Field from typing import Optional import os # ============================================================ # Schemas # ============================================================ class MyToolInputSchema(BaseIOSchema): """Input for the tool.""" query: str = Field(..., description="The query to process") class MyToolOutputSchema(BaseIOSchema): """Successful output.""" result: str = Field(..., description="The result") class MyToolErrorSchema(BaseIOSchema): """Err

What's inside
Steps it walks through
  1. Tool Architecture
  2. Basic Tool Template
  3. Tool Configuration Pattern
  4. Error Handling Pattern
  5. Using Tools with Agents
  6. Direct Tool Usage
  7. Tool Orchestration Pattern
  8. Pre-Built Tools (Atomic Forge)
  9. Tool Best Practices
  10. References
Ships with 1 file
  • metadata.json
Commands it runs
atomic download calculator
atomic download searxng
atomic download youtube-transcript
More from claude-skill-registry
All skills →
About this skill
What does the atomic-tools-brainblend-ai-atomic-agents-2 skill do?

This skill should be used when the user asks to "create a tool", "implement BaseTool", "add tool to agent", "tool orchestration", "external API tool", or needs guidance on tool development, tool configuration, error handling, and integrating tools with agents in Atomic Agents applications.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill atomic-tools-brainblend-ai-atomic-agents-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going