qwwiwi/public-architecture-claude-code · Archived

datawrapper

Create charts, tables, and data visualizations via Datawrapper API

First seen Jun 20, 2026

Installation

$ npx skills add qwwiwi/public-architecture-claude-code --skill datawrapper

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Also in this package

Other skills from qwwiwi/public-architecture-claude-code.

npx skills add qwwiwi/public-architecture-claude-code

Browse all from qwwiwi/public-architecture-claude-code

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 6
License LICENSE
Default branch main
Open issues 0
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,154 B
  • docs SUMMARY.md 85 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Datawrapper -- Charts and Tables

Create interactive charts, tables, and maps using the Datawrapper API.

Usage

When the user asks to create a chart, table, or data visualization:

  1. Get API token from ~/.claude-lab/shared/secrets/datawrapper.env
  2. Create chart via Datawrapper API: POST https://api.datawrapper.de/v3/charts
  3. Upload data: PUT https://api.datawrapper.de/v3/charts/{id}/data
  4. Publish: POST https://api.datawrapper.de/v3/charts/{id}/publish

API Key

  • Free tier: datawrapper.de (sign up, create API token)
  • Store token in: ~/.claude-lab/shared/secrets/datawrapper.env

Chart Types

  • d3-bars -- bar chart
  • d3-lines -- line chart
  • d3-pie -- pie chart
  • d3-scatter -- scatter plot
  • tables -- data table
  • locator-map -- map

Example

DW_TOKEN=$(cat ~/.claude-lab/shared/secrets/datawrapper.env)
curl -X POST "https://api.datawrapper.de/v3/charts" \
  -H "Authorization: Bearer $DW_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"title":"My Chart","type":"d3-bars"}'