Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .agents/skills/authoring-patterns/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ Find the validated HTML template to persist. Look for it in the conversation con

Ensure the template is valid before proceeding.

1. Call `api_template_validate` with the template HTML
1. Call `api_validate` with `{ template, lang: 'html', format: 'json' }`
2. If validation returns errors, report them to the user and fix each issue
3. Re-validate until the result is clean (empty error array)
3. Re-validate until `ok` is true and `summary.errors` is 0
4. Do NOT proceed to Phase 3 until validation passes

### Phase 3: Generate Imports
Expand Down
2 changes: 1 addition & 1 deletion .claude/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"allow": [
"mcp__elements__api_list",
"mcp__elements__api_get",
"mcp__elements__api_template_validate",
"mcp__elements__api_validate",
"mcp__elements__api_imports_get",
"mcp__elements__api_tokens_list",
"mcp__elements__examples_list",
Expand Down
14 changes: 13 additions & 1 deletion NOTICE.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,19 @@ This product includes the following bundled third-party software:
- archiver v8.0.0 [MIT] (used by: @nvidia-elements/cli)
Copyright: Chris Talkington (http://christalkington.com/)

- eslint v10.6.0 [MIT] (used by: @nvidia-elements/cli)
Copyright: Nicholas C. Zakas <nicholas+npm@nczconsulting.com>

- fast-glob v3.3.3 [MIT] (used by: @nvidia-elements/cli)
Copyright: Denis Malinochkin (https://mrmlnc.com)

- highlight.js v11.11.1 [BSD-3-Clause] (used by: @nvidia-elements/code)
Copyright: Josh Goebel <hello@joshgoebel.com>

- lit v3.3.3 [BSD-3-Clause] (used by: @nvidia-elements/code, @nvidia-elements/core, @nvidia-elements/markdown, @nvidia-elements/media, @nvidia-elements/monaco, @nvidia-elements/plot, @nvidia-elements/scene)
- ignore v7.0.6 [MIT] (used by: @nvidia-elements/cli)
Copyright: kael

- lit v3.3.3 [BSD-3-Clause] (used by: @nvidia-elements/code, @nvidia-elements/core, @nvidia-elements/markdown, @nvidia-elements/media, @nvidia-elements/monaco)
Copyright: Google LLC

- lit-html v3.3.3 [BSD-3-Clause] (used by: @nvidia-elements/code, @nvidia-elements/core, @nvidia-elements/monaco)
Expand Down Expand Up @@ -311,6 +320,9 @@ The following bundled components are provided under the MIT license:
@modelcontextprotocol/server v2.0.0 - Copyright Anthropic, PBC (https://anthropic.com)
adm-zip v0.6.0 - Copyright Nasca Iacob <adm-zip@pm.me> (https://github.com/cthackers)
archiver v8.0.0 - Copyright Chris Talkington (http://christalkington.com/)
eslint v10.6.0 - Copyright Nicholas C. Zakas <nicholas+npm@nczconsulting.com>
fast-glob v3.3.3 - Copyright Denis Malinochkin (https://mrmlnc.com)
ignore v7.0.6 - Copyright kael
markdown-it v14.3.0 - Copyright Unknown
marked v18.0.9 - Copyright Christopher Jeffrey
marked-terminal v7.3.0 - Copyright Mikael Brevik
Expand Down
5 changes: 4 additions & 1 deletion knip.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@ export default {
},
'projects/cli': {
entry: [...PACKAGE_FILES, ...SOURCE_INDEX, ...TEST_ENTRIES, ...VITE_CONFIGS, ...VITEST_CONFIGS],
project: [...PROJECT_FILES, ...SOURCE_FILES]
project: [...PROJECT_FILES, ...SOURCE_FILES],
// The CLI bundle keeps these transitive imports external, so they remain runtime dependencies
// even though the CLI source imports them through @internals/tools.
ignoreDependencies: ['fast-glob', 'ignore']
},
'projects/code': {
entry: [
Expand Down
44 changes: 25 additions & 19 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ catalog:
'@vitest/coverage-istanbul': 4.1.10
axe-core: 4.11.0
eslint: 10.6.0
fast-glob: 3.3.3
glob: 13.0.6
highlight.js: 11.11.1
lighthouse: 13.0.3
Expand Down
12 changes: 12 additions & 0 deletions projects/cli/NOTICE.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@ This project includes the following bundled third-party software:
- archiver v8.0.0 [MIT]
Copyright: Chris Talkington (http://christalkington.com/)

- eslint v10.6.0 [MIT]
Copyright: Nicholas C. Zakas <nicholas+npm@nczconsulting.com>

- fast-glob v3.3.3 [MIT]
Copyright: Denis Malinochkin (https://mrmlnc.com)

- ignore v7.0.6 [MIT]
Copyright: kael

- marked v18.0.9 [MIT]
Copyright: Christopher Jeffrey

Expand Down Expand Up @@ -52,6 +61,9 @@ The following bundled components are provided under the MIT license:
@modelcontextprotocol/server v2.0.0 - Copyright Anthropic, PBC (https://anthropic.com)
adm-zip v0.6.0 - Copyright Nasca Iacob <adm-zip@pm.me> (https://github.com/cthackers)
archiver v8.0.0 - Copyright Chris Talkington (http://christalkington.com/)
eslint v10.6.0 - Copyright Nicholas C. Zakas <nicholas+npm@nczconsulting.com>
fast-glob v3.3.3 - Copyright Denis Malinochkin (https://mrmlnc.com)
ignore v7.0.6 - Copyright kael
marked v18.0.9 - Copyright Christopher Jeffrey
marked-terminal v7.3.0 - Copyright Mikael Brevik
open v11.0.0 - Copyright Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
Expand Down
Loading