daisyui-blueprint 1.5.3 → 1.5.5
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/README.md +14 -1
- package/chunks/chunk-1.js +1 -1
- package/chunks/chunk-10.js +1 -1
- package/chunks/chunk-11.js +1 -1
- package/chunks/chunk-12.js +1 -1
- package/chunks/chunk-13.js +1 -1
- package/chunks/chunk-14.js +1 -1
- package/chunks/chunk-15.js +1 -1
- package/chunks/chunk-16.js +1 -1
- package/chunks/chunk-17.js +1 -1
- package/chunks/chunk-18.js +1 -6
- package/chunks/chunk-19.js +1 -0
- package/chunks/chunk-2.js +1 -1
- package/chunks/chunk-20.js +1 -0
- package/chunks/chunk-21.js +6 -0
- package/chunks/chunk-3.js +1 -1
- package/chunks/chunk-4.js +1 -1
- package/chunks/chunk-5.js +1 -1
- package/chunks/chunk-6.js +1 -1
- package/chunks/chunk-7.js +1 -1
- package/chunks/chunk-8.js +1 -1
- package/chunks/chunk-9.js +1 -1
- package/package.json +5 -5
- package/server.js +1 -1
package/README.md
CHANGED
|
@@ -45,7 +45,7 @@ these optional runtime settings:
|
|
|
45
45
|
| Variable | Default | Description |
|
|
46
46
|
| --- | ---: | --- |
|
|
47
47
|
| `MAX_PAGES` | `5` | Maximum Page Architect page IDs returned or accepted per call. |
|
|
48
|
-
| `
|
|
48
|
+
| `MAX_COMPONENT_RESPONSE_CHARS` | `24000` | Maximum serialized Component Syntax Expert response size in characters. The first requested entry is always returned even if it alone exceeds the budget. |
|
|
49
49
|
| `MAX_COMPONENT_SKIPS` | `7` | Maximum Page Architect candidate components that may omit syntax retrieval. |
|
|
50
50
|
| `QA_MAX_FILES` | `300` | Maximum files Quality Inspector may audit per call. |
|
|
51
51
|
| `QA_MAX_MB` | `2` | Maximum total megabytes Quality Inspector may audit per call. |
|
|
@@ -57,6 +57,19 @@ these optional runtime settings:
|
|
|
57
57
|
| `SKIP_COMPONENT_SYNTAX_EXPERT` | `false` | Set to `true` to skip Component Syntax Expert. |
|
|
58
58
|
| `SKIP_QUALITY_INSPECTOR` | `false` | Set to `true` to skip Quality Inspector. |
|
|
59
59
|
|
|
60
|
+
Component Syntax Expert accepts the full list of component and block IDs needed for a change, but
|
|
61
|
+
returns as many ordered entries as fit within `MAX_COMPONENT_RESPONSE_CHARS`. It stops before the
|
|
62
|
+
next entry would exceed the serialized response budget. When its next step lists remaining
|
|
63
|
+
`SnippetIDs`, call it again with the same `workflowId` and all listed IDs. Repeat until the final
|
|
64
|
+
batch advances to implementation and, for non-conversion workflows, Quality Inspector. A single
|
|
65
|
+
entry is always returned so an unusually large component cannot stall the workflow.
|
|
66
|
+
|
|
67
|
+
For Quality Inspector, use `auditIntent: "fix_changes"` after Blueprint edits UI code; findings
|
|
68
|
+
may then be fixed only within the supplied changed scope. Use `auditIntent: "report_only"` only
|
|
69
|
+
when the user explicitly requests a read-only audit, and report findings without editing files.
|
|
70
|
+
Every `files[].path` must be relative to the `projectRoot` stored by Setup Expert, such as
|
|
71
|
+
`src/App.tsx` or `.`; never pass an absolute path.
|
|
72
|
+
|
|
60
73
|
Then ask your AI agent to use daisyUI Blueprint:
|
|
61
74
|
|
|
62
75
|
- "Build a product management dashboard. Use daisyUI Blueprint."
|