fetch_data

Fetch up to five atomic records from data resources using filters.

1|Updated Apr 13, 2026
One-click install
npx skills add https://github.com/devforth/adminforth-agent --skill fetch-data-devforth
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fetch_data
Source: https://github.com/devforth/adminforth-agent/tree/main/custom/skills/fetch_data
Command: npx skills add https://github.com/devforth/adminforth-agent --skill fetch-data-devforth

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Fetch one or more records from a data resource. To use this skill you first need to call get_resource tool to know resource column names. This tool returns only atomic record(s) not capable with any aggregations.

Core Features & Use Cases

  • Use filters (including ILIKE) to refine results.
  • Return up to 5 records for a single query; if more than one result, show all results and prompt user to select.
  • Present results grouped by resource with the resource label and keep primary key and _label fields visible for each candidate.

Quick Start

Ask the assistant to fetch records by applying filters with get_resource_data to locate matching resources.

Frequently Asked Questions about fetch_data

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

FAQPage Schema
How do I fetch records from a data resource using filters?

Yes, you can fetch records across multiple resources simultaneously. When filters match more than one resource, results are presented in separate groups with the resource label, primary key, and _label fields visible for each candidate.

How do I find resource column names before fetching data records?

You must call the get_resource tool first to retrieve resource column names before fetching data. Knowing the column names is required to apply filters accurately and locate matching records for your query.

What is the maximum number of records returned per data resource query?

A single query returns up to five records per resource. If more than one result matches, all retrieved records are shown and the user is prompted to select the desired record from the grouped results.

Can I use aggregations when fetching atomic rows from a data resource?

No, this fetch data approach is not capable of aggregations. It strictly returns atomic records suitable for further processing, meaning calculations or summaries must be handled downstream after retrieving the rows.

Does fetch_data support ILIKE filters for refining resource record searches?

Yes, ILIKE filters are supported to refine results when fetching resource records. You apply these filters through the get_resource_data tool to locate matching records across your queried data resources.