devextreme-datasource

devextreme-datasource is a skill for Claude Code from DevExpress/agent-skills. It costs 144 tokens per session (2,309 once invoked), scanned A, original, MIT.

A set of instructions for DevExtreme’s data layer, which connects UI components to arrays, REST APIs, and OData services. It covers data loading and common operations such as sorting, filtering, paging, grouping, adding, editing, and deleting.

In plain words
What is it for?
Use it to bind components to local data or remote services, build custom REST connections, implement editing operations, and choose between browser-side and server-side processing.
Why use it?
It removes the need to design separate data-access code for each DevExtreme component and processing style.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the dx-devextreme plugin — 13 skills shipped together

Good fit Use it to bind components to local data or remote services, build custom REST connections, implement editing operations, and choose between browser-side and server-side processing.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/devexpress/agent-skills/devextreme-datasource
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add DevExpress/agent-skills --skill devextreme-datasource
Clone the repo
git clone --depth 1 https://github.com/DevExpress/agent-skills

Made for: Claude Code.

Or install dx-devextreme, the plugin that ships this one along with the rest of its 13 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for devextreme-datasource

README.md
[![agentmods](https://agentmods.dev/badge/skills/devexpress/agent-skills/devextreme-datasource/github.svg)](https://agentmods.dev/skills/devexpress/agent-skills/devextreme-datasource)
Your own site
<a href="https://agentmods.dev/skills/devexpress/agent-skills/devextreme-datasource"><img src="https://agentmods.dev/badge/skills/devexpress/agent-skills/devextreme-datasource/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for devextreme-datasource

Your own site · 80×15
<a href="https://agentmods.dev/skills/devexpress/agent-skills/devextreme-datasource"><img src="https://agentmods.dev/badge/skills/devexpress/agent-skills/devextreme-datasource.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 144 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,309 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 147
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00144 $0.02309
Opus 5 $0.00072 $0.01154
Sonnet 5 $0.00029 $0.00462
Haiku 4.5 $0.00014 $0.00231

Measured 9d ago against content hash 191b7edecd2f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

devextreme-datasource scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/dx-devextreme/skills/devextreme-datasource/SKILL.md · 186 lines

How it starts

The opening of the file, as written. The whole thing — 186 lines — stays where its author put it; the contents beside it link to each section on GitHub.

DevExtreme Data Layer Skill

A skill for configuring the DevExtreme data layer: DataSource, ArrayStore, LocalStore, ODataStore, and CustomStore.

When to Use This Skill

  • Binding a component (dataSource property) to a plain array, a URL, or a Store
  • Configuring paging, sorting, filtering, and grouping at the DataSource level
  • Connecting to an OData endpoint
  • Implementing a CustomStore to load data from any REST API
  • Implementing insert, update, remove in a CustomStore for editable components (DataGrid, etc.)
  • Deciding between client-side and server-side data processing modes

Before You Start

⚠️ Always use DevExtreme's CustomStore, DataSource, or a built-in Store (ArrayStore, ODataStore) for data binding. Never replace them with raw fetch/axios, react-query, SWR, or any other data-fetching library. For user-visible error notifications, always use notify from devextreme/ui/notify.

Architecture Overview

UI Component
    └── DataSource          — orchestrates paging, sorting, grouping, filtering
            └── Store       — handles raw data access (CRUD)
                    ├── ArrayStore   — in-memory array
                    ├── LocalStore   — HTML5 localStorage
                    ├── ODataStore   — OData v2/v3/v4 endpoint
                    └── CustomStore  — any backend (REST, GraphQL, etc.)

A component's dataSource property accepts:

  • A plain array — DevExtreme wraps it in an ArrayStore + DataSource automatically.
  • A URL string — DevExtreme fetches JSON and wraps it in a DataSource.
  • A Store instance — passed directly or wrapped in a DataSource.
  • A DataSource instance — gives full control over paging, sorting, grouping.
  • A DataSource config object — DevExtreme constructs the DataSource for you.

Documentation Reference Files

File When you need to
references/stores.md Use ArrayStore, LocalStore, or ODataStore
references/custom-store.md Implement CustomStore for any REST/custom backend
references/datasource-options.md Configure DataSource-level options: paging, sort, filter, group, map, postProcess

Read the full file on GitHub · 186 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 186 lines · 144 tokens per session scan A 191b7edecd2f

Subscribe to this mod's changes

devextreme-datasource is a skill published in the GitHub repository DevExpress/agent-skills (52 stars, last pushed 21d ago), licensed MIT. It adds 144 tokens to every session and 2,309 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

amazon-location-service

Integrates Amazon Location Service APIs for AWS applications. Use this skill when users want to add maps (interactive MapLibre or static images); geocode addresses to coordinates or reverse geocode coordinates to addresses; calculate routes, travel times, or service areas; find places and businesses through text…

awslabs/agent-plugins · 107 tokens

angular-feature-flags

Reviews Angular feature-flag usage and its coordination with dotnet-feature-flags — the same flag key must resolve consistently on both sides. Flags build-time constants requiring a rebuild to toggle, flag keys drifting from backend names, ad-hoc conditionals instead of a centralized service, no fallback when…

AgenticPawan/FullStack-Pilot · 93 tokens

angular-api-client-codegen

Reviews how an Angular app consumes its .NET backend's API contract. Flags hand-typed TypeScript interfaces re-declared per feature instead of generating a typed client from the backend's OpenAPI/Swagger spec (NSwag/openapi-typescript), a generated client checked in but never regenerated against the current API…

AgenticPawan/FullStack-Pilot · 113 tokens

angular-http-resilience

Typed HttpClient wrappers, interceptor-based retry with exponential backoff and per-request timeout, correlation-ID header propagation to .NET backends, error normalisation into typed error models, and loading-state management. Targets Angular 17+ functional HttpClient configuration.

AgenticPawan/FullStack-Pilot · 55 tokens

copilotkit-upgrade

Use when migrating a CopilotKit v1 application to v2 -- updating package imports, replacing deprecated hooks and components, switching from GraphQL runtime to AG-UI protocol runtime, and resolving breaking API changes.

CopilotKit/CopilotKit · 48 tokens

nextjs-pages-router

Set up tRPC in Next.js Pages Router with createNextApiHandler, createTRPCNext, withTRPC HOC, SSR via ssr option and ssrPrepass, SSG via createServerSideHelpers with getStaticProps, and server-side helpers for getServerSideProps prefetching.

trpc/trpc · 67 tokens