@coinbase/cds-mcp-server 8.66.0 → 8.66.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -20,6 +20,39 @@ import { ContentHeader } from '@site/src/components/page/ContentHeader';
20
20
  <MDXSection>
21
21
  <MDXArticle>
22
22
 
23
+ ## Agent Skills
24
+
25
+ Agent skills are portable instruction sets that teach AI coding agents how to work with specific tools, frameworks, and libraries. CDS provides official agent skills that can be installed into any project to give your AI agent deep knowledge of CDS components, patterns, and best practices.
26
+
27
+ ### `cds-code`
28
+
29
+ The `cds-code` skill teaches AI agents to produce high-quality CDS code for React and React Native projects. When activated, the agent will:
30
+
31
+ - **Detect your environment** — Automatically determine whether your project uses React (web) or React Native (mobile) and discover installed CDS packages and their valid import paths.
32
+ - **Select the right components** — Use a built-in component selection guide to choose the appropriate CDS components for any UI task, from layout primitives like `Box` and `VStack` to complex components like `Modal`, `Table`, and `Select`.
33
+ - **Follow CDS best practices** — Prefer CDS style props and design tokens over raw CSS values and use semantic design tokens where possible
34
+ - **Discover icons and illustrations** — Search and select from the full set of CDS icons and illustrations available in your installed version.
35
+
36
+ #### Installation
37
+
38
+ Install the `cds-code` skill with the following command:
39
+
40
+ ```bash
41
+ npx skills add https://github.com/coinbase/cds --skill cds-code
42
+ ```
43
+
44
+ For even better results, also install the `cds-docs` skill to give your agent access to full CDS documentation:
45
+
46
+ ```bash
47
+ npx skills add https://github.com/coinbase/cds --skill cds-docs
48
+ ```
49
+
50
+ </MDXArticle>
51
+ </MDXSection>
52
+
53
+ <MDXSection>
54
+ <MDXArticle>
55
+
23
56
  ## MCP Server
24
57
 
25
58
  The CDS MCP Server provides direct CDS context to LLMs, allowing AI models to understand and work with CDS APIs and components.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coinbase/cds-mcp-server",
3
- "version": "8.66.0",
3
+ "version": "8.66.2",
4
4
  "description": "Coinbase Design System - MCP Server",
5
5
  "repository": {
6
6
  "type": "git",