docs: Data Designer Got Skills dev note#457
Merged
johnnygreco merged 14 commits intomainfrom Mar 25, 2026
Merged
Conversation
Contributor
Greptile SummaryThis PR introduces the "Data Designer Got Skills" dev note, documenting the new agent-first CLI and Claude Code skill for Data Designer. It covers motivation, design decisions, benchmark results (228 sessions each for skill vs. baseline), and getting-started instructions. Alongside the prose, it ships the Key changes:
|
| Filename | Overview |
|---|---|
| docs/devnotes/posts/data-designer-got-skills.md | New dev note covering the agent-first CLI and Claude Code skill; prose, benchmark data, and embed snippets look correct and consistent with each other. |
| docs/devnotes/posts/assets/data-designer-got-skills/trace-baseline.html | Baseline session trace HTML; contains a minor grammatical error ("1 errors" → "1 error") on line 9, otherwise structurally sound. |
| docs/devnotes/posts/assets/data-designer-got-skills/trace-skill.html | Skill session trace HTML containing the shared CSS block; the style coupling concern (raised in a previous thread) is the only known issue. |
| skills/data-designer/.claude-plugin/plugin.json | New plugin metadata file; all required fields present and consistent with marketplace.json and SKILL.md. |
| .claude-plugin/marketplace.json | New marketplace registration file; plugin name, source path, and keywords are all consistent with the skill directory structure. |
| mkdocs.yml | Adds the new dev note entry at the top of the nav list (most-recent-first ordering), consistent with existing pattern. |
Sequence Diagram
sequenceDiagram
participant User
participant ClaudeCode as Claude Code
participant Skill as data-designer Skill
participant CLI as data-designer CLI
User->>ClaudeCode: /data-designer [dataset description]
ClaudeCode->>Skill: Load SKILL.md + select workflow mode
Skill->>CLI: data-designer agent context
CLI-->>Skill: Curated code-derived context (column types, samplers, models)
Skill->>ClaudeCode: Write config script
ClaudeCode->>CLI: data-designer validate <file>
CLI-->>ClaudeCode: Validation result
alt Validation fails
ClaudeCode->>ClaudeCode: Self-correct config
ClaudeCode->>CLI: data-designer validate <file>
CLI-->>ClaudeCode: Validation result
end
ClaudeCode->>CLI: data-designer preview <file>
CLI-->>ClaudeCode: Sample records
ClaudeCode->>CLI: data-designer create <file> --num-records N
CLI-->>User: Generated dataset
Prompt To Fix All With AI
This is a comment left during a code review.
Path: docs/devnotes/posts/assets/data-designer-got-skills/trace-baseline.html
Line: 9
Comment:
**Grammatical error in error count label**
`"1 errors"` is grammatically incorrect for a singular count. It should read `"1 error"`.
```suggestion
<span class="st-stat err">1 error</span>
```
How can I resolve this? If you propose a fix, please make it concise.Reviews (10): Last reviewed commit: "slope-guard tweaks" | Re-trigger Greptile
johnnygreco
commented
Mar 24, 2026
johnnygreco
commented
Mar 24, 2026
Register the repo as a Claude Code plugin marketplace so users can install the data-designer skill via `/plugin marketplace add`.
Full prose for all sections: intro with hero benchmark figure, agents as first-class users, baseline trace walkthrough, CLI and skill design, benchmark results (228 sessions), getting started with marketplace and npx install paths, and what's next.
7d99e42 to
64ecd55
Compare
nabinchha
approved these changes
Mar 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary