Your first part
This walks through creating a single part — the smallest useful action in simple-plm.
Steps
-
Open the Parts list. From the dashboard, click Parts in the left navigation. You’ll see every part in the current branch.

-
Click “New part” in the top right.

-
Fill in the form.
- Part number — must match
^[A-Z0-9][A-Z0-9-]{2,49}$. Examples:R-10K-0603,PCB-MAIN-001. The form validates inline; you can’t submit an invalid PN. - Description — short human-readable label.
- Revision — free-form string. Use
Aif your team has no scheme yet. - Attributes — optional key/value pairs.
- Part number — must match
-
Click Create. You land on the part detail page.

What just happened on disk
Behind the dashboard, a commit landed on the org’s main branch:
+ plm-data/parts/PCB-MAIN-001/part.yamlThe file is roughly the YAML shown on the Parts concept page. You can git pull the org’s workspace repo locally and see it.
Next
You probably want to attach a BOM next — see Create a BOM.