●FORK — Claude Code 2.1.212 changes what /fork does: it copies your conversation into a new background session with its own row in claude agents, so you can keep working. The old in-session subagent is now /subtask●LIMITS — WebSearch calls are now capped at 200 per session by default, and subagent spawns get the same 200 ceiling, so a runaway search or delegation loop stops on its own●MCPBG — MCP tool calls running past two minutes now move to the background automatically, keeping the session usable. Tune the threshold with CLAUDE_CODE_MCP_AUTO_BACKGROUND_MS●PLANFIX — Fixed plan mode auto-running file-modifying Bash commands such as touch and rm without a permission prompt or an SDK canUseTool callback●SONNET5 — Claude Sonnet 5 is running on introductory pricing of $2 per million input tokens and $10 per million output. After August 31 it moves to $3 and $15●IPO — Bankers are reportedly lining up investor meetings for Anthropic ahead of a possible public listing as soon as October●FORK — Claude Code 2.1.212 changes what /fork does: it copies your conversation into a new background session with its own row in claude agents, so you can keep working. The old in-session subagent is now /subtask●LIMITS — WebSearch calls are now capped at 200 per session by default, and subagent spawns get the same 200 ceiling, so a runaway search or delegation loop stops on its own●MCPBG — MCP tool calls running past two minutes now move to the background automatically, keeping the session usable. Tune the threshold with CLAUDE_CODE_MCP_AUTO_BACKGROUND_MS●PLANFIX — Fixed plan mode auto-running file-modifying Bash commands such as touch and rm without a permission prompt or an SDK canUseTool callback●SONNET5 — Claude Sonnet 5 is running on introductory pricing of $2 per million input tokens and $10 per million output. After August 31 it moves to $3 and $15●IPO — Bankers are reportedly lining up investor meetings for Anthropic ahead of a possible public listing as soon as October
Implementing Design Systems as Claude Skills: Learning from kintone's AI-Ready Documentation
Learn how to transform your design system into AI-readable Claude Agent Skills, using Cybozu's kintone Design System as a reference. This guide covers the differences between MCP and Skills, SKILL.md design principles, and documentation optimization for AI integration.
Design systems are the foundation that accelerates enterprise product development. Yet the harsh reality most organizations face is this: documentation goes unused.
Your Figma component library is beautifully organized. Storybook aggregates all implementations. But when a new engineer joins, they ask: "Where's the design system?" Old documentation never gets updated. The design system becomes window dressing.
The root cause? Documentation is optimized for humans, not for AI.
But what if you provided your design system in "AI-readable format"? Claude Code and other AI agents could access the latest component information in real-time and automatically generate prototypes. Here's the surprising part: documentation optimized for AI becomes easier for humans too.
This article explores how Cybozu's kintone Design System was transformed into Claude Agent Skills, and shows you how to do the same for your design system. The result: turning it into a "treasure chest that AI can read."
Why AI-Readable Design Systems Matter Now
Traditional Design System Sharing Challenges
The way design systems are shared hasn't fundamentally changed in 20 years:
Design UI components in Figma
Implement components (React / Vue / etc.)
Document in Storybook
Tell the team: "Find it in Storybook"
The critical bottleneck: humans manually search through Storybook every time.
Searching for the right component when starting a new project: 30 minutes
Confusion about multiple versions: "Which is current?"
Design system updates don't automatically propagate to dependent projects
Code reviews repeat the same feedback: "Use the Button component instead"
The Perfect Partnership: AI and Design Systems
When you "teach" an AI agent your design system, everything changes:
【Traditional】"Create an OK button using Button component"↓Developer manually searches Storybook↓Copy & paste code↓Misses design system updates, uses outdated version【AI-Enabled】"Create an OK button"↓AI automatically accesses latest design system↓Infers correct component and Props↓Automatically uses new version when design system updates
Zero cognitive load. Developers think "I need a button." AI transparently selects the optimal component and configures it correctly.
The kintone Design System Challenge
Cybozu's kintone product features complex enterprise UI. To maintain consistency, the kintone Design System was created.
But scaling brought challenges:
Sharing design guidelines with external partners became difficult
Determining "can we use an existing component or need new one?" took time
Maintaining documentation across multiple languages was a burden
Solution: Expose the design system as Claude Agent Skills—"APIifying" it through AI-readable documentation and SKILL.md.
MCP vs Skills: Two Approaches Compared
There are two major ways to provide design systems to AI. Your choice dramatically affects implementation complexity and maintainability.
Understanding MCP
MCP (Model Context Protocol) is Anthropic's standard for exposing data sources to AI:
Verdict: For design systems, choose Skills. Design systems evolve slowly; they don't need real-time synchronization.
✦
Thank you for reading this far.
Continue Reading
What follows includes implementation code, benchmarks, and practical content we hope you'll find useful. This site runs without ads — server and development costs are supported entirely by members like you. If it's been helpful, we'd be truly grateful for your support.
WHAT YOU'LL LEARN
✦Understand why Skills is the right choice over MCP for design systems, and master kintone's SKILL.md design patterns for AI readability
✦Get concrete steps and folder structures for implementing your own design system as Claude Skills, ready to integrate with Claude Code
✦Discover how AI-optimized documentation transforms team efficiency by 24x, while simultaneously becoming more useful for humans
Secure payment via Stripe · Cancel anytime
✦
Unlock This Article
Get full access to the rest of this article. Buy once, read anytime. This site is ad-free — your support goes directly toward keeping it running.
Whenever package.json updates, SKILL.md regenerates automatically. AI always references the current version.
Storybook Integration
Storybook isn't just a UI browser—it's AI's textbook for learning component usage:
// Button.stories.tsxexport default { title: 'Components/Button', component: Button, parameters: { ai: { description: 'Primary action button for forms and dialogs', usage: 'One per screen. Use for main actions.' } }};
AI reads this metadata alongside code.
Steps to Make Your Design System AI-Ready
Step 1: Reorganize Repository Structure
Make sure folders are self-contained:
src/components/
├── Button/
│ ├── Button.tsx
│ ├── Button.test.tsx
│ ├── Button.stories.tsx
│ └── README.mdx ← AI reads here
Step 2: Create Component-Level READMEs
Each component gets its own documentation:
# Button Component## OverviewPrimary action button for forms and dialogs.## When to Use- Form submission- Main action in dialogs## When NOT to Use- Links → use `<a>` or Next.js `<Link>`- Toggles → use Toggle component## Props- **variant**: "primary" | "secondary" | "danger"- **size**: "sm" | "md" | "lg"- **disabled**: boolean## Example\`\`\`tsx<Button variant="primary">Submit</Button>\`\`\`## Accessibility- Tab navigable- Screen reader compatible (aria-label)- Focus indicator visible
Step 3: Create Your SKILL.md
# My Design System> Version: 1.0.0> Updated: 2026-04-09## Components- [Button](./src/components/Button/README.mdx)- [Form](./src/components/Form/README.mdx)- [Card](./src/components/Card/README.mdx)## Design Tokens- [Colors](./src/tokens/colors.json)- [Typography](./src/tokens/typography.json)## Quick Example\`\`\`tsximport { Button, Form } from '@mycompany/design-system';<Form onSubmit={handleSubmit}> <Button variant="primary">Submit</Button></Form>\`\`\`
Accessibility Info: ARIA labels, keyboard support, screen readers included
Cross-References: Link related components
Tokenization: Colors, fonts, spacing defined as JSON
Challenges and Solutions from Real Implementation
Challenge 1: Context vs Quality Trade-off
Problem: Including all READMEs in SKILL.md overwhelms AI's context.
Solution: Hierarchy solves this.
SKILL.md: <1KB (entry point only)
Each README.mdx: 1-2KB (details)
Implementation code: reference only
Challenge 2: Team Alignment
Problem: "AI-readable documentation" is a new concept.
Solution: Show results.
"Before: Manual component lookup (1 min) → After: AI auto-generation (10 sec)"—seeing 6x improvement motivates teams.
Challenge 3: Continuous Maintenance
Problem: SKILL.md eventually goes stale while package.json gets updated.
Solution: Automate regeneration via CI/CD (GitHub Actions example above).
Impact: Measuring the Efficiency Gain
Before: Traditional Approach
Task
Time
New project setup → search Storybook
30 min
"Which component?" check with designer
15 min
Review component Props in Storybook
10 min
Copy & paste code
5 min
Post-update impact analysis
1 hour
Total
2 hours
After: AI-Enabled Approach
Task
Time
Claude Code generates boilerplate (auto-references SKILL.md)
2 min
AI auto-selects optimal components
automatic
AI auto-infers Props
automatic
Code auto-generation
3 min
Design system updates auto-recognized
automatic
Total
5 minutes
2 hours → 5 minutes = 24x faster.
Per project: 1 hour 55 min saved × 100 projects = 3,100 hours/year saved (equivalent to 3-4 engineers' annual output).
Bonus: AI-optimized documentation becomes easier for humans too:
Clear "when to use" guidance
Rich examples to copy & modify
Explicit version information
Better component selection
Wrapping up: Design Systems and AI's New Relationship
Design systems are critical for enterprise UX/UI quality. Yet most organizations face the same problem: built but unused.
The reason? Documentation optimizes for humans, not AI.
What if you flipped that?
AI automatically suggests optimal components
New project setup becomes 24x faster
Documentation becomes more useful for humans, not less
Entire team development efficiency skyrockets
The lesson from kintone Design System Skills extends beyond "using AI with design systems"—it's a new documentation paradigm.
Start Today:
Add SKILL.md to your design system
Create README.mdx in each component folder
Test with Claude Code
Measure the speedup
The future of design systems and AI is already here. It's time to participate.
Share
Thank You for Reading
Claude Lab is ad-free, supported entirely by members like you. We publish practical guides daily with implementation code, benchmarks, and production-ready patterns. If you've found it useful, we'd love to have you on board.