Rudder Data Path Diagnostician Maintainer logo

Rudder Data Path Diagnostician Maintainer

Community
Undertone0809
rudder-data-path-diagnostician-maintainer

Use when Rudder pages or product surfaces show missing, stale, sparse, empty, slow, or wrong data, including Calendar, runs, issues, dashboard counts, chat output, prod/local org data, API/UI/DB mismatches, or “这个数据从哪来”.

Overview

PublisherUndertone0809
Repositoryrudder
Skill namerudder-data-path-diagnostician-maintainer
Stars
290
Forks
31
Bundled files
1
LicenseApache-2.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 1 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by Undertone0809 on GitHub. Read the source before you install it.

Installation

Install the Rudder Data Path Diagnostician Maintainer AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/Undertone0809/rudder.git /tmp/rudder
mkdir -p .claude/skills
cp -r /tmp/rudder/agent-skills-bak/maintainer/rudder-data-path-diagnostician-maintainer .claude/skills/rudder-data-path-diagnostician-maintainer
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Rudder Data Path Diagnostician Maintainer in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Rudder Data Path Diagnostician Maintainer on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Rudder Data Path Diagnostician Maintainer is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Rudder Data Path Diagnostician Maintainer

Use this skill when the user's real problem is that a Rudder surface does not show the data they expected.

The goal is to produce an evidence-backed data lineage and root cause, not to guess from the screenshot. Most failures in this class are caused by one of:

  • wrong runtime or organization
  • empty source records
  • filtering or date-window mismatch
  • derived data that is not generated from the records the user expected
  • API/service aggregation gap
  • UI rendering or state merge bug
  • stale seed/demo assumptions

This skill also has an explanation mode. When the user asks "这个数据从哪来" or "现在的渲染逻辑是怎样的" and the data is no longer missing, explain the lineage from UI query to API route, service aggregation, derived records, and rendering states. In explanation mode, read-only source tracing may be enough; do not force database inspection when code and API contracts already answer the question.

Use When

Use this skill for questions like:

  • "为什么 Calendar 没数据"
  • "这个 Dashboard 怎么是空的"
  • "prod z studio 下这里怎么没有 run / issue / calendar"
  • "这个 UI 的数据从哪里来"
  • "看起来应该有数据,但页面没有显示"
  • "这个数字和数据库/API 对不上"
  • "是不是 seed 数据没有写进去"

This skill is useful across dev, prod-local Desktop, worktree previews, and local production-style instances.

Do Not Use When

Do not use this skill for:

  • a single agent run transcript failure; use debug-run-transcript-maintainer
  • creating demo or screenshot data from scratch; use mock-data-maintainer
  • pure UI polish where the data is already known; use rudder-ui-polish-maintainer
  • CI, release, npm, Desktop packaging, or Chrome automation infrastructure
  • destructive cleanup of organizations or databases unless the user explicitly authorizes that separate operation

Default Workflow

1. Confirm the symptom and target environment

Start by pinning down:

  • surface: page, route, tab, card, chart, or screenshot region
  • expected data: what the user believes should appear
  • actual data: what is visible or returned
  • runtime: dev, prod-local Desktop, worktree preview, or remote deployment
  • organization: org id, URL key, display name, or selected org
  • date window, filters, and selected project/agent when relevant

Classify the mode before deep inspection:

  • diagnosis: expected data is missing, stale, sparse, or wrong.
  • explanation: the user wants the rendering or derivation logic after the visible symptom is resolved.

In explanation mode, keep the answer focused on the current code path and source hierarchy. Still name any assumptions about runtime, org, or date window when those affect the answer.

Verify the live target before trusting assumptions:

bash
curl -sS <base-url>/api/health
curl -sS <base-url>/api/orgs

For prod-local or Desktop investigations, require evidence that the active runtime is the expected local environment before inspecting or writing data.

2. Identify the UI data request

Find the component and data hook or API client that feeds the surface. Record:

  • query key or effect dependency
  • endpoint path and parameters
  • selected org/project/agent/date filters
  • fallback, loading, error, and empty-state behavior
  • client-side merge or normalization logic

Do not stop at "the component renders an empty array." Trace where that array comes from.

3. Inspect the API and service chain

Follow the endpoint into server code:

  • route path and auth/org access checks
  • request validators and default date windows
  • service function and aggregation logic
  • derived sources such as heartbeat runs, automation runs, activity, messenger context snapshots, calendar projections, cost rows, or external sync tables
  • response shape and filtering rules

Compare route behavior to the UI expectation. Many bugs are not missing rows; they are mismatched assumptions about which source is authoritative.

4. Read source data safely

Use read-only API calls or SQL queries first. Verify:

  • records exist for the selected organization
  • timestamps fall inside the UI date window
  • statuses match the service filters
  • linked ids are present and point to the expected issue, agent, project, run, automation, or conversation
  • soft-deleted, archived, hidden, or permission-gated rows are not being mistaken for visible data

Keep every query organization-scoped. Do not write, reseed, or delete data while diagnosing unless the user explicitly changes the task from diagnosis to repair.

5. Classify the root cause

Use one primary classification:

  • wrong-target: the browser or process is pointed at the wrong instance or org
  • source-empty: the source table/API has no matching records
  • filter-window: data exists but the selected date/status/project/agent window excludes it
  • derived-gap: source records exist but the derived feed is not generated or linked
  • contract-gap: API response lacks data the UI needs
  • render-gap: API response is correct but UI state/rendering hides it
  • seed-gap: demo or fixture data was expected but not seeded into this target
  • sync-gap: external provider or import has not produced local records

If multiple causes contribute, identify the first broken boundary and the downstream symptoms separately.

6. Recommend or implement the fix

By default, report the diagnosis and fix options. Implement only when the user asked to fix it or the next safe code change is obvious.

Fix choices should match the cause:

  • wrong target: point the browser/process at the right runtime and verify
  • source empty or seed gap: use mock-data-maintainer or a scoped seed path
  • filter-window: adjust UI defaults or make filters visible
  • derived gap: fix service aggregation or generation logic
  • contract gap: sync shared/server/UI contract and tests
  • render gap: fix component state/rendering and verify visually
  • sync gap: repair provider sync or report external prerequisite

For user-visible behavior changes, add or update E2E coverage when the repo rules require it.

Output Shape

Keep the final answer concrete:

markdown
Root cause: <classification and one-sentence cause>

Evidence:
- UI requested ...
- API returned ...
- Source data shows ...
- Service logic does ...

Fix:
- ...

Validation:
- ...

When useful, include a short lineage:

text
Calendar page -> GET /api/orgs/:orgId/calendar/events
  -> calendar_events rows
  -> heartbeat_runs projections
  -> projected heartbeat schedules

Safety Rules

  • Diagnosis is read-only by default.
  • Verify runtime and organization before any write.
  • Never use unscoped SQL against production-like data.
  • Do not invent demo records to make a bug disappear.
  • Do not conflate "no persisted rows" with "no product data" when the surface intentionally derives events from runs, schedules, or activity.
  • If the user provides a screenshot, use it to locate the symptom, not as proof of the backend state.

Handoff Rules

If code changed, follow normal Rudder validation, commit, and push rules. Stage only files changed for this task and keep unrelated dirty worktree changes out of the commit.

If no code changed, hand off the exact current state and next repair command or file path. Do not claim the issue is fixed when only the data lineage was explained.

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Rudder Data Path Diagnostician Maintainer AI skill do?

Use when Rudder pages or product surfaces show missing, stale, sparse, empty, slow, or wrong data, including Calendar, runs, issues, dashboard counts, chat output, prod/local org data, API/UI/DB mismatches, or “这个数据从哪来”.

Why use Rudder Data Path Diagnostician Maintainer on TypingMind?

Because you install it once and use it with any model. Rudder Data Path Diagnostician Maintainer is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Rudder Data Path Diagnostician Maintainer in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/Undertone0809/rudder/tree/main/agent-skills-bak/maintainer/rudder-data-path-diagnostician-maintainer. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Rudder Data Path Diagnostician Maintainer?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Rudder Data Path Diagnostician Maintainer?

As many as you like. As long as a model supports skills, you can use Rudder Data Path Diagnostician Maintainer with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Rudder Data Path Diagnostician Maintainer AI skill free?

Yes. It is published on GitHub by Undertone0809 under the Apache-2.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇