Install
$ agentstack add skill-danielrosehill-claude-data-wrangler-plugin-add-changelog ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Add Changelog (for Data Repositories)
Maintain a CHANGELOG.md focused on dataset evolution rather than code.
When to invoke
- Data repository has no changelog and the user wants one.
- After any skill that changes dataset content or schema (enrichment, cleaning, synthetic overlay, republication) and the user wants a log entry added.
Format
Adapted from Keep a Changelog, with dataset-specific sections:
# Changelog
All notable changes to this dataset are documented here.
This format is adapted from Keep a Changelog; versions follow SemVer-ish rules:
- MAJOR: breaking schema or semantic changes (column removed/renamed, unit change).
- MINOR: new columns, new rows, compatible enrichments.
- PATCH: fixes to existing values, documentation updates, no schema change.
## [Unreleased]
## [1.2.0] — 2026-04-23
### Added
- `currency_code`, `currency_symbol` columns via `enrich-with-currency` (ISO 4217).
- 1,204 new rows from 2026-Q1 source pull.
### Changed
- `revenue` column parsed from text to numeric; original preserved as `revenue_raw`.
- Country names standardised to ISO 3166 short names.
### Fixed
- 17 rows with `country = "USA"` corrected to "United States".
### Provenance
- Skills used: `standardise-country-names`, `add-iso3166`, `enrich-with-currency`, `text-to-numeric`.
- Data dictionary updated: 2026-04-23.
## [1.1.0] — 2026-03-15
...
Procedure
- Find or create
CHANGELOG.mdin the data repository root. - Determine the current version — from the most recent versioned heading, or from a
VERSIONfile if present. If none, start at1.0.0. - Classify the change — Added / Changed / Fixed / Removed / Deprecated / Security.
- Infer the version bump:
- Schema breaking → MAJOR.
- New columns / new rows / enrichments → MINOR.
- Value fixes / doc updates → PATCH.
Confirm with the user before applying.
- Draft the entry — pull context from the data dictionary provenance log if available, and the git diff if the repository is under version control.
- Insert at the top under
## [Unreleased], or promoteUnreleasedto a new version with today's date. - Write back the updated changelog.
- Optionally tag — offer to create a git tag (
v1.2.0) and push it if the repo has a remote.
Dependencies
Standard library only.
Edge cases
- First-time changelog — produce a reasonable
[1.0.0]baseline entry describing the dataset's initial state. - Concurrent edits — if an
[Unreleased]section already has pending entries, append rather than overwrite. - Non-git repo — skip the tag step silently; just write the file.
- Multi-dataset repo — if the repo holds multiple datasets, scope entries per dataset name (e.g.
### [customers] Added). Ask the user which dataset the change applies to.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: danielrosehill
- Source: danielrosehill/Claude-Data-Wrangler-plugin
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.