From a768dc13933e76330c3fad52e18ab4f405a4563f Mon Sep 17 00:00:00 2001 From: Mathis Derenne <116900975+mathisdrn@users.noreply.github.com> Date: Sat, 1 Aug 2026 11:29:40 +0200 Subject: [PATCH 1/2] Fix URL for dataframely skill in documentation Also added -f (fail fast) and -L (follow redirects) flags which are good practice when downloading files from the web. --- docs/guides/coding-agents.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guides/coding-agents.md b/docs/guides/coding-agents.md index 12720b78..17a06236 100644 --- a/docs/guides/coding-agents.md +++ b/docs/guides/coding-agents.md @@ -9,13 +9,13 @@ Coding agents like [Claude Code](https://code.claude.com/), [Codex](https://open When writing data processing logic, `dataframely` helps to fulfill these criteria. To help your coding agent write idiomatic `dataframely` code, we provide a `dataframely` -[skill](https://raw.githubusercontent.com/Quantco/dataframely/refs/heads/main/SKILL.md) following the +[skill](https://raw.githubusercontent.com/Quantco/dataframely/main/skills/SKILL.md) following the [`agentskills.io` spec](https://agentskills.io/specification). You can install it by placing it where your agent can find it. For example, if you are using Claude Code: ```bash mkdir -p .claude/skills/dataframely/ -curl -o .claude/skills/dataframely/SKILL.md https://raw.githubusercontent.com/Quantco/dataframely/refs/heads/main/skills/SKILL.md +curl -fLo .claude/skills/dataframely/SKILL.md https://raw.githubusercontent.com/Quantco/dataframely/refs/heads/main/skills/SKILL.md ``` or if you are using [skills.sh](https://skills.sh/) to manage your skills: From a46114a4a61452867f9db990e9f35a9f22ae9de3 Mon Sep 17 00:00:00 2001 From: Oliver Borchert Date: Sat, 1 Aug 2026 13:23:06 +0200 Subject: [PATCH 2/2] Update docs/guides/coding-agents.md --- docs/guides/coding-agents.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/coding-agents.md b/docs/guides/coding-agents.md index 17a06236..8cead3dc 100644 --- a/docs/guides/coding-agents.md +++ b/docs/guides/coding-agents.md @@ -9,7 +9,7 @@ Coding agents like [Claude Code](https://code.claude.com/), [Codex](https://open When writing data processing logic, `dataframely` helps to fulfill these criteria. To help your coding agent write idiomatic `dataframely` code, we provide a `dataframely` -[skill](https://raw.githubusercontent.com/Quantco/dataframely/main/skills/SKILL.md) following the +[skill](https://raw.githubusercontent.com/Quantco/dataframely/refs/heads/main/skills/SKILL.md) following the [`agentskills.io` spec](https://agentskills.io/specification). You can install it by placing it where your agent can find it. For example, if you are using Claude Code: