You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,7 @@ Once your branch is created, make your source code changes. Once your changes ar
102
102
The repo uses [Semantic Release](https://semantic-release.gitbook.io/semantic-release/) to manage package changes. Commit messages determine the type of release on merge. [Commit Lint](https://commitlint.js.org/) will enforce and catch any formatting issues in commits.
103
103
104
104
```shell
105
-
git commit -a -m "fix(core): disable multi-select" -m "Signed-off-by: Your Name <[email protected]>"
105
+
git commit -a -s -m "fix(core): disable multi-select"
Copy file name to clipboardExpand all lines: projects/cli/README.md
+44-29Lines changed: 44 additions & 29 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# @nvidia-elements/cli
2
2
3
-
The **@nvidia-elements/cli** is a dual-mode command-line tool for the Elements Design System that provides both interactive CLI commands and a Model Context Protocol (MCP) server for AI assistant integration.
3
+
The **@nvidia-elements/cli** is a dual-mode command-line tool for the Elements Design System. It provides interactive CLI commands and a Model Context Protocol (MCP) server for AI assistant integration.
4
4
5
5
## Purpose
6
6
@@ -9,10 +9,12 @@ This package serves two primary modes:
|`--upgrade`| Upgrade Elements CLI (`nve`) to the latest version. |
69
+
|`--debug`| Enable debug output for tools. |
52
70
53
71
## MCP
54
72
55
73
### Quick Setup
56
74
57
-
The fastest way to configure MCP is with the `setup` command:
75
+
The fastest way to configure MCP is with the `project.setup` command:
58
76
59
77
```shell
60
78
nve project.setup
61
79
```
62
80
63
-
This detects your package manager, configures the MCP server for both Cursor, Codex, and Claude Code, and adds Elements core dependencies to the project.
81
+
This detects your package manager, configures the MCP server for Cursor, Codex, and Claude Code, and adds Elements core dependencies to the project.
64
82
65
83
### Claude Code
66
84
67
-
Install to Claude Code by adding the configuration to your `.mcp.json` file. Add the following configuration to your `.mcp.json`file (typically located at `~/.config/claude-code/.mcp.json` or `%APPDATA%\claude-code\.mcp.json` on Windows):
85
+
Install to Claude Code by adding the configuration to your `.mcp.json` file. The file is typically located at `~/.config/claude-code/.mcp.json` or `%APPDATA%\claude-code\.mcp.json` on Windows.
68
86
69
87
```json
70
88
{
@@ -103,9 +121,8 @@ Install to Cursor with the MCP configuration below.
103
121
| ------ | ----------- | -------------- |
104
122
|`/about`| A brief introduction to Elements |`/about`|
105
123
|`/doctor`| Verify Elements setup and MCP configuration |`/doctor`|
106
-
|`/playground`| Context for creating playground prototypes |`/playground` Create an example login form |
107
124
|`/search`| Context for searching Elements APIs |`/search` What works for notifying a user of a long running process? |
108
-
|`/new-project`| Context for creating a new Elements project.|`/new-project` Create an Angular todo app |
125
+
|`/new-project`| Context for creating a new Elements project |`/new-project` Create a todo app |
109
126
|`/migrate`| Context for migrating from deprecated Elements APIs |`/migrate` Migrate this project from deprecated Elements APIs |
110
127
111
128
### Skills
@@ -134,8 +151,6 @@ Skills provide persistent context to AI agents for building UI with Elements.
134
151
|`examples_get`| Get the full template of a known example or pattern by id. |
135
152
|`skills_list`| Get a list of available Elements agent skills and context fragments. |
136
153
|`skills_get`| Get a bundled Elements agent skill or context fragment by name. |
137
-
|`playground_validate`| Validates HTML templates specifically for playground examples. |
138
-
|`playground_create`| Create a shareable playground URL from an HTML template. |
139
154
|`project_create`| Create a new starter project. |
140
155
|`project_validate`| Check project for configuration issues and dependencies. |
141
156
|`project_setup`| Setup or update a project to use Elements. |
0 commit comments