@hinen/pro-element-plus 1.7.16 → 1.8.0
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.
- package/dist/components/DataTable/DataTable.vue.d.ts +24 -6
- package/dist/components/DataTable/DataTable.vue.d.ts.map +1 -1
- package/dist/components/DataTable/props.d.ts +11 -2
- package/dist/components/DataTable/props.d.ts.map +1 -1
- package/dist/components/DataTable/types.d.ts +13 -1
- package/dist/components/DataTable/types.d.ts.map +1 -1
- package/dist/components/DataTable/useDataTable.d.ts.map +1 -1
- package/dist/components/DataTable/useFixedScrollbar.d.ts.map +1 -1
- package/dist/components/FormFields/FormCascadeSelect/FormCascadeSelect.vue.d.ts +136 -146
- package/dist/components/FormFields/FormCascadeSelect/FormCascadeSelect.vue.d.ts.map +1 -1
- package/dist/components/FormFields/FormCascadeSelect/props.d.ts +112 -114
- package/dist/components/FormFields/FormCascadeSelect/props.d.ts.map +1 -1
- package/dist/components/FormFields/FormCascadeSelect/types.d.ts +24 -1
- package/dist/components/FormFields/FormCascadeSelect/types.d.ts.map +1 -1
- package/dist/components/FormFields/FormTagInput/FormTagInput.vue.d.ts.map +1 -1
- package/dist/components/FormFields/FormTreeSelect/props.d.ts +3 -1
- package/dist/components/FormFields/FormTreeSelect/props.d.ts.map +1 -1
- package/dist/index.cjs +32 -32
- package/dist/index.js +2950 -2565
- package/dist/skills/building-form-workflows/SKILL.md +77 -0
- package/dist/skills/building-form-workflows/references/examples.md +47 -0
- package/dist/skills/building-form-workflows/references/field-selection.md +16 -0
- package/dist/skills/building-form-workflows/references/gotchas.md +10 -0
- package/dist/skills/building-form-workflows/references/workflow.md +21 -0
- package/dist/skills/building-modal-workflows/SKILL.md +79 -0
- package/dist/skills/building-modal-workflows/references/examples.md +104 -0
- package/dist/skills/building-modal-workflows/references/gotchas.md +19 -0
- package/dist/skills/building-modal-workflows/references/workflow.md +17 -0
- package/dist/skills/building-query-pages/SKILL.md +81 -0
- package/dist/skills/building-query-pages/references/examples.md +64 -0
- package/dist/skills/building-query-pages/references/field-selection.md +24 -0
- package/dist/skills/building-query-pages/references/gotchas.md +10 -0
- package/dist/skills/building-query-pages/references/workflow.md +22 -0
- package/dist/skills/building-selection-inputs/SKILL.md +85 -0
- package/dist/skills/building-selection-inputs/references/examples.md +87 -0
- package/dist/skills/building-selection-inputs/references/gotchas.md +19 -0
- package/dist/skills/building-selection-inputs/references/selection-guide.md +47 -0
- package/dist/skills/choosing-components/SKILL.md +78 -0
- package/dist/skills/choosing-components/references/component-groups.md +37 -0
- package/dist/skills/choosing-components/references/examples.md +91 -0
- package/dist/skills/choosing-components/references/gotchas.md +10 -0
- package/dist/skills/choosing-components/references/selection-guide.md +40 -0
- package/dist/skills/optimizing-component-skills/REVIEW.md +775 -0
- package/dist/skills/using-checkbox-group/SKILL.md +91 -0
- package/dist/skills/using-checkbox-group/references/examples.md +55 -0
- package/dist/skills/using-checkbox-group/references/gotchas.md +13 -0
- package/dist/skills/using-checkbox-group/references/props.md +83 -0
- package/dist/skills/using-config-provider/SKILL.md +96 -0
- package/dist/skills/using-config-provider/references/examples.md +38 -0
- package/dist/skills/using-config-provider/references/gotchas.md +13 -0
- package/dist/skills/using-config-provider/references/props.md +38 -0
- package/dist/skills/using-data-select/SKILL.md +127 -0
- package/dist/skills/using-data-select/references/examples.md +67 -0
- package/dist/skills/using-data-select/references/gotchas.md +19 -0
- package/dist/skills/using-data-select/references/props.md +126 -0
- package/dist/skills/using-data-table/SKILL.md +289 -0
- package/dist/skills/using-data-table/references/examples.md +347 -0
- package/dist/skills/using-data-table/references/gotchas.md +114 -0
- package/dist/skills/using-data-table/references/props.md +375 -0
- package/dist/skills/using-drawer/SKILL.md +104 -0
- package/dist/skills/using-drawer/references/examples.md +109 -0
- package/dist/skills/using-drawer/references/gotchas.md +16 -0
- package/dist/skills/using-drawer/references/props.md +105 -0
- package/dist/skills/using-ellipsis-text/SKILL.md +105 -0
- package/dist/skills/using-ellipsis-text/references/examples.md +71 -0
- package/dist/skills/using-ellipsis-text/references/gotchas.md +19 -0
- package/dist/skills/using-ellipsis-text/references/props.md +97 -0
- package/dist/skills/using-form-autocomplete/SKILL.md +87 -0
- package/dist/skills/using-form-autocomplete/references/examples.md +62 -0
- package/dist/skills/using-form-autocomplete/references/gotchas.md +13 -0
- package/dist/skills/using-form-autocomplete/references/props.md +100 -0
- package/dist/skills/using-form-cascade-select/SKILL.md +82 -0
- package/dist/skills/using-form-cascade-select/references/examples.md +59 -0
- package/dist/skills/using-form-cascade-select/references/gotchas.md +13 -0
- package/dist/skills/using-form-cascade-select/references/props.md +138 -0
- package/dist/skills/using-form-checkbox-group/SKILL.md +83 -0
- package/dist/skills/using-form-checkbox-group/references/examples.md +61 -0
- package/dist/skills/using-form-checkbox-group/references/gotchas.md +13 -0
- package/dist/skills/using-form-checkbox-group/references/props.md +85 -0
- package/dist/skills/using-form-date-picker/SKILL.md +79 -0
- package/dist/skills/using-form-date-picker/references/examples.md +54 -0
- package/dist/skills/using-form-date-picker/references/gotchas.md +10 -0
- package/dist/skills/using-form-date-picker/references/props.md +99 -0
- package/dist/skills/using-form-fields/SKILL.md +101 -0
- package/dist/skills/using-form-fields/references/examples.md +45 -0
- package/dist/skills/using-form-fields/references/gotchas.md +6 -0
- package/dist/skills/using-form-fields/references/props.md +57 -0
- package/dist/skills/using-form-item/SKILL.md +92 -0
- package/dist/skills/using-form-item/references/examples.md +59 -0
- package/dist/skills/using-form-item/references/gotchas.md +13 -0
- package/dist/skills/using-form-item/references/props.md +85 -0
- package/dist/skills/using-form-number/SKILL.md +82 -0
- package/dist/skills/using-form-number/references/examples.md +66 -0
- package/dist/skills/using-form-number/references/gotchas.md +13 -0
- package/dist/skills/using-form-number/references/props.md +82 -0
- package/dist/skills/using-form-radio-group/SKILL.md +83 -0
- package/dist/skills/using-form-radio-group/references/examples.md +53 -0
- package/dist/skills/using-form-radio-group/references/gotchas.md +13 -0
- package/dist/skills/using-form-radio-group/references/props.md +81 -0
- package/dist/skills/using-form-rate/SKILL.md +86 -0
- package/dist/skills/using-form-rate/references/examples.md +60 -0
- package/dist/skills/using-form-rate/references/gotchas.md +16 -0
- package/dist/skills/using-form-rate/references/props.md +88 -0
- package/dist/skills/using-form-select/SKILL.md +94 -0
- package/dist/skills/using-form-select/references/examples.md +67 -0
- package/dist/skills/using-form-select/references/gotchas.md +13 -0
- package/dist/skills/using-form-select/references/props.md +87 -0
- package/dist/skills/using-form-switch/SKILL.md +81 -0
- package/dist/skills/using-form-switch/references/examples.md +54 -0
- package/dist/skills/using-form-switch/references/gotchas.md +10 -0
- package/dist/skills/using-form-switch/references/props.md +83 -0
- package/dist/skills/using-form-tag-input/SKILL.md +83 -0
- package/dist/skills/using-form-tag-input/references/examples.md +53 -0
- package/dist/skills/using-form-tag-input/references/gotchas.md +13 -0
- package/dist/skills/using-form-tag-input/references/props.md +80 -0
- package/dist/skills/using-form-text/SKILL.md +82 -0
- package/dist/skills/using-form-text/references/examples.md +66 -0
- package/dist/skills/using-form-text/references/gotchas.md +13 -0
- package/dist/skills/using-form-text/references/props.md +98 -0
- package/dist/skills/using-form-time-picker/SKILL.md +78 -0
- package/dist/skills/using-form-time-picker/references/examples.md +53 -0
- package/dist/skills/using-form-time-picker/references/gotchas.md +10 -0
- package/dist/skills/using-form-time-picker/references/props.md +89 -0
- package/dist/skills/using-form-tree-select/SKILL.md +82 -0
- package/dist/skills/using-form-tree-select/references/examples.md +55 -0
- package/dist/skills/using-form-tree-select/references/gotchas.md +13 -0
- package/dist/skills/using-form-tree-select/references/props.md +86 -0
- package/dist/skills/using-image/SKILL.md +88 -0
- package/dist/skills/using-image/references/examples.md +31 -0
- package/dist/skills/using-image/references/gotchas.md +13 -0
- package/dist/skills/using-image/references/props.md +91 -0
- package/dist/skills/using-modal/SKILL.md +113 -0
- package/dist/skills/using-modal/references/examples.md +122 -0
- package/dist/skills/using-modal/references/gotchas.md +16 -0
- package/dist/skills/using-modal/references/props.md +100 -0
- package/dist/skills/using-query-form/SKILL.md +134 -0
- package/dist/skills/using-query-form/references/examples.md +103 -0
- package/dist/skills/using-query-form/references/gotchas.md +19 -0
- package/dist/skills/using-query-form/references/props.md +146 -0
- package/dist/skills/using-radio-group/SKILL.md +91 -0
- package/dist/skills/using-radio-group/references/examples.md +55 -0
- package/dist/skills/using-radio-group/references/gotchas.md +13 -0
- package/dist/skills/using-radio-group/references/props.md +83 -0
- package/dist/skills/using-select/SKILL.md +93 -0
- package/dist/skills/using-select/references/examples.md +50 -0
- package/dist/skills/using-select/references/gotchas.md +13 -0
- package/dist/skills/using-select/references/props.md +90 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,775 @@
|
|
|
1
|
+
# optimizing-component-skills Review Log
|
|
2
|
+
|
|
3
|
+
## Goal
|
|
4
|
+
|
|
5
|
+
This document tracks the package-level review of component-related skills under `packages/pro-element-plus/skills/`.
|
|
6
|
+
|
|
7
|
+
Current workflow:
|
|
8
|
+
|
|
9
|
+
1. Audit existing skills.
|
|
10
|
+
2. Record findings and recommendations here.
|
|
11
|
+
3. Wait for human confirmation on proposed changes.
|
|
12
|
+
4. Apply approved updates to skills.
|
|
13
|
+
5. Append implementation and verification results.
|
|
14
|
+
|
|
15
|
+
## Scope
|
|
16
|
+
|
|
17
|
+
The current review covers these groups:
|
|
18
|
+
|
|
19
|
+
- Router skills
|
|
20
|
+
- Page-shell and overlay skills
|
|
21
|
+
- Direct component skills
|
|
22
|
+
- Form foundation skills
|
|
23
|
+
- Form field wrapper skills
|
|
24
|
+
- Supporting `references/*` materials when they materially affect skill quality
|
|
25
|
+
|
|
26
|
+
## Status Model
|
|
27
|
+
|
|
28
|
+
- `not-reviewed`
|
|
29
|
+
- `reviewed-awaiting-confirmation`
|
|
30
|
+
- `approved-for-update`
|
|
31
|
+
- `updated`
|
|
32
|
+
- `verified`
|
|
33
|
+
- `blocked`
|
|
34
|
+
|
|
35
|
+
## Skill Inventory
|
|
36
|
+
|
|
37
|
+
### Routers
|
|
38
|
+
|
|
39
|
+
| Skill | Priority | Status |
|
|
40
|
+
| ------------------------- | -------- | -------- |
|
|
41
|
+
| choosing-components | P0 | verified |
|
|
42
|
+
| building-form-workflows | P0 | verified |
|
|
43
|
+
| building-query-pages | P0 | verified |
|
|
44
|
+
| building-selection-inputs | P0 | verified |
|
|
45
|
+
| building-modal-workflows | P0 | verified |
|
|
46
|
+
|
|
47
|
+
### Page shells, overlays, and direct components
|
|
48
|
+
|
|
49
|
+
| Skill | Priority | Status |
|
|
50
|
+
| --------------------- | -------- | -------- |
|
|
51
|
+
| using-query-form | P1 | verified |
|
|
52
|
+
| using-data-table | P1 | verified |
|
|
53
|
+
| using-config-provider | P1 | verified |
|
|
54
|
+
| using-modal | P1 | verified |
|
|
55
|
+
| using-drawer | P1 | verified |
|
|
56
|
+
| using-select | P2 | verified |
|
|
57
|
+
| using-data-select | P2 | verified |
|
|
58
|
+
| using-radio-group | P2 | verified |
|
|
59
|
+
| using-checkbox-group | P2 | verified |
|
|
60
|
+
| using-image | P2 | verified |
|
|
61
|
+
| using-ellipsis-text | P2 | verified |
|
|
62
|
+
|
|
63
|
+
### Form foundations and field wrappers
|
|
64
|
+
|
|
65
|
+
| Skill | Priority | Status |
|
|
66
|
+
| ------------------------- | -------- | -------- |
|
|
67
|
+
| using-form-item | P1 | verified |
|
|
68
|
+
| using-form-fields | P1 | verified |
|
|
69
|
+
| using-form-text | P2 | verified |
|
|
70
|
+
| using-form-number | P2 | verified |
|
|
71
|
+
| using-form-select | P2 | verified |
|
|
72
|
+
| using-form-autocomplete | P2 | verified |
|
|
73
|
+
| using-form-checkbox-group | P2 | verified |
|
|
74
|
+
| using-form-radio-group | P2 | verified |
|
|
75
|
+
| using-form-switch | P2 | verified |
|
|
76
|
+
| using-form-date-picker | P2 | verified |
|
|
77
|
+
| using-form-time-picker | P2 | verified |
|
|
78
|
+
| using-form-tree-select | P2 | verified |
|
|
79
|
+
| using-form-cascade-select | P2 | verified |
|
|
80
|
+
| using-form-tag-input | P2 | verified |
|
|
81
|
+
| using-form-rate | P2 | verified |
|
|
82
|
+
|
|
83
|
+
## Next-wave planning
|
|
84
|
+
|
|
85
|
+
The highest-value untouched area is now the **remaining wrapped field family** that still sits at `reviewed-awaiting-confirmation`.
|
|
86
|
+
|
|
87
|
+
### Recommended next batches
|
|
88
|
+
|
|
89
|
+
#### Batch A — remaining wrapped choice and scalar fields
|
|
90
|
+
|
|
91
|
+
- `using-form-switch`
|
|
92
|
+
- `using-form-date-picker`
|
|
93
|
+
- `using-form-time-picker`
|
|
94
|
+
|
|
95
|
+
Goal:
|
|
96
|
+
|
|
97
|
+
- verify their `SKILL.md` boundaries against the current form-family router
|
|
98
|
+
- improve any thin `examples.md`, `gotchas.md`, or `props.md` that still lag behind the now-stronger text/number/select siblings
|
|
99
|
+
|
|
100
|
+
#### Batch B — hierarchical and collection fields
|
|
101
|
+
|
|
102
|
+
- `using-form-tree-select`
|
|
103
|
+
- `using-form-cascade-select`
|
|
104
|
+
- `using-form-tag-input`
|
|
105
|
+
|
|
106
|
+
Goal:
|
|
107
|
+
|
|
108
|
+
- tighten routing against `FormSelect`, `FormAutocomplete`, and the selection router
|
|
109
|
+
- strengthen examples and gotchas around hierarchical choice and collection semantics
|
|
110
|
+
|
|
111
|
+
#### Batch C — specialized scalar field
|
|
112
|
+
|
|
113
|
+
- `using-form-rate`
|
|
114
|
+
|
|
115
|
+
Goal:
|
|
116
|
+
|
|
117
|
+
- check whether its examples/gotchas/props depth matches the stronger wrapper family pattern
|
|
118
|
+
- document its non-fit boundary against switch, radio, and numeric fields more explicitly if needed
|
|
119
|
+
|
|
120
|
+
## Review Dimensions
|
|
121
|
+
|
|
122
|
+
Each first-pass audit checks:
|
|
123
|
+
|
|
124
|
+
1. Role clarity and intended use.
|
|
125
|
+
2. Boundary clarity versus neighboring skills.
|
|
126
|
+
3. Routing and handoff consistency.
|
|
127
|
+
4. Coverage of common mistakes, examples, and references.
|
|
128
|
+
5. Structural consistency with the package skill template.
|
|
129
|
+
6. Evidence of duplication, ambiguity, or missing guidance.
|
|
130
|
+
|
|
131
|
+
## Round 1
|
|
132
|
+
|
|
133
|
+
### Summary
|
|
134
|
+
|
|
135
|
+
Round 1 completed for all current component-related skills under `packages/pro-element-plus/skills/`.
|
|
136
|
+
|
|
137
|
+
Overall assessment:
|
|
138
|
+
|
|
139
|
+
- The skill system is already structurally strong and internally consistent.
|
|
140
|
+
- Router skills are useful and readable, but some reference files are too thin and a few handoff guides overlap.
|
|
141
|
+
- Shell and direct component skills are mostly solid; the clearest content gap is in `using-config-provider` and `using-image`.
|
|
142
|
+
- Form skills are the most consistent part of the system and mainly need small consistency improvements rather than rewrites.
|
|
143
|
+
|
|
144
|
+
### Findings
|
|
145
|
+
|
|
146
|
+
#### Router skills
|
|
147
|
+
|
|
148
|
+
| Skill | Result | Findings |
|
|
149
|
+
| ------------------------- | ------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
150
|
+
| choosing-components | pass | Clear top-level router role and exit criteria. Main improvement area is richer examples and less duplicated selection guidance relative to `building-selection-inputs`. |
|
|
151
|
+
| building-form-workflows | needs-review | Good separation from query pages and strong wrapper mental model, but `references/workflow.md` is very short and `references/field-selection.md` overlaps heavily with query-page routing material. |
|
|
152
|
+
| building-query-pages | needs-review | Strong page-shell decision logic (`QueryForm` vs `DataTable`), but `references/workflow.md` is thin and `references/field-selection.md` duplicates a large part of the form-workflow field map. |
|
|
153
|
+
| building-selection-inputs | pass | Good visible-vs-dropdown and local-vs-request-driven routing. The selection guide substantially overlaps with `choosing-components/references/selection-guide.md`. |
|
|
154
|
+
| building-modal-workflows | pass | Strong shell-vs-content framing and clean handoff to form/query routers. Main gap is thin reference material, especially for overlay content decisions and close-handling examples. |
|
|
155
|
+
|
|
156
|
+
#### Page-shell, overlay, and direct component skills
|
|
157
|
+
|
|
158
|
+
| Skill | Result | Findings |
|
|
159
|
+
| --------------------- | ------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
160
|
+
| using-query-form | pass | Clear role and good separation from `DataTable`; no major structural issues found. |
|
|
161
|
+
| using-data-table | pass | One of the strongest skills in the set; remote/static modes, imperative control, and common mistakes are well covered. |
|
|
162
|
+
| using-config-provider | needs-review | Current scope is intentionally narrow and focused on shared `DataTable` empty/error UI. That is coherent with the file, but the package README suggests broader capability history, so the skill should either document that broader scope or explicitly state its current public boundary more strongly. |
|
|
163
|
+
| using-modal | pass | Good direct shell guidance and good alignment with overlay router. |
|
|
164
|
+
| using-drawer | pass | Good direct shell guidance and good alignment with overlay router. |
|
|
165
|
+
| using-select | pass | Clear distinction from `using-data-select` and strong local-option guidance. |
|
|
166
|
+
| using-data-select | pass | Clear request-driven positioning and good complement to `using-select`. |
|
|
167
|
+
| using-radio-group | pass | Clean single-choice guidance with correct routing boundary. |
|
|
168
|
+
| using-checkbox-group | pass | Clean multi-choice guidance with correct routing boundary. |
|
|
169
|
+
| using-image | needs-review | The skill describes retry/reload behavior well, but the naming around the retry affordance should be aligned with actual public props and README wording so users can reliably find the toggle they need. |
|
|
170
|
+
| using-ellipsis-text | pass | Focused, stable, and structurally consistent. |
|
|
171
|
+
|
|
172
|
+
#### Form foundations and field wrappers
|
|
173
|
+
|
|
174
|
+
| Group | Result | Findings |
|
|
175
|
+
| ---------------------------------------- | ------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
176
|
+
| using-form-item | pass | Clear base-wrapper abstraction; strong explanation of wrapper-first reasoning. |
|
|
177
|
+
| using-form-fields | pass | Clear family router; good bridge between wrapper semantics and concrete field skills. |
|
|
178
|
+
| All concrete `using-form-*` field skills | pass | This family is the most internally consistent part of the skill system. Structure, reference completeness, and value-semantics framing are all strong. Most improvements are parity and wording improvements, not architecture changes. |
|
|
179
|
+
|
|
180
|
+
#### Cross-cutting findings
|
|
181
|
+
|
|
182
|
+
1. **Reference depth is uneven.** Some `workflow.md` files are only 7-9 lines, which is enough to link out but not enough to act as a practical decision aid.
|
|
183
|
+
2. **Selection guidance is duplicated.** `choosing-components/references/selection-guide.md` and `building-selection-inputs/references/selection-guide.md` are very similar.
|
|
184
|
+
3. **Field-routing reference material overlaps.** `building-form-workflows/references/field-selection.md` and `building-query-pages/references/field-selection.md` share a large amount of mapping logic.
|
|
185
|
+
4. **Form skills are in the best shape.** They already follow a stable template with complete `props.md`, `examples.md`, and `gotchas.md` coverage.
|
|
186
|
+
5. **Round 1 found no evidence that the current router skills are missing.** They exist in the repository and should be treated as valid handoff destinations.
|
|
187
|
+
|
|
188
|
+
### Proposed updates
|
|
189
|
+
|
|
190
|
+
No skill files have been modified yet. Round 1 recommendations:
|
|
191
|
+
|
|
192
|
+
### High priority
|
|
193
|
+
|
|
194
|
+
1. Expand `building-form-workflows/references/workflow.md` into a more useful decision checklist.
|
|
195
|
+
2. Expand `building-query-pages/references/workflow.md` with a stronger page-shell and `ConfigProvider` decision path.
|
|
196
|
+
3. Reduce duplication between the two selection guides, either by consolidating them or by making one the canonical source and cross-linking from the other.
|
|
197
|
+
4. Reduce duplication between the two field-selection references by tightening each file's scope and cross-linking more explicitly.
|
|
198
|
+
|
|
199
|
+
### Medium priority
|
|
200
|
+
|
|
201
|
+
5. Strengthen `building-modal-workflows` references with overlay-content routing examples and close-handling examples.
|
|
202
|
+
6. Clarify `using-config-provider` scope against current package capabilities so users understand whether it is intentionally narrow or partially documented.
|
|
203
|
+
7. Align `using-image` wording and references with the actual retry/reload prop naming exposed by the package.
|
|
204
|
+
|
|
205
|
+
### Low priority
|
|
206
|
+
|
|
207
|
+
8. Add richer real-world examples to `choosing-components` so the top-level router feels more concrete on first use.
|
|
208
|
+
9. Review whether selected form-wrapper skills should add parity cross-links to direct-component counterparts where those counterparts exist and help users choose abstraction level faster.
|
|
209
|
+
|
|
210
|
+
### Suggested first modification batch after human confirmation
|
|
211
|
+
|
|
212
|
+
- `building-form-workflows/references/workflow.md`
|
|
213
|
+
- `building-query-pages/references/workflow.md`
|
|
214
|
+
- `choosing-components/references/selection-guide.md`
|
|
215
|
+
- `building-selection-inputs/references/selection-guide.md`
|
|
216
|
+
- `building-form-workflows/references/field-selection.md`
|
|
217
|
+
- `building-query-pages/references/field-selection.md`
|
|
218
|
+
- `using-config-provider/SKILL.md`
|
|
219
|
+
- `using-image/SKILL.md`
|
|
220
|
+
|
|
221
|
+
### Confirmed cleanup queue
|
|
222
|
+
|
|
223
|
+
The current cleanup queue is organized by priority and evidence from Round 1 plus the follow-up EllipsisText audit.
|
|
224
|
+
|
|
225
|
+
#### P0
|
|
226
|
+
|
|
227
|
+
1. `building-form-workflows/references/workflow.md` — was too thin to act as a practical decision checklist; updated and verified on 2026-03-25.
|
|
228
|
+
2. `building-query-pages/references/workflow.md` — was too thin and did not route clearly enough through page-shell and `ConfigProvider` decisions; updated and verified on 2026-03-25.
|
|
229
|
+
3. `choosing-components/references/selection-guide.md` — overlapped heavily with `building-selection-inputs/references/selection-guide.md`; updated and verified on 2026-03-25.
|
|
230
|
+
4. `building-selection-inputs/references/selection-guide.md` — overlapped heavily with `choosing-components/references/selection-guide.md`; updated and verified on 2026-03-25.
|
|
231
|
+
5. `building-form-workflows/references/field-selection.md` — overlapped with query-page field routing and needed tighter scope; updated and verified on 2026-03-25.
|
|
232
|
+
6. `building-query-pages/references/field-selection.md` — overlapped with form-workflow field routing and needed tighter scope; updated and verified on 2026-03-25.
|
|
233
|
+
|
|
234
|
+
#### P1
|
|
235
|
+
|
|
236
|
+
7. `using-config-provider/SKILL.md` — current skill was coherent but narrower than package capability signals; updated and verified on 2026-03-25.
|
|
237
|
+
8. `building-modal-workflows/references/*` — references were usable but thin for overlay-content routing and close-handling examples; updated and verified on 2026-03-25.
|
|
238
|
+
|
|
239
|
+
#### P2
|
|
240
|
+
|
|
241
|
+
9. `using-image/SKILL.md` — retry/reload wording needed tighter alignment with package-facing naming signals; updated and verified on 2026-03-25.
|
|
242
|
+
10. `using-ellipsis-text/*` — follow-up audit found missing default-behavior guidance, minimum setup detail, `lineClamp` precedence, `disabled` coverage, and dynamic overflow-update explanation; updated and verified on 2026-03-25.
|
|
243
|
+
11. `choosing-components/references/examples` direction — richer real-world entry examples were needed after higher-priority dedupe work; updated and verified on 2026-03-25.
|
|
244
|
+
|
|
245
|
+
### 2026-03-25 follow-up: using-ellipsis-text
|
|
246
|
+
|
|
247
|
+
Follow-up audit against `src/components/EllipsisText/props.ts`, `src/components/EllipsisText/EllipsisText.vue`, `src/components/EllipsisText/EllipsisText.stories.tsx`, and `src/components/Tooltip/props.ts` found that the original skill was structurally solid but under-documented in five places that matter to LLM routing quality:
|
|
248
|
+
|
|
249
|
+
1. default single-line truncation (`truncated: true`) was not called out clearly enough as the smallest correct setup;
|
|
250
|
+
2. `lineClamp` default and precedence over single-line truncation were not stated directly;
|
|
251
|
+
3. inherited `disabled` behavior was mentioned implicitly but not documented as a public control point;
|
|
252
|
+
4. the need for real layout constraints to produce overflow was easy to miss;
|
|
253
|
+
5. resize/content-change reactivity was mentioned at a high level but not reinforced in references and examples.
|
|
254
|
+
|
|
255
|
+
Applied update scope:
|
|
256
|
+
|
|
257
|
+
- `using-ellipsis-text/SKILL.md`
|
|
258
|
+
- `using-ellipsis-text/references/props.md`
|
|
259
|
+
- `using-ellipsis-text/references/examples.md`
|
|
260
|
+
- `using-ellipsis-text/references/gotchas.md`
|
|
261
|
+
|
|
262
|
+
Expected verification outcome:
|
|
263
|
+
|
|
264
|
+
- skill now explains the smallest correct single-line setup;
|
|
265
|
+
- references now document defaults, active-mode precedence, `disabled`, and dynamic updates;
|
|
266
|
+
- examples and gotchas now warn about layout constraints and mode confusion more directly.
|
|
267
|
+
|
|
268
|
+
Verification completed on 2026-03-25 by rereading the updated skill files against the component source and story files named above.
|
|
269
|
+
|
|
270
|
+
### 2026-03-25 follow-up: building-form-workflows workflow guide
|
|
271
|
+
|
|
272
|
+
Follow-up audit against `building-form-workflows/SKILL.md`, `building-form-workflows/references/workflow.md`, `building-form-workflows/references/field-selection.md`, `using-form-item/SKILL.md`, `using-form-fields/SKILL.md`, `using-query-form/SKILL.md`, `building-query-pages/SKILL.md`, and `building-query-pages/references/workflow.md` found four routing-quality gaps in the original workflow guide:
|
|
273
|
+
|
|
274
|
+
1. the file was only a thin link list and did not behave like a practical decision checklist;
|
|
275
|
+
2. it told readers to choose concrete `using-form-*` skills without pointing them to `field-selection.md`, which is the actual field-routing grid named by the parent skill;
|
|
276
|
+
3. it did not clearly distinguish business-form workflow decisions from query-page workflow decisions;
|
|
277
|
+
4. it did not send readers to `examples.md` or `gotchas.md` when the next problem was scenario fit or edge-case routing.
|
|
278
|
+
|
|
279
|
+
Applied update scope:
|
|
280
|
+
|
|
281
|
+
- `building-form-workflows/references/workflow.md`
|
|
282
|
+
|
|
283
|
+
Expected verification outcome:
|
|
284
|
+
|
|
285
|
+
- the workflow guide now starts with the business-form versus query-page boundary;
|
|
286
|
+
- it routes through `using-form-item`, `using-form-fields`, and `field-selection.md` in a clearer order;
|
|
287
|
+
- it tells readers when to reuse field semantics in `using-query-form` without collapsing the two workflows together;
|
|
288
|
+
- it links out to `gotchas.md` and `examples.md` for final checks instead of duplicating those files inline.
|
|
289
|
+
|
|
290
|
+
Verification completed on 2026-03-25 by rereading the updated workflow guide against the neighboring router and wrapper skills listed above.
|
|
291
|
+
|
|
292
|
+
### 2026-03-25 follow-up: building-query-pages workflow guide
|
|
293
|
+
|
|
294
|
+
Follow-up audit against `building-query-pages/SKILL.md`, `building-query-pages/references/workflow.md`, `building-query-pages/references/field-selection.md`, `using-query-form/SKILL.md`, `using-data-table/SKILL.md`, `using-config-provider/SKILL.md`, `building-form-workflows/SKILL.md`, and `building-form-workflows/references/workflow.md` found four routing-quality gaps in the original workflow guide:
|
|
295
|
+
|
|
296
|
+
1. the file was only a thin link list and did not behave like a practical page-shell decision checklist;
|
|
297
|
+
2. it mentioned query-field routing but did not send readers through `field-selection.md`, where the query-specific field grid actually lives;
|
|
298
|
+
3. it did not explain clearly enough when `ConfigProvider` belongs in the page decision versus when table customization should stay local;
|
|
299
|
+
4. it pointed toward `building-form-workflows` but did not explain the scope split between query-page shell decisions and business-form wrapper semantics.
|
|
300
|
+
|
|
301
|
+
Applied update scope:
|
|
302
|
+
|
|
303
|
+
- `building-query-pages/references/workflow.md`
|
|
304
|
+
|
|
305
|
+
Expected verification outcome:
|
|
306
|
+
|
|
307
|
+
- the workflow guide now starts with the query-page versus business-form boundary;
|
|
308
|
+
- it routes through `using-query-form`, `using-data-table`, and `field-selection.md` in a clearer order;
|
|
309
|
+
- it gives a narrower and more explicit decision for introducing `using-config-provider`;
|
|
310
|
+
- it keeps `building-form-workflows` as a handoff for wrapper semantics without duplicating that workflow inline.
|
|
311
|
+
|
|
312
|
+
Verification completed on 2026-03-25 by rereading the updated workflow guide against the neighboring shell and router skills listed above.
|
|
313
|
+
|
|
314
|
+
### 2026-03-25 follow-up: selection-guide dedupe
|
|
315
|
+
|
|
316
|
+
Follow-up audit against `choosing-components/SKILL.md`, `choosing-components/references/selection-guide.md`, `building-selection-inputs/SKILL.md`, `building-selection-inputs/references/selection-guide.md`, `using-select/SKILL.md`, `using-data-select/SKILL.md`, `using-checkbox-group/SKILL.md`, and `using-radio-group/SKILL.md` found four routing-quality gaps in the original pair of guides:
|
|
317
|
+
|
|
318
|
+
1. the two `selection-guide.md` files repeated nearly the same direct-component and wrapper-routing logic;
|
|
319
|
+
2. the top-level `choosing-components` guide was too deep in selection-specific content for a top-level router;
|
|
320
|
+
3. the specialist `building-selection-inputs` guide did not go deep enough on the actual selection-control decision sequence;
|
|
321
|
+
4. the pair did not clearly separate top-level family routing from selection-specific UX, data-source, and abstraction-level decisions.
|
|
322
|
+
|
|
323
|
+
Applied update scope:
|
|
324
|
+
|
|
325
|
+
- `choosing-components/references/selection-guide.md`
|
|
326
|
+
- `building-selection-inputs/references/selection-guide.md`
|
|
327
|
+
|
|
328
|
+
Expected verification outcome:
|
|
329
|
+
|
|
330
|
+
- the `choosing-components` guide now acts as a top-level handoff layer instead of a duplicate specialist guide;
|
|
331
|
+
- the `building-selection-inputs` guide now owns the concrete selection-control routing sequence;
|
|
332
|
+
- direct-component versus wrapper routing still exists, but only the specialist guide carries the deeper decision ordering;
|
|
333
|
+
- duplication between the two guides is materially reduced.
|
|
334
|
+
|
|
335
|
+
Verification completed on 2026-03-25 by rereading both updated guides against their parent router skills and the adjacent direct selection skills listed above.
|
|
336
|
+
|
|
337
|
+
### 2026-03-25 follow-up: field-selection dedupe
|
|
338
|
+
|
|
339
|
+
Follow-up audit against `building-form-workflows/SKILL.md`, `building-form-workflows/references/field-selection.md`, `building-query-pages/SKILL.md`, `building-query-pages/references/field-selection.md`, `using-form-select/SKILL.md`, `using-form-autocomplete/SKILL.md`, `using-form-date-picker/SKILL.md`, `using-form-switch/SKILL.md`, and `using-data-select/SKILL.md` found four routing-quality gaps in the original pair of guides:
|
|
340
|
+
|
|
341
|
+
1. both field-selection guides repeated most of the same wrapped-field categories;
|
|
342
|
+
2. the business-form field grid did not clearly establish itself as the canonical base map for stored-value semantics;
|
|
343
|
+
3. the query-page field grid repeated too much of the base field catalog instead of focusing on query-specific extensions such as request-driven option loading;
|
|
344
|
+
4. the pair did not make the distinction clear enough between data-entry semantics and filter-surface semantics.
|
|
345
|
+
|
|
346
|
+
Applied update scope:
|
|
347
|
+
|
|
348
|
+
- `building-form-workflows/references/field-selection.md`
|
|
349
|
+
- `building-query-pages/references/field-selection.md`
|
|
350
|
+
|
|
351
|
+
Expected verification outcome:
|
|
352
|
+
|
|
353
|
+
- the business-form field guide now acts as the canonical stored-value routing grid;
|
|
354
|
+
- the query-page field guide now acts as an extension layer on top of that base map;
|
|
355
|
+
- query-specific option-loading guidance is kept where it belongs;
|
|
356
|
+
- duplication between the two field grids is materially reduced without collapsing their distinct roles.
|
|
357
|
+
|
|
358
|
+
Verification completed on 2026-03-25 by rereading both updated guides against their parent router skills and the adjacent field skills listed above.
|
|
359
|
+
|
|
360
|
+
### 2026-03-25 follow-up: using-config-provider
|
|
361
|
+
|
|
362
|
+
Follow-up audit against `using-config-provider/SKILL.md`, `using-config-provider/references/{props,examples,gotchas}.md`, `building-query-pages/SKILL.md`, `using-data-table/SKILL.md`, and package-facing ConfigProvider mentions found four routing-quality gaps in the original skill:
|
|
363
|
+
|
|
364
|
+
1. it explained the slot-based contract correctly but did not clearly state when to choose provider-level sharing versus local `DataTable` slots;
|
|
365
|
+
2. it did not explain clearly enough that this skill is usually a downstream choice after query/list shell routing;
|
|
366
|
+
3. package-facing docs hinted at locale-oriented copy responsibilities, but the skill gave no guidance on how to interpret those signals safely;
|
|
367
|
+
4. the non-fit boundary against a broad global configuration system was present but could be stated more explicitly.
|
|
368
|
+
|
|
369
|
+
Applied update scope:
|
|
370
|
+
|
|
371
|
+
- `using-config-provider/SKILL.md`
|
|
372
|
+
|
|
373
|
+
Expected verification outcome:
|
|
374
|
+
|
|
375
|
+
- the skill now makes provider-vs-local-slot choice clearer;
|
|
376
|
+
- it acknowledges its normal relationship to `building-query-pages` and `using-data-table`;
|
|
377
|
+
- it treats README capability hints cautiously without overstating undocumented surface area;
|
|
378
|
+
- its fit and non-fit guidance is sharper for LLM routing.
|
|
379
|
+
|
|
380
|
+
Verification completed on 2026-03-25 by rereading the updated skill against its references plus the adjacent query-page and data-table skills named above.
|
|
381
|
+
|
|
382
|
+
### 2026-03-25 follow-up: building-modal-workflows references
|
|
383
|
+
|
|
384
|
+
Follow-up audit against `building-modal-workflows/SKILL.md`, `building-modal-workflows/references/{workflow,examples,gotchas}.md`, `using-modal/SKILL.md`, and `using-drawer/SKILL.md` found four routing-quality gaps in the original reference set:
|
|
385
|
+
|
|
386
|
+
1. `workflow.md` stated the shell and close-handling principles but did not explain clearly enough how to route overlay body content into form versus query/list inner workflows;
|
|
387
|
+
2. `examples.md` was too thin to help with overlay-content shape decisions and did not include a close-handling pattern;
|
|
388
|
+
3. the reference set told readers to keep business-side close logic explicit but did not point clearly enough to the downstream shell examples where that pattern is demonstrated;
|
|
389
|
+
4. `gotchas.md` did not explicitly warn that choosing the shell without checking the inner workflow can misroute the overlay design.
|
|
390
|
+
|
|
391
|
+
Applied update scope:
|
|
392
|
+
|
|
393
|
+
- `building-modal-workflows/references/workflow.md`
|
|
394
|
+
- `building-modal-workflows/references/examples.md`
|
|
395
|
+
- `building-modal-workflows/references/gotchas.md`
|
|
396
|
+
|
|
397
|
+
Expected verification outcome:
|
|
398
|
+
|
|
399
|
+
- overlay-content routing is now clearer between form content and query/list content;
|
|
400
|
+
- close-handling guidance now points toward a concrete downstream shell pattern;
|
|
401
|
+
- examples now cover short confirmations, side-panel editors, overlay-hosted forms, overlay-hosted query/list flows, and the minimum close-handling model;
|
|
402
|
+
- the gotchas now warn more directly about shell choice without content-shape checks.
|
|
403
|
+
|
|
404
|
+
Verification completed on 2026-03-25 by rereading the updated references against the parent overlay router and the adjacent `using-modal` and `using-drawer` skills.
|
|
405
|
+
|
|
406
|
+
### 2026-03-25 follow-up: using-image
|
|
407
|
+
|
|
408
|
+
Follow-up audit against `using-image/SKILL.md`, `using-image/references/{props,examples,gotchas}.md`, and package-facing Image wording found three routing-quality gaps in the original skill:
|
|
409
|
+
|
|
410
|
+
1. the main skill mixed retry, refresh, and reload language in a way that made the public behavior naming less stable for LLM use;
|
|
411
|
+
2. package-facing docs and local references did not present a perfectly uniform prop label, so the skill needed to emphasize the behavior contract more carefully than a single disputed name;
|
|
412
|
+
3. the skill's common-mistake guidance referred too directly to one prop label instead of the safer product behavior: the built-in reload control after failure.
|
|
413
|
+
|
|
414
|
+
Applied update scope:
|
|
415
|
+
|
|
416
|
+
- `using-image/SKILL.md`
|
|
417
|
+
|
|
418
|
+
Expected verification outcome:
|
|
419
|
+
|
|
420
|
+
- the main skill now uses more consistent reload-after-failure language;
|
|
421
|
+
- it keeps preview and empty-state routing intact while reducing terminology drift;
|
|
422
|
+
- it warns readers to anchor on documented behavior when public docs use slightly different labels.
|
|
423
|
+
|
|
424
|
+
Verification completed on 2026-03-25 by rereading the updated skill against its own references and the package-facing Image wording noted above.
|
|
425
|
+
|
|
426
|
+
### 2026-03-25 follow-up: choosing-components examples
|
|
427
|
+
|
|
428
|
+
Follow-up audit against `choosing-components/SKILL.md`, `choosing-components/references/examples.md`, `building-form-workflows/SKILL.md`, `building-query-pages/SKILL.md`, `building-modal-workflows/SKILL.md`, and `building-selection-inputs/SKILL.md` found three routing-quality gaps in the original examples file:
|
|
429
|
+
|
|
430
|
+
1. the examples only covered the first hop into each workflow family and did not reflect the richer downstream handoffs added during the earlier workflow rewrites;
|
|
431
|
+
2. there were no realistic compound scenarios such as overlays that host forms or query/list content, or selection controls that belong inside wrapped forms;
|
|
432
|
+
3. the top-level router lacked an “unclear intent” example to help users classify whether their problem is really page shape, field choice, overlay shell, or selection modality.
|
|
433
|
+
|
|
434
|
+
Applied update scope:
|
|
435
|
+
|
|
436
|
+
- `choosing-components/references/examples.md`
|
|
437
|
+
|
|
438
|
+
Expected verification outcome:
|
|
439
|
+
|
|
440
|
+
- the top-level examples now look more like real product requests;
|
|
441
|
+
- they route more clearly into the current downstream router boundaries;
|
|
442
|
+
- they include compound and ambiguous entry cases instead of only single-family prompts.
|
|
443
|
+
|
|
444
|
+
Verification completed on 2026-03-25 by rereading the updated examples against the current top-level and downstream router skills named above.
|
|
445
|
+
|
|
446
|
+
### 2026-03-25 follow-up: selection parity batch
|
|
447
|
+
|
|
448
|
+
Follow-up audit against `using-select/SKILL.md`, `using-data-select/SKILL.md`, `using-radio-group/SKILL.md`, `using-checkbox-group/SKILL.md`, `using-form-select/SKILL.md`, `using-form-checkbox-group/SKILL.md`, `using-form-radio-group/SKILL.md`, and `building-selection-inputs/SKILL.md` found three practical parity gaps after the router rewrites:
|
|
449
|
+
|
|
450
|
+
1. `using-data-select` did not explain how to reason about request-driven selection inside wrapper flows and had no reciprocal handoff toward `using-form-select`;
|
|
451
|
+
2. `building-selection-inputs` referenced generic `using-form-*` handoff in the body but did not list the wrapped selection destinations explicitly in its main related-skill section;
|
|
452
|
+
3. `using-select` had a slightly confusing non-fit line that sent visible-choice cases to the router without acknowledging the concrete radio/checkbox alternatives.
|
|
453
|
+
|
|
454
|
+
Applied update scope:
|
|
455
|
+
|
|
456
|
+
- `using-data-select/SKILL.md`
|
|
457
|
+
- `building-selection-inputs/SKILL.md`
|
|
458
|
+
- `using-select/SKILL.md`
|
|
459
|
+
|
|
460
|
+
Expected verification outcome:
|
|
461
|
+
|
|
462
|
+
- request-aware dropdown routing now explains the wrapper boundary more explicitly;
|
|
463
|
+
- the selection router now names the wrapped selection destinations directly instead of hiding them in references only;
|
|
464
|
+
- the local select skill now points more cleanly toward visible-choice alternatives.
|
|
465
|
+
|
|
466
|
+
Verification completed on 2026-03-25 by rereading the updated selection skills against the current selection router and adjacent direct/wrapper skill set.
|
|
467
|
+
|
|
468
|
+
### 2026-03-26 follow-up: form foundation parity batch
|
|
469
|
+
|
|
470
|
+
Follow-up audit against `using-form-item/SKILL.md`, `using-form-fields/SKILL.md`, `using-form-text/SKILL.md`, `using-form-number/SKILL.md`, `using-form-select/SKILL.md`, `using-form-autocomplete/SKILL.md`, and `building-form-workflows/SKILL.md` found three practical abstraction-level gaps after the router rewrites:
|
|
471
|
+
|
|
472
|
+
1. `using-form-item` and `using-form-fields` did not clearly enough acknowledge `building-form-workflows` as the workflow layer above them;
|
|
473
|
+
2. `using-form-fields` still looked slightly narrower than the actual family map because its inline family selection examples and related skills under-emphasized `FormAutocomplete` and the workflow router above it;
|
|
474
|
+
3. `using-form-select` was strong as a concrete wrapped field, but its non-fit guidance did not clearly redirect users who were still deciding among wrapped field families rather than one select field in isolation.
|
|
475
|
+
|
|
476
|
+
Applied update scope:
|
|
477
|
+
|
|
478
|
+
- `using-form-item/SKILL.md`
|
|
479
|
+
- `using-form-fields/SKILL.md`
|
|
480
|
+
- `using-form-select/SKILL.md`
|
|
481
|
+
- `using-query-form/SKILL.md`
|
|
482
|
+
|
|
483
|
+
Expected verification outcome:
|
|
484
|
+
|
|
485
|
+
- the base wrapper and family-level skills now state their relationship to the business-form workflow router more explicitly;
|
|
486
|
+
- the family map now surfaces more wrapped-field destinations and the workflow-layer handoff more clearly;
|
|
487
|
+
- the wrapped select skill now redirects earlier when the user is still at the family-selection stage and more clearly distinguishes itself from autocomplete or visible-choice wrappers;
|
|
488
|
+
- `using-query-form` now makes wrapped select behavior more discoverable for common `valueType` routes.
|
|
489
|
+
|
|
490
|
+
Verification completed on 2026-03-26 by rereading the updated form foundation skills against `building-form-workflows` and the surrounding wrapped-field skills.
|
|
491
|
+
|
|
492
|
+
### 2026-03-26 follow-up: page-shell parity batch
|
|
493
|
+
|
|
494
|
+
Follow-up audit against `using-data-table/SKILL.md`, `using-query-form/SKILL.md`, `using-modal/SKILL.md`, `using-drawer/SKILL.md`, `building-query-pages/SKILL.md`, `building-modal-workflows/SKILL.md`, and the corresponding workflow references found two practical shell-handoff gaps after the workflow/reference rewrites:
|
|
495
|
+
|
|
496
|
+
1. the page-shell skills (`using-data-table`, `using-query-form`) did not acknowledge clearly enough that the same filter/list surfaces may live inside overlay shells rather than only normal page layouts;
|
|
497
|
+
2. the narrow overlay skills (`using-modal`, `using-drawer`) linked to the overlay router but did not directly call out the most common inner body workflows: business forms and query/list shells.
|
|
498
|
+
|
|
499
|
+
Applied update scope:
|
|
500
|
+
|
|
501
|
+
- `using-data-table/SKILL.md`
|
|
502
|
+
- `using-query-form/SKILL.md`
|
|
503
|
+
- `using-modal/SKILL.md`
|
|
504
|
+
- `using-drawer/SKILL.md`
|
|
505
|
+
|
|
506
|
+
Expected verification outcome:
|
|
507
|
+
|
|
508
|
+
- page-shell skills now mention overlay-shell hosting as a valid surrounding shell decision;
|
|
509
|
+
- overlay-shell skills now expose clearer direct handoffs to business-form and query/list inner workflows;
|
|
510
|
+
- reciprocal shell-level routing is stronger without changing the existing router hierarchy.
|
|
511
|
+
|
|
512
|
+
Verification completed on 2026-03-26 by rereading the updated shell skills against the current page-shell and overlay-shell routers plus their workflow references.
|
|
513
|
+
|
|
514
|
+
### 2026-03-26 follow-up: remaining choice-skill consistency batch
|
|
515
|
+
|
|
516
|
+
Follow-up audit against `using-radio-group/SKILL.md`, `using-checkbox-group/SKILL.md`, `using-form-radio-group/SKILL.md`, `using-form-checkbox-group/SKILL.md`, `using-form-autocomplete/SKILL.md`, `building-selection-inputs/SKILL.md`, and `using-form-fields/SKILL.md` found one small but real parity gap after the earlier selection and form-foundation batches:
|
|
517
|
+
|
|
518
|
+
1. the wrapped choice-oriented skills (`using-form-radio-group`, `using-form-checkbox-group`, `using-form-autocomplete`) still routed through `using-form-fields`, but did not explicitly acknowledge `building-selection-inputs` as the specialist selection router above the direct/wrapped choice split.
|
|
519
|
+
|
|
520
|
+
Applied update scope:
|
|
521
|
+
|
|
522
|
+
- `using-form-radio-group/SKILL.md`
|
|
523
|
+
- `using-form-checkbox-group/SKILL.md`
|
|
524
|
+
- `using-form-autocomplete/SKILL.md`
|
|
525
|
+
|
|
526
|
+
Expected verification outcome:
|
|
527
|
+
|
|
528
|
+
- the wrapped choice skills now expose a clearer route back to the specialist selection router;
|
|
529
|
+
- reciprocal routing between selection-family guidance and wrapped choice skills is more explicit;
|
|
530
|
+
- the change stays narrowly scoped and does not introduce broader wording churn.
|
|
531
|
+
|
|
532
|
+
Verification completed on 2026-03-26 by rereading the updated wrapped choice skills against `building-selection-inputs`, `using-form-fields`, and their direct counterparts.
|
|
533
|
+
|
|
534
|
+
### 2026-03-26 follow-up: selection examples depth batch
|
|
535
|
+
|
|
536
|
+
Follow-up audit against `building-selection-inputs/references/examples.md`, `using-radio-group/references/examples.md`, `using-checkbox-group/references/examples.md`, `using-form-radio-group/references/examples.md`, `using-form-checkbox-group/references/examples.md`, `using-form-autocomplete/references/examples.md`, and `using-form-fields/references/examples.md` found a shared documentation-depth gap:
|
|
537
|
+
|
|
538
|
+
1. the examples were mostly thin “Typical fit” bullet lists with little or no minimal usable pattern, so they helped classification slightly but did not help an LLM translate the routing decision into a smallest correct shape.
|
|
539
|
+
|
|
540
|
+
Applied update scope:
|
|
541
|
+
|
|
542
|
+
- `building-selection-inputs/references/examples.md`
|
|
543
|
+
- `using-radio-group/references/examples.md`
|
|
544
|
+
- `using-checkbox-group/references/examples.md`
|
|
545
|
+
- `using-form-radio-group/references/examples.md`
|
|
546
|
+
- `using-form-checkbox-group/references/examples.md`
|
|
547
|
+
- `using-form-autocomplete/references/examples.md`
|
|
548
|
+
- `using-form-fields/references/examples.md`
|
|
549
|
+
|
|
550
|
+
Expected verification outcome:
|
|
551
|
+
|
|
552
|
+
- the router-level examples now show concrete minimal routes instead of only forwarding to sibling skills;
|
|
553
|
+
- the direct and wrapped choice examples now include small usable patterns alongside scenario fit;
|
|
554
|
+
- the family-level form examples now include a more concrete base-wrapper-versus-concrete-wrapper scenario;
|
|
555
|
+
- example depth is improved without turning these reference files into prop dumps.
|
|
556
|
+
|
|
557
|
+
Verification completed on 2026-03-26 by rereading the updated examples against their parent skills and checking that the changes stayed within the targeted examples files plus this review log.
|
|
558
|
+
|
|
559
|
+
### 2026-03-26 follow-up: form examples depth batch
|
|
560
|
+
|
|
561
|
+
Follow-up audit against `building-form-workflows/references/examples.md`, `using-form-item/references/examples.md`, `using-form-fields/references/examples.md`, `using-form-text/references/examples.md`, `using-form-number/references/examples.md`, and `using-form-select/references/examples.md` found a similar documentation-depth gap on the form side:
|
|
562
|
+
|
|
563
|
+
1. the examples were mostly scenario labels and “Typical fit” bullets, with little or no minimal pattern to translate the routing decision into a smallest usable wrapped-form shape.
|
|
564
|
+
|
|
565
|
+
Applied update scope:
|
|
566
|
+
|
|
567
|
+
- `building-form-workflows/references/examples.md`
|
|
568
|
+
- `using-form-item/references/examples.md`
|
|
569
|
+
- `using-form-fields/references/examples.md`
|
|
570
|
+
- `using-form-text/references/examples.md`
|
|
571
|
+
- `using-form-number/references/examples.md`
|
|
572
|
+
- `using-form-select/references/examples.md`
|
|
573
|
+
|
|
574
|
+
Expected verification outcome:
|
|
575
|
+
|
|
576
|
+
- the workflow-level examples now show concrete mixed-form routes instead of only naming the next skill;
|
|
577
|
+
- the base-wrapper and wrapped-field examples now include small usable patterns;
|
|
578
|
+
- form example depth is improved without turning these files into prop dumps.
|
|
579
|
+
|
|
580
|
+
Verification completed on 2026-03-26 by rereading the updated form examples against their parent skills and checking that the changes stayed within the targeted examples files plus this review log.
|
|
581
|
+
|
|
582
|
+
### 2026-03-26 follow-up: shell examples depth batch
|
|
583
|
+
|
|
584
|
+
Follow-up audit against `using-data-table/references/examples.md`, `using-query-form/references/examples.md`, `using-modal/references/examples.md`, `using-drawer/references/examples.md`, `building-query-pages/references/examples.md`, and `building-modal-workflows/references/examples.md` found a similar documentation-depth gap on the shell side:
|
|
585
|
+
|
|
586
|
+
1. the router-level shell examples were still thinner than the narrower shell skills, and several shell examples relied on scenario labels or recommended-pattern bullets without giving a smallest usable pattern.
|
|
587
|
+
|
|
588
|
+
Applied update scope:
|
|
589
|
+
|
|
590
|
+
- `building-query-pages/references/examples.md`
|
|
591
|
+
- `building-modal-workflows/references/examples.md`
|
|
592
|
+
- `using-data-table/references/examples.md`
|
|
593
|
+
- `using-query-form/references/examples.md`
|
|
594
|
+
- `using-modal/references/examples.md`
|
|
595
|
+
- `using-drawer/references/examples.md`
|
|
596
|
+
|
|
597
|
+
Expected verification outcome:
|
|
598
|
+
|
|
599
|
+
- the query-page and overlay router examples now show concrete minimal routes instead of mostly forwarding to sibling skills;
|
|
600
|
+
- the page-shell and overlay-shell examples now include minimal usable patterns alongside scenario fit;
|
|
601
|
+
- shell example depth is improved without turning these files into prop dumps.
|
|
602
|
+
|
|
603
|
+
Verification completed on 2026-03-26 by rereading the updated shell examples against their parent skills and checking that the changes stayed within the targeted examples files plus this review log.
|
|
604
|
+
|
|
605
|
+
### 2026-03-26 follow-up: gotchas depth batch
|
|
606
|
+
|
|
607
|
+
Follow-up audit against `building-selection-inputs/references/gotchas.md`, `using-radio-group/references/gotchas.md`, `using-checkbox-group/references/gotchas.md`, `using-form-radio-group/references/gotchas.md`, `using-form-checkbox-group/references/gotchas.md`, `using-form-autocomplete/references/gotchas.md`, `using-data-table/references/gotchas.md`, `using-query-form/references/gotchas.md`, `using-modal/references/gotchas.md`, `using-drawer/references/gotchas.md`, and `building-modal-workflows/references/gotchas.md` found a depth imbalance:
|
|
608
|
+
|
|
609
|
+
1. the selection-oriented gotchas were mostly thin routing reminders rather than concrete misuse warnings;
|
|
610
|
+
2. the overlay router gotchas were accurate but still missed two high-value decision traps already implied by the parent skill: choosing the shell by habit and confusing visibility control with action handling.
|
|
611
|
+
|
|
612
|
+
Applied update scope:
|
|
613
|
+
|
|
614
|
+
- `building-selection-inputs/references/gotchas.md`
|
|
615
|
+
- `using-radio-group/references/gotchas.md`
|
|
616
|
+
- `using-checkbox-group/references/gotchas.md`
|
|
617
|
+
- `using-form-radio-group/references/gotchas.md`
|
|
618
|
+
- `using-form-checkbox-group/references/gotchas.md`
|
|
619
|
+
- `using-form-autocomplete/references/gotchas.md`
|
|
620
|
+
- `building-modal-workflows/references/gotchas.md`
|
|
621
|
+
|
|
622
|
+
Expected verification outcome:
|
|
623
|
+
|
|
624
|
+
- the selection gotchas now warn about routing order, short-versus-long option visibility, and the most common misfit choices;
|
|
625
|
+
- the wrapped choice gotchas now route more clearly back to the specialist selection router when the field family is still undecided;
|
|
626
|
+
- the overlay gotchas now call out shell-by-habit and visibility-versus-action confusion more directly.
|
|
627
|
+
|
|
628
|
+
Verification completed on 2026-03-26 by rereading the updated gotchas against their parent skills and checking that the changes stayed within the targeted gotchas files plus this review log.
|
|
629
|
+
|
|
630
|
+
### 2026-03-26 follow-up: props/reference consistency batch
|
|
631
|
+
|
|
632
|
+
Follow-up audit against `using-radio-group/references/props.md`, `using-checkbox-group/references/props.md`, `using-form-radio-group/references/props.md`, `using-form-checkbox-group/references/props.md`, `using-form-autocomplete/references/props.md`, `using-query-form/references/props.md`, `using-modal/references/props.md`, and `using-drawer/references/props.md` found a clear split:
|
|
633
|
+
|
|
634
|
+
1. the higher-level shell references were already reasonably explicit about defaults and contract behavior;
|
|
635
|
+
2. the choice-oriented props references were still closer to prop lists than to minimum-setup guides, and under-explained the real source-of-truth props and common value-shape interactions.
|
|
636
|
+
|
|
637
|
+
Applied update scope:
|
|
638
|
+
|
|
639
|
+
- `using-radio-group/references/props.md`
|
|
640
|
+
- `using-checkbox-group/references/props.md`
|
|
641
|
+
- `using-form-radio-group/references/props.md`
|
|
642
|
+
- `using-form-checkbox-group/references/props.md`
|
|
643
|
+
- `using-form-autocomplete/references/props.md`
|
|
644
|
+
|
|
645
|
+
Expected verification outcome:
|
|
646
|
+
|
|
647
|
+
- the direct and wrapped choice props references now start with a clearer minimum setup;
|
|
648
|
+
- they explain the real source-of-truth props (`options`, `valueEnum`, `fetchSuggestions`) more directly;
|
|
649
|
+
- they warn more clearly about value-shape alignment and premature slot customization.
|
|
650
|
+
|
|
651
|
+
Verification completed on 2026-03-26 by rereading the updated props references against their parent skills and checking that the changes stayed within the targeted props files plus this review log.
|
|
652
|
+
|
|
653
|
+
### 2026-03-26 follow-up: Batch A — wrapped scalar and date/time fields
|
|
654
|
+
|
|
655
|
+
Follow-up audit against `using-form-switch`, `using-form-date-picker`, and `using-form-time-picker` found a familiar reference-depth gap rather than a router failure:
|
|
656
|
+
|
|
657
|
+
1. the three `SKILL.md` files already had solid boundary guidance and clean family-level handoffs;
|
|
658
|
+
2. the main weakness was in the references, especially thin `examples.md` files with scenario labels but no minimal code patterns;
|
|
659
|
+
3. `using-form-time-picker/references/props.md` lagged behind the stronger date-picker reference by under-documenting `modelValue` and `valueFormat` as important field-shape props.
|
|
660
|
+
|
|
661
|
+
Applied update scope:
|
|
662
|
+
|
|
663
|
+
- `using-form-switch/references/props.md`
|
|
664
|
+
- `using-form-switch/references/examples.md`
|
|
665
|
+
- `using-form-date-picker/references/examples.md`
|
|
666
|
+
- `using-form-time-picker/references/props.md`
|
|
667
|
+
- `using-form-time-picker/references/examples.md`
|
|
668
|
+
|
|
669
|
+
Expected verification outcome:
|
|
670
|
+
|
|
671
|
+
- the switch/date/time wrapper examples now include minimal usable patterns instead of only scenario labels;
|
|
672
|
+
- `FormTimePicker` props now explain the core value-shape props more clearly;
|
|
673
|
+
- these three skills now sit closer to parity with the stronger wrapped-field references.
|
|
674
|
+
|
|
675
|
+
Verification completed on 2026-03-26 by rereading the updated references against their parent skills and checking that the changes stayed within the targeted files plus this review log.
|
|
676
|
+
|
|
677
|
+
### 2026-03-26 follow-up: Batch B — hierarchical and collection wrapped fields
|
|
678
|
+
|
|
679
|
+
Follow-up audit against `using-form-tree-select`, `using-form-cascade-select`, and `using-form-tag-input` found that the main weakness was not routing failure but parity depth:
|
|
680
|
+
|
|
681
|
+
1. the core `SKILL.md` files already had good boundary guidance, especially tree-versus-cascade and tag-input-versus-autocomplete/select distinctions;
|
|
682
|
+
2. the main reference gap was thin `examples.md` files with no minimal code patterns;
|
|
683
|
+
3. the wrapped hierarchical and collection skills also benefited from more explicit workflow-level related-skill links and one additional high-value gotcha each.
|
|
684
|
+
|
|
685
|
+
Applied update scope:
|
|
686
|
+
|
|
687
|
+
- `using-form-tree-select/SKILL.md`
|
|
688
|
+
- `using-form-tree-select/references/examples.md`
|
|
689
|
+
- `using-form-tree-select/references/gotchas.md`
|
|
690
|
+
- `using-form-cascade-select/SKILL.md`
|
|
691
|
+
- `using-form-cascade-select/references/examples.md`
|
|
692
|
+
- `using-form-cascade-select/references/gotchas.md`
|
|
693
|
+
- `using-form-tag-input/SKILL.md`
|
|
694
|
+
- `using-form-tag-input/references/examples.md`
|
|
695
|
+
- `using-form-tag-input/references/gotchas.md`
|
|
696
|
+
|
|
697
|
+
Expected verification outcome:
|
|
698
|
+
|
|
699
|
+
- the tree/cascade/tag wrappers now expose clearer links back to the business-form workflow router;
|
|
700
|
+
- their examples now include minimal usable patterns instead of only scenario labels;
|
|
701
|
+
- their gotchas now surface one more contract-level misuse warning each.
|
|
702
|
+
|
|
703
|
+
Verification completed on 2026-03-26 by rereading the updated skills and references against their parent form-family skills and checking that the changes stayed within the targeted files plus this review log.
|
|
704
|
+
|
|
705
|
+
### 2026-03-26 follow-up: Batch C — specialized scalar field
|
|
706
|
+
|
|
707
|
+
Follow-up audit against `using-form-rate` found a smaller parity gap than the earlier batches:
|
|
708
|
+
|
|
709
|
+
1. the core skill already had good boundary guidance against radio-style named choices and true numeric controls;
|
|
710
|
+
2. the remaining weakness was reference depth, especially the examples file still using only scenario labels with no minimal code patterns;
|
|
711
|
+
3. the skill also benefited from one explicit workflow-layer related-skill link and clearer selection-family/non-fit cross-links so it matches the newer wrapped-field pattern.
|
|
712
|
+
|
|
713
|
+
Applied update scope:
|
|
714
|
+
|
|
715
|
+
- `using-form-rate/SKILL.md`
|
|
716
|
+
- `using-form-rate/references/props.md`
|
|
717
|
+
- `using-form-rate/references/examples.md`
|
|
718
|
+
- `using-form-rate/references/gotchas.md`
|
|
719
|
+
|
|
720
|
+
Expected verification outcome:
|
|
721
|
+
|
|
722
|
+
- `FormRate` now links back to the business-form workflow router more explicitly;
|
|
723
|
+
- it now links more clearly to the selection-family router and nearby wrapper alternatives;
|
|
724
|
+
- its examples now include minimal usable patterns instead of only scenario labels;
|
|
725
|
+
- its props and gotchas now better explain score semantics versus radio/checkbox/number alternatives;
|
|
726
|
+
- the skill now sits closer to parity with the stronger wrapped-field references.
|
|
727
|
+
|
|
728
|
+
Verification completed on 2026-03-26 by rereading the updated skill and examples against the parent form-family skills and checking that the changes stayed within the targeted files plus this review log.
|
|
729
|
+
|
|
730
|
+
### Change log
|
|
731
|
+
|
|
732
|
+
- 2026-03-25: Created review log and initialized audit inventory.
|
|
733
|
+
- 2026-03-25: Completed Round 1 first-pass audit for routers, shells/direct components, and form skills; recorded recommendations and set all current skills to `reviewed-awaiting-confirmation`.
|
|
734
|
+
- 2026-03-25: Organized the current cleanup queue by priority inside this review log and recorded the follow-up `using-ellipsis-text` update scope and evidence.
|
|
735
|
+
- 2026-03-25: Verified the `using-ellipsis-text` rewrite against `EllipsisText` source, tooltip props, and stories; status set to `verified`.
|
|
736
|
+
- 2026-03-25: Updated `building-form-workflows/references/workflow.md` to add practical routing guidance, explicit field-grid handoff, and clearer boundary lines against query-page workflows.
|
|
737
|
+
- 2026-03-25: Verified the `building-form-workflows` workflow-guide rewrite against adjacent router and wrapper skills; status set to `verified`.
|
|
738
|
+
- 2026-03-25: Updated `building-query-pages/references/workflow.md` to add clearer page-shell routing, explicit query-field-grid handoff, and a narrower `ConfigProvider` decision path.
|
|
739
|
+
- 2026-03-25: Verified the `building-query-pages` workflow-guide rewrite against adjacent shell and router skills; status set to `verified`.
|
|
740
|
+
- 2026-03-25: Updated the duplicated selection guides so `choosing-components` stays top-level and `building-selection-inputs` owns the specialist routing details.
|
|
741
|
+
- 2026-03-25: Verified the deduplicated selection guides against parent routers and adjacent selection-control skills; statuses set to `verified`.
|
|
742
|
+
- 2026-03-25: Updated the duplicated field-selection guides so business-form routing stays canonical and query-page routing becomes an extension layer.
|
|
743
|
+
- 2026-03-25: Verified the deduplicated field-selection guides against parent routers and adjacent field skills; statuses set to `verified`.
|
|
744
|
+
- 2026-03-25: Updated `using-config-provider/SKILL.md` to clarify provider-vs-local-slot routing, downstream shell positioning, and the safest interpretation of package-facing capability signals.
|
|
745
|
+
- 2026-03-25: Verified the `using-config-provider` skill rewrite against adjacent shell skills and its own references; status set to `verified`.
|
|
746
|
+
- 2026-03-25: Updated `building-modal-workflows` references to strengthen overlay-content routing and close-handling guidance.
|
|
747
|
+
- 2026-03-25: Verified the `building-modal-workflows` reference rewrite against adjacent overlay shell skills; status set to `verified`.
|
|
748
|
+
- 2026-03-25: Updated `using-image/SKILL.md` to prefer stable reload-after-failure wording over mixed retry/refresh terminology.
|
|
749
|
+
- 2026-03-25: Verified the `using-image` skill rewrite against its references and package-facing wording; status set to `verified`.
|
|
750
|
+
- 2026-03-25: Expanded `choosing-components/references/examples.md` into a richer top-level entry scenario set with clearer downstream handoffs.
|
|
751
|
+
- 2026-03-25: Verified the `choosing-components` examples rewrite against the current downstream router map; status set to `verified`.
|
|
752
|
+
- 2026-03-25: Started a new selection parity batch and updated `using-data-select`, `building-selection-inputs`, and `using-select` to tighten direct-versus-wrapper routing guidance.
|
|
753
|
+
- 2026-03-25: Verified the selection parity batch updates against adjacent selection skills; `using-select` and `using-data-select` statuses set to `verified`.
|
|
754
|
+
- 2026-03-26: Started a new form foundation parity batch and updated `using-form-item`, `using-form-fields`, and `using-form-select` to tighten wrapper-family and workflow-layer routing guidance.
|
|
755
|
+
- 2026-03-26: Verified the form foundation parity batch updates against adjacent wrapper skills; `using-form-item`, `using-form-fields`, `using-form-select`, and `using-query-form` statuses set to `verified`.
|
|
756
|
+
- 2026-03-26: Started a new page-shell parity batch and updated `using-data-table`, `using-query-form`, `using-modal`, and `using-drawer` to tighten shell-level reciprocal handoffs.
|
|
757
|
+
- 2026-03-26: Verified the page-shell parity batch updates against adjacent routers and workflow references; `using-data-table`, `using-query-form`, `using-modal`, and `using-drawer` statuses set to `verified`.
|
|
758
|
+
- 2026-03-26: Started a remaining choice-skill consistency batch and updated `using-form-radio-group`, `using-form-checkbox-group`, and `using-form-autocomplete` to add clearer selection-router handoffs.
|
|
759
|
+
- 2026-03-26: Verified the remaining choice-skill consistency batch against adjacent selection routers and wrapped-field skills; `using-form-radio-group`, `using-form-checkbox-group`, and `using-form-autocomplete` statuses set to `verified`.
|
|
760
|
+
- 2026-03-26: Started a selection examples depth batch and expanded the thinnest selection-related examples files into minimal scenario-driven patterns.
|
|
761
|
+
- 2026-03-26: Verified the selection examples depth batch against parent skills and target file scope.
|
|
762
|
+
- 2026-03-26: Started a form examples depth batch and expanded the thinnest form-related examples files into minimal scenario-driven patterns.
|
|
763
|
+
- 2026-03-26: Verified the form examples depth batch against parent skills and target file scope.
|
|
764
|
+
- 2026-03-26: Started a shell examples depth batch and expanded the shell/router examples files into minimal scenario-driven patterns.
|
|
765
|
+
- 2026-03-26: Verified the shell examples depth batch against parent skills and target file scope.
|
|
766
|
+
- 2026-03-26: Started a gotchas depth batch and expanded the thinnest selection and overlay gotchas files into sharper misuse warnings.
|
|
767
|
+
- 2026-03-26: Verified the gotchas depth batch against parent skills and target file scope.
|
|
768
|
+
- 2026-03-26: Started a props/reference consistency batch and tightened the thinnest choice-oriented props references around minimum setup and source-of-truth props.
|
|
769
|
+
- 2026-03-26: Verified the props/reference consistency batch against parent skills and target file scope.
|
|
770
|
+
- 2026-03-26: Started Batch A from the next-wave plan and strengthened the thinnest switch/date/time wrapped-field references.
|
|
771
|
+
- 2026-03-26: Verified Batch A against parent skills and target file scope; `using-form-switch`, `using-form-date-picker`, and `using-form-time-picker` statuses set to `verified`.
|
|
772
|
+
- 2026-03-26: Started Batch B from the next-wave plan and strengthened the thinnest tree/cascade/tag wrapped-field references.
|
|
773
|
+
- 2026-03-26: Verified Batch B against parent skills and target file scope; `using-form-tree-select`, `using-form-cascade-select`, and `using-form-tag-input` statuses set to `verified`.
|
|
774
|
+
- 2026-03-26: Started Batch C from the next-wave plan and strengthened the remaining wrapped rating-field references.
|
|
775
|
+
- 2026-03-26: Verified Batch C against parent skills and target file scope; `using-form-rate` status set to `verified`.
|