Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

chart-editing图表编辑

Agent Skill

chart-editing 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

612

周安装

25

GitHub Stars

145

下载量

198
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:chart-editing(图表编辑)
来源仓库:https://github.com/owid/etl
仓库路径:skills/chart-editing
安装命令:
npx skills add https://github.com/owid/etl --skill chart-editing
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/owid/etl --skill chart-editing

简介

chart-editing 管理 OWID Grapher 的 .chart.yml 配置文件,支持预览变更与依赖关系映射。

  • 适用于大规模数据可视化项目的版本控制与 DAG 依赖校验,确保图表一致性。
  • 编辑前必须查阅 schema 与当前配置,避免破坏数据集引用或元数据完整性。
  • 仅限熟悉 OWID 生态的用户使用,普通项目无需介入此类底层配置管理。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Chart Editing

Edit .chart.yml files that define OWID Grapher chart configurations, then preview changes.

File Locations

  • Chart configs: etl/steps/graph/<namespace>/<version>/<short_name>.chart.yml
  • Schema: schemas/chart-schema.json (read this to understand valid fields)
  • DAG definitions: dag/graph/<namespace>.yml (maps graph steps to data dependencies)

Before Editing

  1. Read the schema at schemas/chart-schema.json to understand all valid fields, enums, and nested structures
  2. Read the target .chart.yml to understand current config
  3. Check the DAG in dag/graph/<namespace>.yml to understand which dataset the chart depends on

Chart Config Formats

Simple format (single indicator)

Used for charts with one indicator and no dimension toggles:

title: Which countries have banned chick culling?
tab: map
hasMapTab: true
chartTypes: []
yAxis:
  min: auto
map:
  hideTimeline: true
  colorScale:
    customCategoryColors:
      Banned: '#4881c6'
      No laws: '#b6a28c'
    customNumericColorsActive: true
$schema: https://files.ourworldindata.org/schemas/grapher-schema.010.json
originUrl: /animal-welfare
dimensions:
  - property: y
    catalogPath: status

Key fields: dimensions[].property (y/x/size/color) and dimensions[].catalogPath (column name in the dataset).

Multi-dimensional format (explorer-like)

Used for charts with multiple indicator combinations selectable via dropdowns:

slug: covid/covid#covid_cases

definitions:
  common_views:
    - config:
        tab: map
        originUrl: ourworldindata.org/coronavirus

title:
  title: COVID-19 confirmed cases
  title_variant: ""

default_selection:
  - World
  - Europe
  - Asia

topic_tags:
  - COVID-19

dimensions:
  - slug: period
    name: Period
    choices:
      - slug: weekly
        name: Weekly
      - slug: biweekly
        name: Biweekly

  - slug: metric
    name: Indicator
    choices:
      - slug: absolute
        name: Absolute number
      - slug: per_capita
        name: Per million people

views:
  - dimensions:
      period: weekly
      metric: absolute
    indicators:
      y:
        - catalogPath: weekly_cases

  - dimensions:
      period: weekly
      metric: per_capita
    indicators:
      y:
        - catalogPath: weekly_cases_per_million

Key differences from simple: title is an object {title, title_variant}, dimensions defines UI facets (not indicators), actual indicators are in views[].indicators.y[].catalogPath.

Previewing Charts

Charts are previewed via the staging server. The staging URL follows this pattern:

http://staging-site-{branch}/grapher/{slug}

where {branch} is the current git branch name (with /._ replaced by -, truncated to 28 chars).

PNG screenshot (for visual inspection)

Fetch the PNG directly from the staging server using WebFetch:

http://staging-site-{branch}/grapher/{slug}.png?nocache

Add &tab=map or &tab=chart to control which tab is shown.

Prerequisite: The chart must be pushed to staging first. If the user has the VSCode chart preview extension open, this happens automatically via etlr --watch. Otherwise push manually:

.venv/bin/etlr graph://<namespace>/<version>/<slug> --graph --graph-push --private

Editing Workflow

  1. Read the chart file and schema
  2. Make edits using the Edit tool (preserve YAML comments with ruamel if needed)
  3. Push to staging: .venv/bin/etlr graph://<namespace>/<version>/<slug> --graph --graph-push --private
  4. Fetch the PNG from http://staging-site-{branch}/grapher/{slug}.png?nocache to verify visually
  5. If the chart looks wrong, read the schema for correct field names/values

Common Edits

  • Change default tab: Set tab to chart, map, table, line, slope, discrete-bar, or marimekko
  • Change selected entities: Edit selectedEntityNames array
  • Change colors: Edit map.colorScale.customCategoryColors or colorScale.customCategoryColors
  • Change color scheme: Set baseColorScheme or map.colorScale.baseColorScheme (see schema for valid values)
  • Hide/show map tab: Set hasMapTab: true/false
  • Add chart note: Set note field
  • Change axis: Edit yAxis or xAxis with min, max, scaleType, label

Validation

Chart configs should conform to schemas/chart-schema.json. Key constraints:

  • tab enum: chart, map, table, line, slope, discrete-bar, marimekko
  • chartTypes enum items: LineChart, ScatterPlot, StackedArea, DiscreteBar, StackedDiscreteBar, SlopeChart, StackedBar, Marimekko
  • dimensions[].property enum: y, x, size, color, table
  • addCountryMode enum: add-country, change-country, disabled

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.23%
按下载量换算70

Claude

29.75%
按下载量换算59

Cursor

18.96%
按下载量换算38

Gemini CLI

7.97%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills