creating-abstractions

Create custom components for the OpenBench agentic AI workbench.

2|Updated Jan 24, 2026
One-click install
npx skills add https://github.com/ai-kitchen-inc/openbench --skill creating-abstractions
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: creating-abstractions
Source: https://github.com/ai-kitchen-inc/openbench/tree/main/.claude/skills/creating-abstractions
Command: npx skills add https://github.com/ai-kitchen-inc/openbench --skill creating-abstractions

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill provides the foundational patterns and code examples for extending OpenBench by creating new data sources, agents, output generators, data stores, and framework adapters.

Core Features & Use Cases

  • Custom Data Sources: Define how OpenBench ingests data from unique locations or formats.
  • Custom Agents: Integrate your own AI logic or models into OpenBench workflows.
  • Custom Output Generators: Specify how processed data should be formatted and exported.
  • Data Storage: Implement custom solutions for indexing and retrieving data, including vector stores.
  • Framework Integration: Connect external AI frameworks like LangChain or AutoGen.
  • Use Case: You need to ingest data from a proprietary internal API. You would use this Skill to create a new DataSource that connects to your API, fetches the data, and formats it for OpenBench.

Quick Start

Create a new DataSource by extending the DataSource abstract base class and implementing the required properties and methods.

Frequently Asked Questions about creating-abstractions

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build custom OpenBench components for data ingestion?

To build custom OpenBench components for data ingestion, extend the DataSource abstract base class and implement required properties and methods. This enables OpenBench to fetch and format data from unique locations or proprietary APIs.

Can I integrate external AI frameworks like LangChain into an agentic AI workbench?

Yes, you can integrate external AI frameworks like LangChain by creating a framework adapter. This adapter connects external AI logic to the workbench, allowing you to run custom agents within OpenBench workflows.

How do I implement a custom vector store for retrieving data in OpenBench?

To implement a custom vector store, create a Data Store component by extending the provided abstract base classes. This defines how OpenBench indexes and retrieves your processed data, including custom validation methods for robust pipeline execution.

What are the requirements for defining custom agents in an agent framework?

Defining custom agents requires adhering to abstract property implementations and dataclass return types. You must also include validation methods to ensure robust pipeline execution when integrating your user-defined AI logic.

How do I format and export processed data using custom output generators?

To format and export processed data, create a custom Output Generator by extending its abstract base class. This specifies exactly how processed data should be formatted and exported from the OpenBench pipeline.