SimReady Add Profile
Purpose
Use this skill to add a brand-new profile under nv_core/sr_specs/docs/profiles/. A profile is a named, versioned bundle of exact feature IDs and versions for a target asset class or runtime.
Do not use this skill for a new version of an existing profile. Use simready-foundation-update-profile for that.
Prerequisites
Before editing, read:
AGENTS.md
nv_core/sr_specs/docs/guides/guides.md
nv_core/sr_specs/docs/guides/profiles/profiles.md
nv_core/sr_specs/docs/guides/feature_adapters/feature_adapters.md
nv_core/sr_specs/docs/profiles/ (per-profile TOML files, one per profile)
nv_core/sr_specs/docs/profiles/profiles.md
- nearby profile markdown files for the same asset class or runtime
nv_core/sr_specs/docs/features/feature-dependency-graph.md
Inputs
Collect or infer:
| Input |
Requirement |
profile_name |
New profile name, such as Prop-Robotics-Neutral. Use title-case words separated by hyphens. |
profile_version |
Initial version, usually 1.0.0 unless the user states otherwise. |
target_asset_class |
Prop, robot body, scene, material library, or another concrete class. |
target_runtime |
Neutral OpenUSD, PhysX, Isaac, or another runtime target. |
feature_bundle |
Exact feature IDs and versions. |
profile_markdown_name |
Markdown file path under docs/profiles/. |
adapter_plan |
Required adapters from related profiles, or none. |
validation_strategy |
Example assets, validator command, runtime test, or documented gap. |
Instructions
Use this checklist when changing the repository:
- Confirm the profile name is new across the per-profile TOML files in
profiles/.
- Choose a feature bundle from exact existing feature JSON manifests. Do not reference a feature version that does not exist.
- Check feature dependencies. Avoid duplicating dependencies unless existing profiles do so intentionally for clarity.
- Create a new per-profile TOML file under
profiles/ (e.g. profiles/<profile_name>.toml) containing a [Profile-Name] table with the initial version and ordered feature list.
- Create a profile markdown page under
nv_core/sr_specs/docs/profiles/:
- purpose and target asset class
- target runtime/environment
- exact feature list and versions
- authoring requirements and known conditional features
- validation and runtime-test guidance
- references to feature docs and related profiles
- Update
nv_core/sr_specs/docs/profiles/profiles.md with the new profile row and toctree entry if the index uses one.
- Add feature adapter notes when this profile is expected to be an upgrade or conversion target from another profile.
- When the new profile differs from an existing related profile, identify every feature difference and whether a direct adapter path exists or is intentionally blocked.
- When validation tooling is available, run
workspace validate or the equivalent simready-validate command against a representative asset.
- Validate consistency:
- TOML parses
- every referenced feature ID/version exists in
docs/features/*.json
- profile markdown and the profile's TOML feature lists agree
profiles.md includes the new profile
Examples
Example request:
Create a new prop-factory-neutral SimReady profile similar to prop-robotics-neutral.
Expected result summary:
changed_files: new docs, manifests, indexes, or validation scaffolding
validation: focused static checks and any relevant docs/build checks
remaining_gaps: requirement, validator, adapter, profile, or runtime-test follow-up
Policies
- The per-profile TOML files in
profiles/ are the machine-readable source of truth.
- Keep the initial feature bundle focused. Do not add features that are merely nice to have.
- A feature may be conditionally applicable only when the profile docs and validator behavior make that condition clear.
- If new features are needed, create them with
simready-foundation-add-feature before referencing them.
- If the new profile supersedes or branches from another profile, document migration/adapters instead of rewriting the old profile.
Limitations
- Do not mutate published feature or profile versions in place.
- Do not invent requirement IDs or validator behavior when the contract is ambiguous; record the question.
- Do not skip index, manifest, validation, or downstream follow-up notes.
Troubleshooting
- Error: the new concept overlaps an existing artifact. Solution: update the existing capability, requirement, feature, profile, or adapter instead.
- Error: names or IDs conflict. Solution: re-check naming conventions and nearby indexes before editing further.
- Error: validation strategy is unclear. Solution: document deferred validation and the exact follow-up skill.
Resources
assets/openai.yaml preserves optional UI metadata for clients that read skill display hints. It is not required for the workflow.
Summary Format
Report:
| Field |
Meaning |
profile_name |
New profile. |
profile_version |
Initial version. |
profiles_toml |
TOML path changed. |
profile_markdown |
Profile docs path. |
features |
Exact feature IDs and versions. |
adapters |
Adapter plan or none. |
validation |
Checks run and remaining gaps. |
next_step |
Feature creation, adapter work, runtime test, or review. |
1---2name: simready-foundation-add-profile3description: Use for adding SimReady profile versions with feature bundles, docs, indexes, and validation notes.4license: Apache-2.05---678# SimReady Add Profile910## Purpose11Use this skill to add a brand-new profile under `nv_core/sr_specs/docs/profiles/`. A profile is a named, versioned bundle of exact feature IDs and versions for a target asset class or runtime.1213Do not use this skill for a new version of an existing profile. Use `simready-foundation-update-profile` for that.1415## Prerequisites16Before editing, read:1718- `AGENTS.md`19- `nv_core/sr_specs/docs/guides/guides.md`20- `nv_core/sr_specs/docs/guides/profiles/profiles.md`21- `nv_core/sr_specs/docs/guides/feature_adapters/feature_adapters.md`22- `nv_core/sr_specs/docs/profiles/` (per-profile TOML files, one per profile)23- `nv_core/sr_specs/docs/profiles/profiles.md`24- nearby profile markdown files for the same asset class or runtime25- `nv_core/sr_specs/docs/features/feature-dependency-graph.md`2627## Inputs2829Collect or infer:3031| Input | Requirement |32|---|---|33| `profile_name` | New profile name, such as `Prop-Robotics-Neutral`. Use title-case words separated by hyphens. |34| `profile_version` | Initial version, usually `1.0.0` unless the user states otherwise. |35| `target_asset_class` | Prop, robot body, scene, material library, or another concrete class. |36| `target_runtime` | Neutral OpenUSD, PhysX, Isaac, or another runtime target. |37| `feature_bundle` | Exact feature IDs and versions. |38| `profile_markdown_name` | Markdown file path under `docs/profiles/`. |39| `adapter_plan` | Required adapters from related profiles, or `none`. |40| `validation_strategy` | Example assets, validator command, runtime test, or documented gap. |4142## Instructions4344Use this checklist when changing the repository:45461. Confirm the profile name is new across the per-profile TOML files in `profiles/`.472. Choose a feature bundle from exact existing feature JSON manifests. Do not reference a feature version that does not exist.483. Check feature dependencies. Avoid duplicating dependencies unless existing profiles do so intentionally for clarity.494. Create a new per-profile TOML file under `profiles/` (e.g. `profiles/<profile_name>.toml`) containing a `[Profile-Name]` table with the initial version and ordered feature list.505. Create a profile markdown page under `nv_core/sr_specs/docs/profiles/`:51 - purpose and target asset class52 - target runtime/environment53 - exact feature list and versions54 - authoring requirements and known conditional features55 - validation and runtime-test guidance56 - references to feature docs and related profiles576. Update `nv_core/sr_specs/docs/profiles/profiles.md` with the new profile row and toctree entry if the index uses one.587. Add feature adapter notes when this profile is expected to be an upgrade or conversion target from another profile.598. When the new profile differs from an existing related profile, identify every feature difference and whether a direct adapter path exists or is intentionally blocked.609. When validation tooling is available, run `workspace validate` or the equivalent `simready-validate` command against a representative asset.6110. Validate consistency:62 - TOML parses63 - every referenced feature ID/version exists in `docs/features/*.json`64 - profile markdown and the profile's TOML feature lists agree65 - `profiles.md` includes the new profile6667## Examples6869Example request:7071```text72Create a new prop-factory-neutral SimReady profile similar to prop-robotics-neutral.73```7475Expected result summary:7677```text78changed_files: new docs, manifests, indexes, or validation scaffolding79validation: focused static checks and any relevant docs/build checks80remaining_gaps: requirement, validator, adapter, profile, or runtime-test follow-up81```8283## Policies8485- The per-profile TOML files in `profiles/` are the machine-readable source of truth.86- Keep the initial feature bundle focused. Do not add features that are merely nice to have.87- A feature may be conditionally applicable only when the profile docs and validator behavior make that condition clear.88- If new features are needed, create them with `simready-foundation-add-feature` before referencing them.89- If the new profile supersedes or branches from another profile, document migration/adapters instead of rewriting the old profile.9091## Limitations9293- Do not mutate published feature or profile versions in place.94- Do not invent requirement IDs or validator behavior when the contract is ambiguous; record the question.95- Do not skip index, manifest, validation, or downstream follow-up notes.9697## Troubleshooting9899- Error: the new concept overlaps an existing artifact. Solution: update the existing capability, requirement, feature, profile, or adapter instead.100- Error: names or IDs conflict. Solution: re-check naming conventions and nearby indexes before editing further.101- Error: validation strategy is unclear. Solution: document deferred validation and the exact follow-up skill.102103## Resources104105- `assets/openai.yaml` preserves optional UI metadata for clients that read skill display hints. It is not required for the workflow.106107## Summary Format108109Report:110111| Field | Meaning |112|---|---|113| `profile_name` | New profile. |114| `profile_version` | Initial version. |115| `profiles_toml` | TOML path changed. |116| `profile_markdown` | Profile docs path. |117| `features` | Exact feature IDs and versions. |118| `adapters` | Adapter plan or none. |119| `validation` | Checks run and remaining gaps. |120| `next_step` | Feature creation, adapter work, runtime test, or review. |