@rudinmax87/united-we-stand 0.1.1 → 0.2.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/.united-we-stand/README.md +12 -7
- package/.united-we-stand/agents/0-status-checker.md +1 -1
- package/.united-we-stand/agents/1-initializer.md +3 -1
- package/.united-we-stand/agents/2-planner.md +3 -1
- package/.united-we-stand/agents/4-implementer.md +2 -2
- package/.united-we-stand/agents/5-code-reviewer.md +5 -2
- package/.united-we-stand/agents/optimizer.md +50 -0
- package/.united-we-stand/agents-md-block.md +6 -3
- package/.united-we-stand/antigravity-workflow.md +3 -1
- package/.united-we-stand/copilot-instructions.md +3 -1
- package/.united-we-stand/cursor-rule.mdc +3 -1
- package/.united-we-stand/framework/01-core-rules.md +36 -33
- package/.united-we-stand/framework/02-state-model.md +5 -4
- package/.united-we-stand/framework/03-stage-lifecycle.md +5 -3
- package/.united-we-stand/framework/04-command-routing.md +24 -19
- package/.united-we-stand/framework/06-spec-writing-standard.md +3 -1
- package/.united-we-stand/framework/07-definition-of-done.md +1 -1
- package/.united-we-stand/framework/08-skip-force-policy.md +5 -6
- package/.united-we-stand/framework/10-review-model.md +12 -3
- package/.united-we-stand/spec-driven/branch-template/02-plan.md +7 -4
- package/README.md +6 -2
- package/dist/commands/doctor.d.ts.map +1 -1
- package/dist/commands/doctor.js +3 -1
- package/dist/commands/doctor.js.map +1 -1
- package/dist/lib/templates.d.ts.map +1 -1
- package/dist/lib/templates.js +1 -0
- package/dist/lib/templates.js.map +1 -1
- package/package.json +1 -1
|
@@ -169,8 +169,10 @@ How chat usage works:
|
|
|
169
169
|
|
|
170
170
|
- if branch memory does not exist yet, explicit initialization prompts should start `1-initializer`
|
|
171
171
|
- broad start-of-work prompts should also default to `1-initializer` unless you explicitly ask for a later stage
|
|
172
|
-
- if branch memory does not exist yet and you ask for direct code changes, the AI should
|
|
173
|
-
-
|
|
172
|
+
- if branch memory does not exist yet and you ask for direct code changes without explicitly asking to initialize, the AI should continue helping normally and should not interrupt to explain framework setup
|
|
173
|
+
- framework initialization guidance should appear only when you explicitly ask to initialize or explicitly bring up the framework
|
|
174
|
+
- when initialization is requested, the AI should always do a fresh live check of the current git branch before creating branch memory
|
|
175
|
+
- it should not reuse an earlier branch check, earlier status output, or remembered branch context from the same chat as the initialization target
|
|
174
176
|
- if the current branch is the detected default branch, initialization should warn and ask for confirmation before creating branch memory unless you explicitly use `--force`
|
|
175
177
|
|
|
176
178
|
The workflow is mainly used in chat after installation:
|
|
@@ -196,7 +198,7 @@ After the workflow is initialized, each stage writes or updates its branch file
|
|
|
196
198
|
| `2-planner` | `02-plan.md` | Ordered plan, dependencies, risks, and suggested execution order |
|
|
197
199
|
| `3-designer` | `03-design.md` | Architecture, interfaces, boundaries, data flow, and design decisions |
|
|
198
200
|
| `4-implementer` | `04-implementation.md` | What changed in code, validation performed, and remaining gaps |
|
|
199
|
-
| `5-code-reviewer` | `05-code-review.md` | Quality, maintainability, security, and review findings |
|
|
201
|
+
| `5-code-reviewer` | `05-code-review.md` | Quality, maintainability, security, optimization, and review findings |
|
|
200
202
|
| `6-finalizer` | `06-finalization.md` | Final summary, uncaptured changes, doc updates, and closure confirmation |
|
|
201
203
|
|
|
202
204
|
## Runtime Branch Memory
|
|
@@ -283,7 +285,7 @@ Optional framework stages:
|
|
|
283
285
|
- while workflow is active, `Current stage` should match the highest created numbered stage file in `.spec-driven/<branch-folder>/` among `01-init.md` through `06-finalization.md`; after explicit finalizer approval, closed workflow may use `Current stage = none`
|
|
284
286
|
- if you ask to change planning, init, design, review, or finalization content, the AI should update that stage in place without creating the next stage
|
|
285
287
|
- if you ask for earlier-stage work after the workflow has already moved forward, the AI should do that work without regressing `Current stage`, `Completed steps`, or `Incompleted stages`; it should record the stale downstream impact in status metadata instead
|
|
286
|
-
- if a request could be interpreted as advancing through two or more phases at once, the AI should
|
|
288
|
+
- if a request could be interpreted as advancing through two or more phases at once, the AI should explain that united-we-stand only runs one stage at a time, suggest the next recommended numbered stage first, and ask the user to confirm one single stage
|
|
287
289
|
- for branch-scoped work, the AI should stay inside `.spec-driven/<branch-folder>/` by default and update specs first unless you explicitly say otherwise
|
|
288
290
|
- later stage files should be created when those stages are actually started or explicitly amended
|
|
289
291
|
- `4-implementer` is the first framework stage allowed to change code
|
|
@@ -333,8 +335,8 @@ The framework is designed to route short natural requests such as `continue`, `f
|
|
|
333
335
|
- If branch memory does not exist yet, an explicit request such as `init the following` or `initialize this` should be treated as permission to create the branch spec and start `1-initializer`.
|
|
334
336
|
- If branch memory does not exist yet and the current branch is detected as the repository default branch, explicit init requests should still warn and ask for confirmation before creating `.spec-driven/...` unless you explicitly use `--force`.
|
|
335
337
|
- If branch memory does not exist yet, broader natural phrases such as `let's start this`, `help me with the following idea, i want...`, `i want to build...`, `i want to create...`, or `let's work on...` should also default to `1-initializer` unless you explicitly ask for a later stage.
|
|
336
|
-
- If branch memory does not exist yet and you ask for concrete code changes or other persistent repo work without explicitly asking to initialize the framework, the AI should
|
|
337
|
-
-
|
|
338
|
+
- If branch memory does not exist yet and you ask for concrete code changes or other persistent repo work without explicitly asking to initialize the framework, the AI should continue helping with that request normally and should not interrupt to explain framework setup.
|
|
339
|
+
- In that situation it should not create `.spec-driven/...` files unless you explicitly ask to initialize or explicitly bring up the framework.
|
|
338
340
|
|
|
339
341
|
## Framework Stage Chat Routes
|
|
340
342
|
|
|
@@ -405,7 +407,7 @@ Framework-stage routes:
|
|
|
405
407
|
|
|
406
408
|
These direct route labels select the acting stage behavior. If the workflow is already in a later stage, they must not regress `Current stage`, `Completed steps`, or `Incompleted stages`.
|
|
407
409
|
|
|
408
|
-
If branch memory does not exist yet and a direct request such as `implement this`, `fix these vulnerabilities`, `upgrade this dependency`, or `refactor this module` would otherwise cause repo changes, the AI should not silently enter that framework stage. It should
|
|
410
|
+
If branch memory does not exist yet and a direct request such as `implement this`, `fix these vulnerabilities`, `upgrade this dependency`, or `refactor this module` would otherwise cause repo changes, the AI should not silently enter that framework stage. It should continue helping with the request normally without announcing missing framework setup unless you explicitly ask to initialize or explicitly bring up the framework.
|
|
409
411
|
|
|
410
412
|
Standalone specialist routes:
|
|
411
413
|
|
|
@@ -414,6 +416,7 @@ Standalone specialist routes:
|
|
|
414
416
|
- `manage this project` -> `project-manager`
|
|
415
417
|
- `refactor this` -> `refactorer`
|
|
416
418
|
- `plan tests for this` -> `test-strategist`
|
|
419
|
+
- `check optimization` / `review website optimization` -> `optimizer`
|
|
417
420
|
- `check performance` -> `performance-reviewer`
|
|
418
421
|
- `check accessibility` -> `accessibility-reviewer`
|
|
419
422
|
- `write api contracts` -> `api-contract-writer`
|
|
@@ -430,6 +433,7 @@ Standalone route examples:
|
|
|
430
433
|
- `document this install process`
|
|
431
434
|
- `refactor this CLI without changing behavior`
|
|
432
435
|
- `plan tests for this doctor command`
|
|
436
|
+
- `check optimization for this landing page`
|
|
433
437
|
- `write api contracts for the new endpoint`
|
|
434
438
|
- `design sql schema for the booking tables`
|
|
435
439
|
- `create database diagrams for this workflow`
|
|
@@ -446,6 +450,7 @@ Standalone agents can be used at any time when the task needs specialized help.
|
|
|
446
450
|
- `project-manager`: summarize scope, blockers, milestones, dependencies, and coordination needs
|
|
447
451
|
- `refactorer`: plan or execute structural improvements while preserving behavior
|
|
448
452
|
- `test-strategist`: design proportionate test strategy and identify critical test coverage gaps
|
|
453
|
+
- `optimizer`: review website optimization, Lighthouse/PageSpeed risks, startup cost, media delivery, caching, and real-user performance bottlenecks
|
|
449
454
|
- `performance-reviewer`: review latency, throughput, memory, and performance hotspots
|
|
450
455
|
- `accessibility-reviewer`: review accessibility concerns for UI work, including semantics and navigation
|
|
451
456
|
- `api-contract-writer`: define API request/response boundaries, contracts, and field exposure rules
|
|
@@ -28,7 +28,7 @@ Establish reliable branch state and route the next action.
|
|
|
28
28
|
- For stage amendment requests, preserve the anchored `Current stage` unless the user explicitly asks to advance, skip, or bypass.
|
|
29
29
|
- If a lower stage was amended, do not treat that amendment as permission to create or populate a later stage.
|
|
30
30
|
- If earlier-stage work was changed after the workflow had already moved forward, report the stale downstream areas in status output without regressing workflow metadata.
|
|
31
|
-
- If a request could be interpreted as advancing through multiple stages at once, stop and ask
|
|
31
|
+
- If a request could be interpreted as advancing through multiple stages at once, stop, explain that united-we-stand only runs one stage at a time, and ask the user to confirm one single stage while suggesting the next recommended stage first.
|
|
32
32
|
- Perform deterministic auto-correction for status contradictions when safe.
|
|
33
33
|
- If auto-correction is made in `00-current-status.md`, include a brief note to user explaining what was corrected.
|
|
34
34
|
|
|
@@ -23,6 +23,8 @@ None.
|
|
|
23
23
|
- Convert user idea into initial branch definition.
|
|
24
24
|
- Capture scope boundaries, assumptions, questions, and success criteria.
|
|
25
25
|
- Capture out-of-scope explicitly to reduce downstream ambiguity.
|
|
26
|
+
- When initialization is requested, always perform a fresh live check of the current git branch before creating or updating branch memory.
|
|
27
|
+
- Do not rely on a previous branch check, previous status output, or remembered branch context from earlier in the same chat.
|
|
26
28
|
- If branch memory does not exist yet and the user explicitly asks to initialize or init the work, create the branch spec for `1-initializer`.
|
|
27
29
|
- If branch memory does not exist yet and the user uses natural bootstrap language such as `let's start this`, `help me with this idea`, `i want to build...`, or `let's work on...`, treat that as initialization intent by default.
|
|
28
30
|
- If the current branch is detected as the repository default branch and branch memory does not exist yet, warn about default-branch risks and ask for confirmation before creating the branch spec unless the user explicitly used `--force` or equivalent force/bypass wording.
|
|
@@ -30,7 +32,7 @@ None.
|
|
|
30
32
|
- If the user asks to modify initializer content, update `01-init.md` in place and keep `Current stage = 1-initializer` unless the user explicitly advances.
|
|
31
33
|
- Do not create or populate planning content just because initializer content now looks complete.
|
|
32
34
|
- Do not create `02-plan.md`, `03-design.md`, or any later-stage file from an initialization request alone.
|
|
33
|
-
- If a user request could be interpreted as asking for initialization plus later stages in the same pass,
|
|
35
|
+
- If a user request could be interpreted as asking for initialization plus later stages in the same pass, do only `1-initializer`. Explain that united-we-stand only runs one stage at a time and ask the user to confirm a single later stage separately if they want to move on after initialization.
|
|
34
36
|
|
|
35
37
|
## Required Output (`01-init.md`)
|
|
36
38
|
|
|
@@ -23,6 +23,7 @@ Turn initialized intent into an actionable sequence.
|
|
|
23
23
|
|
|
24
24
|
- Produce ordered plan, dependencies, and risk visibility.
|
|
25
25
|
- Define suggested execution order and critical blockers.
|
|
26
|
+
- Finish the planning step by reviewing and updating the full task list so it captures all work that still needs to be done.
|
|
26
27
|
- Do not implement code.
|
|
27
28
|
- If code/spec drift is observed, apply canonical conflict policy.
|
|
28
29
|
- If the user asks to add or modify planning content, update `02-plan.md` in place.
|
|
@@ -32,10 +33,11 @@ Turn initialized intent into an actionable sequence.
|
|
|
32
33
|
## Required Output (`02-plan.md`)
|
|
33
34
|
|
|
34
35
|
- Objectives
|
|
35
|
-
- High-level task breakdown
|
|
36
36
|
- Dependencies
|
|
37
37
|
- Risks / unknowns
|
|
38
38
|
- Suggested execution order
|
|
39
|
+
- Detailed task list
|
|
40
|
+
- Status
|
|
39
41
|
|
|
40
42
|
## Next-Step Status Rules
|
|
41
43
|
|
|
@@ -20,14 +20,14 @@ Implement branch changes while preserving traceability and quality.
|
|
|
20
20
|
|
|
21
21
|
## Prerequisites
|
|
22
22
|
|
|
23
|
-
- If branch memory does not exist yet, do not treat the request as automatic entry into `4-implementer`.
|
|
23
|
+
- If branch memory does not exist yet, do not treat the request as automatic entry into `4-implementer`. Continue helping with the implementation request normally unless the user explicitly asks to initialize or explicitly asks for framework-stage behavior.
|
|
24
24
|
- Step `1-initializer` complete unless explicit bypass/force behavior applies.
|
|
25
25
|
- If `2-planner`/`3-designer` are missing, warn and get confirmation before direct implementation.
|
|
26
26
|
|
|
27
27
|
## Behavior
|
|
28
28
|
|
|
29
29
|
- Update specs first when user intent changes.
|
|
30
|
-
- If
|
|
30
|
+
- If branch memory is missing and the user did not ask to initialize, do not mention missing framework setup or create stage metadata from ordinary implementation requests.
|
|
31
31
|
- Implement code changes and add/update tests proportionate to risk.
|
|
32
32
|
- Apply selected profiles (language + project-type) for coding/testing specifics.
|
|
33
33
|
- Treat `../steering/coding-steering.md` as mandatory for every code change.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
## Purpose
|
|
8
8
|
|
|
9
|
-
Review implementation for conformance, quality, security, and test sufficiency.
|
|
9
|
+
Review implementation for conformance, quality, security, optimization, and test sufficiency.
|
|
10
10
|
|
|
11
11
|
## Canonical References
|
|
12
12
|
|
|
@@ -22,7 +22,9 @@ Review implementation for conformance, quality, security, and test sufficiency.
|
|
|
22
22
|
|
|
23
23
|
## Behavior
|
|
24
24
|
|
|
25
|
-
- By default review
|
|
25
|
+
- By default review quality, security, and optimization dimensions.
|
|
26
|
+
- Treat optimization as the third default check and apply the standalone `optimizer` checklist when the reviewed scope includes a website, frontend, landing page, or user-facing performance path.
|
|
27
|
+
- If optimization is not materially applicable, say so explicitly instead of silently skipping it.
|
|
26
28
|
- User may request narrower review scope.
|
|
27
29
|
- Report findings and recommended fixes.
|
|
28
30
|
- Treat coding-steering violations as real findings, not optional style suggestions.
|
|
@@ -39,6 +41,7 @@ Review implementation for conformance, quality, security, and test sufficiency.
|
|
|
39
41
|
|
|
40
42
|
- Quality & maintainability findings
|
|
41
43
|
- Security & boundary findings
|
|
44
|
+
- Optimization findings
|
|
42
45
|
- Severity / priority
|
|
43
46
|
- Recommended fixes
|
|
44
47
|
- Lint/parser/static-analysis observations and whether those checks were run
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# Optimizer
|
|
2
|
+
|
|
3
|
+
> **Category:** Standalone role agent
|
|
4
|
+
> **May change code:** Only if explicitly requested by the user and allowed by repo/framework rules
|
|
5
|
+
> **Default framework file updates:** None unless explicitly asked, or when invoked as part of `5-code-reviewer`
|
|
6
|
+
|
|
7
|
+
## Purpose
|
|
8
|
+
|
|
9
|
+
Review websites and user-facing applications for optimization risks that affect real-user speed, Lighthouse/PageSpeed results, stability, and production behavior.
|
|
10
|
+
|
|
11
|
+
## Behavior
|
|
12
|
+
|
|
13
|
+
- Read `AGENTS.md`, relevant framework rules, relevant steering, and current branch specs if present.
|
|
14
|
+
- Use website optimization as the default audit lens, not only narrow runtime profiling.
|
|
15
|
+
- When invoked by `5-code-reviewer`, write findings into the `## Optimization findings` section of `05-code-review.md`.
|
|
16
|
+
- When used standalone, do not silently update framework stage files unless the user explicitly asks to persist findings.
|
|
17
|
+
- Prefer concrete findings with the affected route/component/asset, likely user impact, and recommended fix.
|
|
18
|
+
- If a checklist area is not applicable, say so explicitly instead of implying it was checked.
|
|
19
|
+
|
|
20
|
+
## Default Optimization Checklist
|
|
21
|
+
|
|
22
|
+
Review all of the following when relevant:
|
|
23
|
+
|
|
24
|
+
1. Reduce initial page work and startup cost.
|
|
25
|
+
2. Split JavaScript carefully without over-splitting critical paths.
|
|
26
|
+
3. Avoid duplicated app initialization and repeated global bootstrap work.
|
|
27
|
+
4. Delay non-critical UI, effects, analytics, widgets, and third-party scripts.
|
|
28
|
+
5. Optimize images, responsive delivery, compression, dimensions, and lazy loading.
|
|
29
|
+
6. Optimize audio and video loading, preload behavior, posters, and autoplay choices.
|
|
30
|
+
7. Optimize animations and visual effects, including canvas, parallax, observers, and reduced-motion behavior.
|
|
31
|
+
8. Reduce main-thread work from startup logic, rerenders, heavy parsing, and synchronous DOM work.
|
|
32
|
+
9. Prevent forced reflow and layout thrashing.
|
|
33
|
+
10. Optimize fonts, weights, render-blocking CSS, and loading behavior.
|
|
34
|
+
11. Verify good caching behavior for built assets, images, fonts, media, and CDN/browser headers.
|
|
35
|
+
12. Shorten the network dependency tree and reduce render-blocking chains.
|
|
36
|
+
13. Limit third-party impact and measure it separately.
|
|
37
|
+
14. Optimize DOM size and structure.
|
|
38
|
+
15. Avoid rendering offscreen content too early.
|
|
39
|
+
16. Handle mobile differently when lower-power behavior should be simplified.
|
|
40
|
+
17. Preserve layout stability and prevent CLS regressions.
|
|
41
|
+
18. Fix Lighthouse-accessibility issues that overlap with optimization work.
|
|
42
|
+
19. Fix SEO and metadata hygiene that affect Lighthouse and sharing quality.
|
|
43
|
+
20. Watch for production-only bundle breakage from chunking, stale assets, or minification-sensitive behavior.
|
|
44
|
+
21. Test optimization work in local, staging, and production-like environments when possible.
|
|
45
|
+
22. Measure with the right tools, not Lighthouse alone.
|
|
46
|
+
23. Verify what the browser is actually downloading in the network panel.
|
|
47
|
+
24. Re-test after meaningful changes and compare trends rather than trusting one run.
|
|
48
|
+
25. Prioritize fixes in sensible order: runtime errors, eager media, JS startup cost, code splitting, images, decorative effects, main-thread work, caching, render blockers, accessibility, environment verification, then re-test.
|
|
49
|
+
26. Treat an optimized website as one that is fast, interactive, stable, cache-sane, mobile-aware, and free of unnecessary early downloads.
|
|
50
|
+
27. Before calling work done, verify console health, duplicate bootstrap avoidance, media/image behavior, chunking, decorative effects, main-thread work, forced reflow hotspots, fonts, cache headers, accessibility warnings, and post-deploy Lighthouse/PageSpeed checks.
|
|
@@ -29,13 +29,15 @@ This repository uses **united-we-stand**, a spec-driven AI workflow framework th
|
|
|
29
29
|
- While workflow is active, `Current stage` must match the highest created numbered stage file present in `.spec-driven/<branch>/` among `01-init.md` through `06-finalization.md`; after explicit finalizer approval, closed workflow state may use `Current stage = none`.
|
|
30
30
|
- Avoid deadlocks: when user intent is clear (`continue`, `implement`, `fix`, `review`), take the nearest safe action and keep status traceability updated.
|
|
31
31
|
- Do not create, populate, or complete a higher-numbered stage just because the user amended the current stage.
|
|
32
|
-
- If a request could reasonably mean advancing through two or more phases at once, do not infer permission.
|
|
32
|
+
- If a request could reasonably mean advancing through two or more phases at once, do not infer permission and do not execute multiple stages. Explain that united-we-stand only runs one stage at a time, suggest the next recommended numbered stage first, and ask the user to confirm one single stage to run now.
|
|
33
33
|
- Do not assume missing stage files are completed.
|
|
34
34
|
- Do not create branch state folders preemptively; `branch-init` or an explicit user initialization request should create them.
|
|
35
35
|
- If branch memory does not exist yet, natural start-of-work requests such as `let's start this`, `help me with this idea`, or `i want to build...` should default to `1-initializer`.
|
|
36
36
|
- If branch memory does not exist yet, explicit init requests such as `init the following`, `initialize this`, `let's init this`, `help me with the following idea, i want...`, `let's start building this`, `i want to build...`, `i want to create...`, or `let's work on...` should be treated as permission to create the branch spec and start `1-initializer`.
|
|
37
|
-
-
|
|
38
|
-
-
|
|
37
|
+
- When initialization is requested, always perform a fresh live check of the current git branch before creating branch memory.
|
|
38
|
+
- Never reuse an earlier branch check, earlier status output, or remembered branch context from the same chat as the initialization target.
|
|
39
|
+
- If branch memory does not exist yet and the user asks for concrete code changes or other persistent repo work without explicitly asking to initialize, do not interrupt to explain missing framework setup. Help with the request normally instead of inferring a numbered stage.
|
|
40
|
+
- Do not create `.spec-driven/...` files from that request alone. Only surface initialization/framework guidance when the user explicitly asks to initialize or explicitly brings up the framework.
|
|
39
41
|
- If branch memory does not exist yet and the current branch is detected as the repository default branch, explicit init requests must warn about default-branch risks and ask for confirmation before creating `.spec-driven/...` files unless the user explicitly uses `--force`.
|
|
40
42
|
- The most reliable direct NLP bootstrap is to reference any installed united-we-stand file together with the init request, for example `AGENTS.md initialize this` or `.united-we-stand/README.md init the following`.
|
|
41
43
|
- Runtime branch memory is writable under `.spec-driven/` only.
|
|
@@ -85,6 +87,7 @@ Canonical source of these rules:
|
|
|
85
87
|
- `project-manager`
|
|
86
88
|
- `refactorer`
|
|
87
89
|
- `test-strategist`
|
|
90
|
+
- `optimizer`
|
|
88
91
|
- `performance-reviewer`
|
|
89
92
|
- `accessibility-reviewer`
|
|
90
93
|
- `api-contract-writer`
|
|
@@ -8,7 +8,9 @@ Before acting:
|
|
|
8
8
|
3. Read and update branch state under `.spec-driven/<sanitized-current-branch>/`.
|
|
9
9
|
4. If present, read `.spec-driven/.branch-routing.json` to resolve branch-folder exceptions.
|
|
10
10
|
|
|
11
|
-
If branch memory does not exist yet and the user asks for concrete code changes or other persistent repo work without explicitly asking to initialize the framework,
|
|
11
|
+
If branch memory does not exist yet and the user asks for concrete code changes or other persistent repo work without explicitly asking to initialize the framework, continue helping with the request normally and do not interrupt to explain framework setup. Do not create `.spec-driven/...` files unless the user explicitly asks to initialize or explicitly brings up the framework.
|
|
12
|
+
|
|
13
|
+
When initialization is requested, always perform a fresh live check of the current git branch before creating branch memory. Do not rely on a previous branch check, previous status output, or remembered branch context from earlier in the same chat.
|
|
12
14
|
|
|
13
15
|
If branch memory does not exist yet and the current branch is detected as the repository default branch, explicit init requests must warn about default-branch risks and ask for confirmation before creating `.spec-driven/...` files unless the user explicitly uses `--force`.
|
|
14
16
|
|
|
@@ -8,7 +8,9 @@ Before acting:
|
|
|
8
8
|
3. Read and update branch state under `.spec-driven/<sanitized-current-branch>/`.
|
|
9
9
|
4. If present, read `.spec-driven/.branch-routing.json` to resolve branch-folder exceptions.
|
|
10
10
|
|
|
11
|
-
If branch memory does not exist yet and the user asks for concrete code changes or other persistent repo work without explicitly asking to initialize the framework,
|
|
11
|
+
If branch memory does not exist yet and the user asks for concrete code changes or other persistent repo work without explicitly asking to initialize the framework, continue helping with the request normally and do not interrupt to explain framework setup. Do not create `.spec-driven/...` files unless the user explicitly asks to initialize or explicitly brings up the framework.
|
|
12
|
+
|
|
13
|
+
When initialization is requested, always perform a fresh live check of the current git branch before creating branch memory. Do not rely on a previous branch check, previous status output, or remembered branch context from earlier in the same chat.
|
|
12
14
|
|
|
13
15
|
If branch memory does not exist yet and the current branch is detected as the repository default branch, explicit init requests must warn about default-branch risks and ask for confirmation before creating `.spec-driven/...` files unless the user explicitly uses `--force`.
|
|
14
16
|
|
|
@@ -11,7 +11,9 @@ Before acting:
|
|
|
11
11
|
3. Read and update branch state under `.spec-driven/<sanitized-current-branch>/`.
|
|
12
12
|
4. If present, read `.spec-driven/.branch-routing.json` to resolve branch-folder exceptions.
|
|
13
13
|
|
|
14
|
-
If branch memory does not exist yet and the user asks for concrete code changes or other persistent repo work without explicitly asking to initialize the framework,
|
|
14
|
+
If branch memory does not exist yet and the user asks for concrete code changes or other persistent repo work without explicitly asking to initialize the framework, continue helping with the request normally and do not interrupt to explain framework setup. Do not create `.spec-driven/...` files unless the user explicitly asks to initialize or explicitly brings up the framework.
|
|
15
|
+
|
|
16
|
+
When initialization is requested, always perform a fresh live check of the current git branch before creating branch memory. Do not rely on a previous branch check, previous status output, or remembered branch context from earlier in the same chat.
|
|
15
17
|
|
|
16
18
|
If branch memory does not exist yet and the current branch is detected as the repository default branch, explicit init requests must warn about default-branch risks and ask for confirmation before creating `.spec-driven/...` files unless the user explicitly uses `--force`.
|
|
17
19
|
|
|
@@ -4,91 +4,94 @@ This file is the canonical source for global framework invariants.
|
|
|
4
4
|
|
|
5
5
|
## Non-Negotiable Rules
|
|
6
6
|
|
|
7
|
-
1. **Spec-driven development**
|
|
7
|
+
1. **Spec-driven development**
|
|
8
8
|
Branch specs are authoritative working memory for workflow state.
|
|
9
9
|
|
|
10
|
-
2. **User intent precedence (User is King and Spec is Truth)**
|
|
10
|
+
2. **User intent precedence (User is King and Spec is Truth)**
|
|
11
11
|
Latest confirmed user intent has highest authority. When intent changes direction, update relevant specs first, then update code if role allows.
|
|
12
12
|
|
|
13
|
-
3. **Branch-aware operation**
|
|
13
|
+
3. **Branch-aware operation**
|
|
14
14
|
All framework work is branch-aware and uses `.spec-driven/<sanitized-current-branch>/`.
|
|
15
15
|
|
|
16
|
-
4. **Persistent context over chat memory**
|
|
16
|
+
4. **Persistent context over chat memory**
|
|
17
17
|
Persisted framework files outrank remembered chat state when conflict exists.
|
|
18
18
|
|
|
19
|
-
5. **No silent stage jumps**
|
|
19
|
+
5. **No silent stage jumps**
|
|
20
20
|
Respect prerequisites and anchored stage model. Optional stages may be skipped only with explicit user instruction or `--force` behavior.
|
|
21
21
|
|
|
22
|
-
6. **No hallucinated completion**
|
|
22
|
+
6. **No hallucinated completion**
|
|
23
23
|
Missing stage files are not proof of completed work.
|
|
24
24
|
|
|
25
|
-
7. **Role-scoped edits only**
|
|
25
|
+
7. **Role-scoped edits only**
|
|
26
26
|
Agents may edit only files allowed by role scope and explicit user instruction.
|
|
27
27
|
|
|
28
|
-
8. **Spec first, then code**
|
|
28
|
+
8. **Spec first, then code**
|
|
29
29
|
If user changes intent, update spec context first, then code.
|
|
30
30
|
|
|
31
|
-
9. **No autonomous git operations**
|
|
31
|
+
9. **No autonomous git operations**
|
|
32
32
|
Never run `git add`, `git commit`, `git push`, `git rebase`, `git reset`, or branch-switch operations unless user explicitly requests it.
|
|
33
33
|
|
|
34
|
-
10. **Status-first resumption**
|
|
34
|
+
10. **Status-first resumption**
|
|
35
35
|
Resumed chats must consult `00-current-status.md` before deciding the next action.
|
|
36
36
|
|
|
37
|
-
11. **
|
|
37
|
+
11. **Initialization requires a fresh live branch check**
|
|
38
|
+
When the user asks to initialize, always perform a fresh live check of the current git branch at that moment. Do not rely on a previous branch check, previous status output, or remembered chat context from earlier in the same chat.
|
|
39
|
+
|
|
40
|
+
12. **Deterministic routing**
|
|
38
41
|
Natural-language command routing must follow `04-command-routing.md`.
|
|
39
42
|
|
|
40
|
-
|
|
43
|
+
13. **Runtime memory isolation**
|
|
41
44
|
Treat `.united-we-stand/` as installed framework content. Runtime branch memory writes must target `.spec-driven/` only.
|
|
42
45
|
|
|
43
|
-
|
|
46
|
+
14. **Detached HEAD safety**
|
|
44
47
|
Never attach branch memory to `head`. If branch detection is detached/ambiguous, require an explicit branch name before writing branch memory.
|
|
45
48
|
|
|
46
|
-
|
|
49
|
+
15. **Branch-folder collision safety**
|
|
47
50
|
When creating new branch memory, if target folder already exists and is not already linked to the same branch, require explicit user confirmation or a different folder name.
|
|
48
51
|
|
|
49
|
-
|
|
52
|
+
16. **Branch exception routing**
|
|
50
53
|
If a branch uses a non-default memory folder, persist that exception in `.spec-driven/.branch-routing.json` and use it for subsequent branch-folder resolution.
|
|
51
54
|
|
|
52
|
-
|
|
55
|
+
17. **No implicit advancement from edit requests**
|
|
53
56
|
Requests to add, modify, remove, clarify, or fix content inside a stage are amendment requests for that stage unless the user explicitly asks to advance, skip, or bypass.
|
|
54
57
|
|
|
55
|
-
|
|
58
|
+
18. **No downstream stage creation from in-stage amendments**
|
|
56
59
|
Editing one stage must not create, complete, or populate a higher-numbered stage unless the user explicitly requests that higher stage or explicitly advances the workflow.
|
|
57
60
|
|
|
58
|
-
|
|
61
|
+
19. **Branch-scoped work stays in spec by default**
|
|
59
62
|
If a request is branch-scoped and requires persistent work, operate through `.spec-driven/<branch>/` by default. Read and update the relevant spec files first unless the user explicitly says not to, or the request is unrelated, informational only, or does not require repository/spec changes.
|
|
60
63
|
|
|
61
|
-
|
|
62
|
-
Never advance from one stage to the next automatically. A stage may become complete, but it must remain anchored until the user explicitly advances or explicitly confirms a bypass.
|
|
64
|
+
20. **Never auto-advance stages**
|
|
65
|
+
Never advance from one stage to the next automatically. A stage may become complete, but it must remain anchored until the user explicitly advances or explicitly confirms a bypass to one specific stage.
|
|
63
66
|
|
|
64
|
-
|
|
65
|
-
If a request could reasonably be interpreted as
|
|
67
|
+
21. **Only one framework stage may run at a time**
|
|
68
|
+
Never execute, advance, skip across, or initialize multiple framework stages in the same pass. If a request could reasonably be interpreted as involving two or more stages, explain the one-stage-at-a-time rule and ask the user to confirm one single stage, suggesting the next recommended numbered stage first.
|
|
66
69
|
|
|
67
|
-
|
|
70
|
+
22. **No backward stage regression**
|
|
68
71
|
`Current stage` is a monotonic workflow progress tracker. Earlier-stage work may be amended later, but `Current stage`, `Completed steps`, and `Incompleted stages` must not move backward to an earlier numbered stage.
|
|
69
72
|
|
|
70
|
-
|
|
73
|
+
23. **Backward work must be recorded, not re-anchored**
|
|
71
74
|
If the user requests planning, design, or implementation work after the workflow has already advanced past that stage, perform the requested work, update the relevant earlier stage files in place, and preserve the later `Current stage`. Record the impact in status metadata so downstream stale work is visible.
|
|
72
75
|
|
|
73
|
-
|
|
76
|
+
24. **Stage metadata must match created stage files**
|
|
74
77
|
Workflow metadata is not independent from the branch folder contents. `Current stage` must always match the highest existing numbered stage file among `01-init.md` through `06-finalization.md`, and status checks must validate that alignment.
|
|
75
78
|
|
|
76
|
-
|
|
77
|
-
If branch memory does not exist yet and the user requests concrete code changes or other persistent work without explicitly asking to initialize the framework, do not silently enter a numbered framework stage.
|
|
79
|
+
25. **No implicit framework entry when branch memory is missing**
|
|
80
|
+
If branch memory does not exist yet and the user requests concrete code changes or other persistent work without explicitly asking to initialize the framework, do not silently enter a numbered framework stage and do not interrupt the user to announce missing framework setup. Continue helping with the request normally unless the user explicitly asks to initialize or explicitly brings up the framework.
|
|
78
81
|
|
|
79
|
-
|
|
80
|
-
If
|
|
82
|
+
26. **Framework guidance should be user-invoked when branch memory is missing**
|
|
83
|
+
If branch memory does not exist yet, do not keep re-raising initialization or framework setup on ordinary work. Only surface initialization/framework guidance when the user explicitly asks to initialize, mentions the framework, or references installed framework files or commands.
|
|
81
84
|
|
|
82
|
-
|
|
85
|
+
27. **Finalizer requires explicit closure confirmation**
|
|
83
86
|
`6-finalizer` never treats itself as definitively done on its own. It must surface final observations, ask the user to confirm that the final state is acceptable, and only then close the workflow.
|
|
84
87
|
|
|
85
|
-
|
|
88
|
+
28. **Closed workflow uses `Current stage = none`**
|
|
86
89
|
After explicit user closure confirmation, the branch workflow becomes closed rather than anchored to an active numbered stage. In that closed state, `Current stage = none`, `Next recommended step = none`, and `6-finalizer` is recorded as completed.
|
|
87
90
|
|
|
88
|
-
|
|
91
|
+
29. **Post-closure work reopens finalizer**
|
|
89
92
|
If the workflow was explicitly closed and the user later requests more branch changes, reopen `6-finalizer` as the current stage, clear closed/finalized state, and require finalization approval again after the new work is incorporated.
|
|
90
93
|
|
|
91
|
-
|
|
94
|
+
30. **Default-branch initialization requires confirmation**
|
|
92
95
|
If the current branch is detected as the repository default branch and branch memory does not yet exist, explicit initialization requests must warn about default-branch risks and ask for confirmation before creating `.spec-driven/...` files. Explicit `--force` semantics are the only bypass for that confirmation.
|
|
93
96
|
|
|
94
97
|
## Stage Mandatory Set
|
|
@@ -68,12 +68,13 @@
|
|
|
68
68
|
- keep any earlier explicitly used stages in `Completed steps` if they were already completed and are no longer current
|
|
69
69
|
- ensure every recorded completed or incompleted stage has its corresponding stage document present in `.spec-driven/<branch>/`
|
|
70
70
|
|
|
71
|
-
##
|
|
71
|
+
## One-Stage-At-A-Time Rule
|
|
72
72
|
|
|
73
73
|
- Never infer permission to cross two or more stages from broad outcome wording alone.
|
|
74
|
-
- If a request could mean
|
|
75
|
-
-
|
|
76
|
-
-
|
|
74
|
+
- If a request could mean `do planning, design, and implementation` or any other multi-stage jump, do not run multiple stages.
|
|
75
|
+
- Explain that united-we-stand only runs one stage at a time.
|
|
76
|
+
- Ask the user to confirm one single stage, suggesting the next recommended numbered stage first.
|
|
77
|
+
- Without that single-stage confirmation, keep `Current stage` anchored and perform only the nearest safe in-stage work.
|
|
77
78
|
|
|
78
79
|
## Category Invariants
|
|
79
80
|
|
|
@@ -51,9 +51,11 @@ Explicit user closure confirmation after `6-finalizer` is the trigger that moves
|
|
|
51
51
|
## Multi-Stage Requests
|
|
52
52
|
|
|
53
53
|
- Never auto-advance, even if the next stage seems obvious.
|
|
54
|
-
- If a request could be read as advancing through two or more stages at once,
|
|
55
|
-
-
|
|
56
|
-
-
|
|
54
|
+
- If a request could be read as advancing through two or more stages at once, do not run multiple stages.
|
|
55
|
+
- Explain that united-we-stand only runs one stage at a time.
|
|
56
|
+
- Suggest the next recommended numbered stage first.
|
|
57
|
+
- Ask the user to confirm one single stage to run now.
|
|
58
|
+
- Until the user confirms that single stage, keep the workflow anchored in the current stage.
|
|
57
59
|
|
|
58
60
|
## Resumption Inputs
|
|
59
61
|
|
|
@@ -45,7 +45,7 @@ Route to `0-status-checker`.
|
|
|
45
45
|
2. If current stage completed and prerequisites pass: advance to next numbered stage.
|
|
46
46
|
3. If current stage unfinished: report blocker unless user explicitly skips or uses force semantics.
|
|
47
47
|
|
|
48
|
-
Progression commands move only one stage at a time
|
|
48
|
+
Progression commands move only one stage at a time.
|
|
49
49
|
|
|
50
50
|
## Stage Amendment Commands
|
|
51
51
|
|
|
@@ -117,11 +117,13 @@ Examples:
|
|
|
117
117
|
|
|
118
118
|
If the user explicitly asks to initialize or init the work and branch memory does not exist yet:
|
|
119
119
|
|
|
120
|
-
1.
|
|
121
|
-
2.
|
|
122
|
-
3.
|
|
123
|
-
4.
|
|
124
|
-
5.
|
|
120
|
+
1. Perform a fresh live check of the current git branch at the moment initialization is requested.
|
|
121
|
+
2. Do not rely on a previous branch check, previous status output, or remembered chat context from earlier in the same chat.
|
|
122
|
+
3. Treat that live branch result as the explicit target for `.spec-driven/<branch>/`.
|
|
123
|
+
4. Create or initialize the branch runtime files needed for `1-initializer`.
|
|
124
|
+
5. Capture the user-provided intent in `01-init.md`.
|
|
125
|
+
6. Keep the workflow anchored in `1-initializer` unless the user explicitly advances.
|
|
126
|
+
7. Still enforce detached HEAD safety and branch-folder collision safety.
|
|
125
127
|
|
|
126
128
|
Initialization bootstrap does not grant permission to pre-create or populate planning, design, implementation, review, or finalization files.
|
|
127
129
|
|
|
@@ -163,13 +165,13 @@ Interpretation rule:
|
|
|
163
165
|
If branch memory does not exist yet and the user requests concrete code changes or other persistent work without explicitly asking to initialize the framework:
|
|
164
166
|
|
|
165
167
|
1. do not infer entry into `2-planner`, `3-designer`, `4-implementer`, `5-code-reviewer`, or `6-finalizer`
|
|
166
|
-
2.
|
|
167
|
-
3.
|
|
168
|
-
4.
|
|
168
|
+
2. do not warn about missing framework initialization by default
|
|
169
|
+
3. continue helping with the requested repo work normally
|
|
170
|
+
4. do not create `.spec-driven/...` files or numbered stage files unless the user explicitly asks to initialize or explicitly mentions the framework
|
|
169
171
|
5. if the user explicitly asks to initialize instead, create branch memory and start `1-initializer`
|
|
170
|
-
6. if the user explicitly asks to start the framework from a later stage or uses force/bypass semantics, require confirmation of
|
|
172
|
+
6. if the user explicitly asks to start the framework from a later stage or uses force/bypass semantics, require confirmation of one exact target stage before proceeding
|
|
171
173
|
|
|
172
|
-
This
|
|
174
|
+
This silent fallback applies on the default branch too. Do not interrupt ordinary work on `main`/default branches just to explain framework setup.
|
|
173
175
|
|
|
174
176
|
Examples that should trigger this warning-and-confirm flow when branch memory is missing:
|
|
175
177
|
|
|
@@ -186,6 +188,7 @@ Examples that should trigger this warning-and-confirm flow when branch memory is
|
|
|
186
188
|
- `manage this project` -> `project-manager`
|
|
187
189
|
- `refactor this` -> `refactorer`
|
|
188
190
|
- `plan tests for this` -> `test-strategist`
|
|
191
|
+
- `check optimization` / `review website optimization` -> `optimizer`
|
|
189
192
|
- `check performance` -> `performance-reviewer`
|
|
190
193
|
- `check accessibility` -> `accessibility-reviewer`
|
|
191
194
|
- `write api contracts` -> `api-contract-writer`
|
|
@@ -202,9 +205,9 @@ Standalone routes should not mutate stage files unless user asks explicitly.
|
|
|
202
205
|
|
|
203
206
|
When branch memory does not exist yet and user requests implementation or other persistent repo changes without explicit framework initialization:
|
|
204
207
|
|
|
205
|
-
-
|
|
206
|
-
-
|
|
207
|
-
-
|
|
208
|
+
- continue helping with the implementation request normally
|
|
209
|
+
- do not mention missing framework setup unless the user explicitly asks about initialization or framework flow
|
|
210
|
+
- do not create `.spec-driven/...` files or enter `4-implementer` metadata unless the user explicitly asks to initialize or explicitly asks for framework-stage behavior
|
|
208
211
|
- if user explicitly wants to start the framework from implementation or another later stage, require explicit confirmation of that bypass path first
|
|
209
212
|
|
|
210
213
|
When branch memory exists and user requests implementation and stages `2-planner` and/or `3-designer` are missing:
|
|
@@ -213,16 +216,17 @@ When branch memory exists and user requests implementation and stages `2-planner
|
|
|
213
216
|
- ask confirmation before direct implementation
|
|
214
217
|
- proceed only with explicit user confirmation or force bypass semantics
|
|
215
218
|
|
|
216
|
-
## Multi-Stage
|
|
219
|
+
## Multi-Stage Request Rule
|
|
217
220
|
|
|
218
221
|
If a request could reasonably be interpreted as advancing or executing two or more stages in one pass:
|
|
219
222
|
|
|
220
223
|
1. do not proceed on interpretation alone
|
|
221
|
-
2.
|
|
222
|
-
3.
|
|
223
|
-
4.
|
|
224
|
+
2. explain that united-we-stand only runs one stage at a time
|
|
225
|
+
3. suggest the next recommended numbered stage first
|
|
226
|
+
4. ask the user to confirm one single stage to run now, or to name another single stage to force
|
|
227
|
+
5. do not run grouped phase execution even if the original request names multiple stages
|
|
224
228
|
|
|
225
|
-
Examples that require
|
|
229
|
+
Examples that require single-stage clarification:
|
|
226
230
|
|
|
227
231
|
- `leave everything ready to start testing`
|
|
228
232
|
- `take this from init all the way to implementation`
|
|
@@ -246,6 +250,7 @@ If a user says short commands such as `continue`, `fix it`, `implement this`, or
|
|
|
246
250
|
- perform the nearest safe action for the active/target stage
|
|
247
251
|
- update status fields so the workflow remains traceable
|
|
248
252
|
- ask for explicit confirmation when bypassing prerequisites, when a request could jump across two or more stages, or when making risky/destructive changes
|
|
253
|
+
- when such a request implies multiple stages, ask for one single stage only and suggest the next recommended numbered stage first
|
|
249
254
|
- do not treat `fix this in planning`, `update init`, or similar stage amendment requests as permission to advance stages
|
|
250
255
|
- do not treat an earlier-stage direct command from a later stage as permission to regress workflow metadata
|
|
251
256
|
|
|
@@ -57,10 +57,11 @@ Required fields:
|
|
|
57
57
|
### `02-plan.md`
|
|
58
58
|
|
|
59
59
|
- Objectives
|
|
60
|
-
- High-level task breakdown
|
|
61
60
|
- Dependencies
|
|
62
61
|
- Risks / unknowns
|
|
63
62
|
- Suggested execution order
|
|
63
|
+
- Detailed task list
|
|
64
|
+
- Status
|
|
64
65
|
|
|
65
66
|
### `03-design.md`
|
|
66
67
|
|
|
@@ -83,6 +84,7 @@ Required fields:
|
|
|
83
84
|
|
|
84
85
|
- Quality & maintainability findings
|
|
85
86
|
- Security / boundary findings
|
|
87
|
+
- Optimization findings
|
|
86
88
|
- Severity / priority
|
|
87
89
|
- Recommended fixes
|
|
88
90
|
- Reviewed scope and non-reviewed scope
|
|
@@ -19,7 +19,7 @@ A stage is done when all are true:
|
|
|
19
19
|
- **Planner**: objectives, tasks, dependencies, and risks are actionable.
|
|
20
20
|
- **Designer**: architecture, boundaries, and implementation guidance are clear.
|
|
21
21
|
- **Implementer**: changes, rationale, tests, and validation are recorded.
|
|
22
|
-
- **Code Reviewer**: findings, severity, scope, and recommendations are explicit.
|
|
22
|
+
- **Code Reviewer**: quality, security, and optimization findings, severity, scope, and recommendations are explicit.
|
|
23
23
|
- **Finalizer**: delivered scope, known gaps, uncaptured spec/code differences, doc impact, and user closure confirmation status are clear; the workflow is only closed after explicit user confirmation.
|
|
24
24
|
|
|
25
25
|
## Implementation and Review Quality Gates
|
|
@@ -9,7 +9,7 @@ Follow stages in order unless user explicitly requests skip/bypass.
|
|
|
9
9
|
`--force` means explicit override of normal prerequisite/progression behavior.
|
|
10
10
|
|
|
11
11
|
Force/bypass must never be inferred from broad delivery language alone.
|
|
12
|
-
If a request could imply skipping or combining two or more stages,
|
|
12
|
+
If a request could imply skipping or combining two or more stages, explain the one-stage-at-a-time rule and require the user to confirm one exact target stage before proceeding.
|
|
13
13
|
|
|
14
14
|
When force/bypass is applied:
|
|
15
15
|
|
|
@@ -18,14 +18,13 @@ When force/bypass is applied:
|
|
|
18
18
|
- set new `Current stage` explicitly
|
|
19
19
|
- update `Next recommended step` accordingly
|
|
20
20
|
|
|
21
|
-
##
|
|
21
|
+
## Direct Work Before Initialization
|
|
22
22
|
|
|
23
|
-
If branch memory does not exist yet,
|
|
23
|
+
If branch memory does not exist yet, direct repo work without explicit initialization is separate from force/bypass:
|
|
24
24
|
|
|
25
|
-
-
|
|
26
|
-
- ask the user to confirm they want to continue outside the framework
|
|
25
|
+
- continue helping with the requested work normally
|
|
27
26
|
- do not create `.spec-driven/...` files unless the user explicitly asks to initialize
|
|
28
|
-
-
|
|
27
|
+
- do not interrupt to explain framework setup unless the user explicitly asks to initialize or explicitly mentions the framework
|
|
29
28
|
|
|
30
29
|
## Default Branch Initialization Warning
|
|
31
30
|
|
|
@@ -19,10 +19,11 @@ A **gap** is any requirement, feature, or constraint requested in earlier stages
|
|
|
19
19
|
|
|
20
20
|
Use for implementation review requests.
|
|
21
21
|
|
|
22
|
-
Default scope includes
|
|
22
|
+
Default scope includes all of:
|
|
23
23
|
|
|
24
24
|
- Quality and Maintainability
|
|
25
25
|
- Adversarial Security and Boundaries
|
|
26
|
+
- Optimization (default third check)
|
|
26
27
|
|
|
27
28
|
User may explicitly narrow scope.
|
|
28
29
|
|
|
@@ -41,9 +42,16 @@ User may explicitly narrow scope.
|
|
|
41
42
|
- authn/authz ownership checks (BOLA/IDOR)
|
|
42
43
|
- data exposure minimization
|
|
43
44
|
- dependency/supply-chain considerations
|
|
44
|
-
4. **
|
|
45
|
+
4. **Optimization**
|
|
46
|
+
- initial page work, lazy-loading, and startup cost
|
|
47
|
+
- duplicated initialization, unnecessary listeners, and repeated bootstrap work
|
|
48
|
+
- media, image, font, and third-party delivery cost
|
|
49
|
+
- main-thread work, forced reflow, DOM size, and offscreen rendering cost
|
|
50
|
+
- mobile behavior, layout stability, caching, and production-only bundle risks
|
|
51
|
+
- accessibility/SEO/best-practice issues that Lighthouse commonly surfaces during optimization work
|
|
52
|
+
5. **Testing**
|
|
45
53
|
- tests exist and cover high-risk paths proportionately
|
|
46
|
-
|
|
54
|
+
6. **Documentation**
|
|
47
55
|
- implementation and finalization notes are complete and truthful
|
|
48
56
|
|
|
49
57
|
## Output Requirements
|
|
@@ -53,6 +61,7 @@ Review output should state:
|
|
|
53
61
|
- what was reviewed
|
|
54
62
|
- what was not reviewed
|
|
55
63
|
- findings
|
|
64
|
+
- optimization findings or an explicit not-applicable note
|
|
56
65
|
- severity/priority
|
|
57
66
|
- recommended fixes
|
|
58
67
|
- lint/parser/static-analysis observations and whether those checks were run
|
|
@@ -6,9 +6,6 @@ Turn the initialized idea into an ordered execution plan.
|
|
|
6
6
|
## Objectives
|
|
7
7
|
TBD
|
|
8
8
|
|
|
9
|
-
## High-level task breakdown
|
|
10
|
-
TBD
|
|
11
|
-
|
|
12
9
|
## Dependencies
|
|
13
10
|
TBD
|
|
14
11
|
|
|
@@ -16,4 +13,10 @@ TBD
|
|
|
16
13
|
TBD
|
|
17
14
|
|
|
18
15
|
## Suggested execution order
|
|
19
|
-
TBD
|
|
16
|
+
TBD
|
|
17
|
+
|
|
18
|
+
## Detailed task list
|
|
19
|
+
TBD
|
|
20
|
+
|
|
21
|
+
## Status
|
|
22
|
+
TBD
|
package/README.md
CHANGED
|
@@ -134,6 +134,7 @@ It also installs the framework agents, including:
|
|
|
134
134
|
- `project-manager`
|
|
135
135
|
- `refactorer`
|
|
136
136
|
- `test-strategist`
|
|
137
|
+
- `optimizer`
|
|
137
138
|
- `performance-reviewer`
|
|
138
139
|
- `accessibility-reviewer`
|
|
139
140
|
- `api-contract-writer`
|
|
@@ -156,9 +157,11 @@ The workflow is used in chat after installation. The framework steps are as foll
|
|
|
156
157
|
`0-status-checker` is a routing and validation stage, not a delivery stage. Examples: `what's my status`, `what is the current status of united-we-stand`
|
|
157
158
|
|
|
158
159
|
All of those steps are called in the chat, and do not need to be referenced explicitly after initialization. Simple prompts such as `lets move to the next step`, `next step`, or `do the next step` should move the AI framework to the next numbered stage.
|
|
160
|
+
If a request sounds like it is asking for multiple stages at once, united-we-stand should explain that it only runs one stage at a time, suggest the next recommended numbered stage first, and ask the user to confirm one single stage to run now.
|
|
159
161
|
|
|
160
162
|
For the most reliable initialization bootstrap, explicitly reference an installed framework file in the prompt, for example `.united-we-stand/README.md initialize this` or `AGENTS.md init the following`. Also, indicate at the end to only do the initialization step.
|
|
161
163
|
In normal chat usage, the AI should create branch memory during initialization, follow the numbered workflow stages, and use standalone agents only when the task calls for specialized help.
|
|
164
|
+
When initialization is requested, the AI should always do a fresh live check of the current git branch before creating branch memory. It should not reuse an earlier branch check, earlier status output, or remembered branch context from the same chat as the initialization target.
|
|
162
165
|
|
|
163
166
|
After the workflow is initialized, each stage writes or updates its branch file as follows:
|
|
164
167
|
|
|
@@ -169,9 +172,10 @@ After the workflow is initialized, each stage writes or updates its branch file
|
|
|
169
172
|
| `2-planner` | `02-plan.md` | Ordered plan, dependencies, risks, and suggested execution order |
|
|
170
173
|
| `3-designer` | `03-design.md` | Architecture, interfaces, boundaries, data flow, and design decisions |
|
|
171
174
|
| `4-implementer` | `04-implementation.md` | What changed in code, validation performed, and remaining gaps |
|
|
172
|
-
| `5-code-reviewer` | `05-code-review.md` | Quality, maintainability, security, and review findings |
|
|
175
|
+
| `5-code-reviewer` | `05-code-review.md` | Quality, maintainability, security, optimization, and review findings |
|
|
173
176
|
| `6-finalizer` | `06-finalization.md` | Final summary, uncaptured changes, doc updates, and closure confirmation |
|
|
174
177
|
|
|
178
|
+
Each stage document can be updated later, either manually or by asking the agent in the chat, if the work changes or the plan evolves. When moving to the next stage, the AI should use the latest version of those written documents as the main source of truth, instead of depending only on the chat.
|
|
175
179
|
|
|
176
180
|
### What safety/destructive behavior exists
|
|
177
181
|
|
|
@@ -356,4 +360,4 @@ You can safely pin a minor version (e.g., `^0.1.0`) and expect patch updates to
|
|
|
356
360
|
|
|
357
361
|
# No Warranty
|
|
358
362
|
|
|
359
|
-
This software is provided as-is. The MIT License explicitly disclaims all warranties. Use it in production at your own discretion. Bugs will be addressed but there is no SLA or guaranteed response time.
|
|
363
|
+
This software is provided as-is. The MIT License explicitly disclaims all warranties. Use it in production at your own discretion. Bugs will be addressed but there is no SLA or guaranteed response time.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"doctor.d.ts","sourceRoot":"","sources":["../../src/commands/doctor.tsx"],"names":[],"mappings":"AAAA;;;;;GAKG;AAsBH,8CAA8C;AAC9C,MAAM,WAAW,oBAAoB;IACjC,gBAAgB,EAAE,MAAM,CAAC;IACzB,QAAQ,EAAE,OAAO,CAAC;IAClB,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC/B;
|
|
1
|
+
{"version":3,"file":"doctor.d.ts","sourceRoot":"","sources":["../../src/commands/doctor.tsx"],"names":[],"mappings":"AAAA;;;;;GAKG;AAsBH,8CAA8C;AAC9C,MAAM,WAAW,oBAAoB;IACjC,gBAAgB,EAAE,MAAM,CAAC;IACzB,QAAQ,EAAE,OAAO,CAAC;IAClB,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC/B;AA0YD;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,OAAO,EAAE,oBAAoB,GAAG,IAAI,CA8TpE"}
|
package/dist/commands/doctor.js
CHANGED
|
@@ -35,10 +35,11 @@ const REQUIRED_STAGE_SECTIONS = {
|
|
|
35
35
|
],
|
|
36
36
|
'02-plan.md': [
|
|
37
37
|
'## Objectives',
|
|
38
|
-
'## High-level task breakdown',
|
|
39
38
|
'## Dependencies',
|
|
40
39
|
'## Risks / unknowns',
|
|
41
40
|
'## Suggested execution order',
|
|
41
|
+
'## Detailed task list',
|
|
42
|
+
'## Status',
|
|
42
43
|
],
|
|
43
44
|
'03-design.md': [
|
|
44
45
|
'## Architecture / approach',
|
|
@@ -57,6 +58,7 @@ const REQUIRED_STAGE_SECTIONS = {
|
|
|
57
58
|
'05-code-review.md': [
|
|
58
59
|
'## Quality & maintainability findings',
|
|
59
60
|
'## Security / boundary findings',
|
|
61
|
+
'## Optimization findings',
|
|
60
62
|
'## Severity / priority',
|
|
61
63
|
'## Recommended fixes',
|
|
62
64
|
'## Reviewed scope and non-reviewed scope',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"doctor.js","sourceRoot":"","sources":["../../src/commands/doctor.tsx"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"doctor.js","sourceRoot":"","sources":["../../src/commands/doctor.tsx"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AACjC,OAAO,EAAE,eAAe,EAAE,uBAAuB,EAAE,MAAM,eAAe,CAAC;AACzE,OAAO,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAC7D,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAChD,OAAO,EAAE,oBAAoB,EAAE,6BAA6B,EAAE,MAAM,0BAA0B,CAAC;AAC/F,OAAO,EAEH,uBAAuB,EACvB,0BAA0B,GAC7B,MAAM,yBAAyB,CAAC;AACjC,OAAO,EACH,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EACjB,uBAAuB,EACvB,wBAAwB,GAC3B,MAAM,qBAAqB,CAAC;AA2B7B,MAAM,mBAAmB,GAAG;IACxB,aAAa,EAAE,gBAAgB;IAC/B,YAAY,EAAE,eAAe;IAC7B,cAAc,EAAE,iBAAiB;IACjC,iBAAiB,EAAE,oBAAoB;IACvC,mBAAmB,EAAE,uBAAuB;IAC5C,UAAU,EAAE,aAAa;IACzB,kBAAkB,EAAE,qBAAqB;IACzC,aAAa,EAAE,iBAAiB;IAChC,aAAa,EAAE,iBAAiB;CAC1B,CAAC;AAEX,MAAM,uBAAuB,GAA6B;IACtD,YAAY,EAAE;QACV,iCAAiC;QACjC,eAAe;QACf,gBAAgB;QAChB,gBAAgB;QAChB,mBAAmB;QACnB,qBAAqB;KACxB;IACD,YAAY,EAAE;QACV,eAAe;QACf,iBAAiB;QACjB,qBAAqB;QACrB,8BAA8B;QAC9B,uBAAuB;QACvB,WAAW;KACd;IACD,cAAc,EAAE;QACZ,4BAA4B;QAC5B,mBAAmB;QACnB,2BAA2B;QAC3B,gBAAgB;QAChB,qBAAqB;KACxB;IACD,sBAAsB,EAAE;QACpB,iBAAiB;QACjB,mBAAmB;QACnB,kBAAkB;QAClB,kCAAkC;QAClC,gCAAgC;KACnC;IACD,mBAAmB,EAAE;QACjB,uCAAuC;QACvC,iCAAiC;QACjC,0BAA0B;QAC1B,wBAAwB;QACxB,sBAAsB;QACtB,0CAA0C;KAC7C;IACD,oBAAoB,EAAE;QAClB,kBAAkB;QAClB,oBAAoB;QACpB,8DAA8D;QAC9D,eAAe;QACf,6BAA6B;QAC7B,oCAAoC;QACpC,qCAAqC;KACxC;CACJ,CAAC;AAEF,MAAM,wBAAwB,GAA2B;IACrD,YAAY,EAAE,eAAe;IAC7B,YAAY,EAAE,WAAW;IACzB,cAAc,EAAE,YAAY;IAC5B,sBAAsB,EAAE,eAAe;IACvC,mBAAmB,EAAE,iBAAiB;IACtC,oBAAoB,EAAE,aAAa;CACtC,CAAC;AAEF,MAAM,+BAA+B,GAAG;IACpC,sBAAsB;IACtB,YAAY;CACN,CAAC;AAEX;;GAEG;AACH,SAAS,uBAAuB,CAC5B,mBAA2B;IAE3B,IAAI,YAAY,GAAwD,IAAI,CAAC;IAE7E,KAAK,MAAM,CAAC,aAAa,EAAE,SAAS,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,wBAAwB,CAAC,EAAE,CAAC;QAChF,IAAI,aAAa,CAAC,IAAI,CAAC,mBAAmB,EAAE,aAAa,CAAC,CAAC,EAAE,CAAC;YAC1D,YAAY,GAAG,EAAE,aAAa,EAAE,SAAS,EAAE,CAAC;QAChD,CAAC;IACL,CAAC;IAED,OAAO,YAAY,CAAC;AACxB,CAAC;AAED;;GAEG;AACH,SAAS,iCAAiC,CACtC,mBAA2B,EAC3B,aAAqB,EACrB,QAA+B;IAE/B,MAAM,eAAe,GAAa,EAAE,CAAC;IACrC,MAAM,oBAAoB,GAAG,uBAAuB,CAAC,mBAAmB,CAAC,CAAC;IAC1E,MAAM,gBAAgB,GAAG,SAAS,CAAC,IAAI,CAAC,QAAQ,CAAC,YAAY,CAAC,IAAI,QAAQ,CAAC,cAAc,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC;IAElH,IAAI,gBAAgB,EAAE,CAAC;QACnB,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,mBAAmB,EAAE,oBAAoB,CAAC,CAAC,EAAE,CAAC;YAClE,eAAe,CAAC,IAAI,CAAC,GAAG,aAAa,iEAAiE,CAAC,CAAC;QAC5G,CAAC;QAED,IAAI,CAAC,oBAAoB,IAAI,oBAAoB,CAAC,SAAS,KAAK,aAAa,EAAE,CAAC;YAC5E,eAAe,CAAC,IAAI,CAChB,GAAG,aAAa,wEAAwE;kBACtF,qCAAqC,CAC1C,CAAC;QACN,CAAC;QAED,KAAK,MAAM,aAAa,IAAI;YACxB,GAAG,QAAQ,CAAC,cAAc;YAC1B,GAAG,QAAQ,CAAC,iBAAiB;SAChC,EAAE,CAAC;YACA,MAAM,iBAAiB,GAAG,MAAM,CAAC,OAAO,CAAC,wBAAwB,CAAC,CAAC,IAAI,CACnE,CAAC,CAAC,EAAE,SAAS,CAAC,EAAE,EAAE,CAAC,SAAS,KAAK,aAAa,CACjD,EAAE,CAAC,CAAC,CAAC,CAAC;YAEP,IAAI,iBAAiB,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,mBAAmB,EAAE,iBAAiB,CAAC,CAAC,EAAE,CAAC;gBACpF,eAAe,CAAC,IAAI,CAChB,GAAG,aAAa,sBAAsB,aAAa,UAAU,iBAAiB,eAAe,CAChG,CAAC;YACN,CAAC;QACL,CAAC;QAED,OAAO,eAAe,CAAC;IAC3B,CAAC;IAED,IAAI,oBAAoB,IAAI,QAAQ,CAAC,YAAY,KAAK,oBAAoB,CAAC,SAAS,EAAE,CAAC;QACnF,eAAe,CAAC,IAAI,CAChB,GAAG,aAAa,sBAAsB,QAAQ,CAAC,YAAY,2CAA2C;cACpG,IAAI,oBAAoB,CAAC,aAAa,MAAM,oBAAoB,CAAC,SAAS,IAAI,CACnF,CAAC;IACN,CAAC;IAED,KAAK,MAAM,aAAa,IAAI;QACxB,QAAQ,CAAC,YAAY;QACrB,GAAG,QAAQ,CAAC,cAAc;QAC1B,GAAG,QAAQ,CAAC,iBAAiB;KAChC,EAAE,CAAC;QACA,MAAM,iBAAiB,GAAG,MAAM,CAAC,OAAO,CAAC,wBAAwB,CAAC,CAAC,IAAI,CACnE,CAAC,CAAC,EAAE,SAAS,CAAC,EAAE,EAAE,CAAC,SAAS,KAAK,aAAa,CACjD,EAAE,CAAC,CAAC,CAAC,CAAC;QAEP,IAAI,iBAAiB,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,mBAAmB,EAAE,iBAAiB,CAAC,CAAC,EAAE,CAAC;YACpF,eAAe,CAAC,IAAI,CAChB,GAAG,aAAa,sBAAsB,aAAa,UAAU,iBAAiB,eAAe,CAChG,CAAC;QACN,CAAC;IACL,CAAC;IAED,OAAO,eAAe,CAAC;AAC3B,CAAC;AAED;;GAEG;AACH,SAAS,gBAAgB,CAAC,OAAe;IACrC,OAAO,OAAO,CAAC,OAAO,CAAC,qBAAqB,EAAE,MAAM,CAAC,CAAC;AAC1D,CAAC;AAED;;GAEG;AACH,SAAS,oBAAoB,CAAC,cAAsB,EAAE,UAAkB;IACpE,MAAM,YAAY,GAAG,IAAI,MAAM,CAAC,UAAU,gBAAgB,CAAC,UAAU,CAAC,uBAAuB,EAAE,GAAG,CAAC,CAAC;IACpG,MAAM,UAAU,GAAG,cAAc,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;IACtD,IAAI,CAAC,UAAU,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,EAAE,CAAC;QAChC,OAAO,IAAI,CAAC;IAChB,CAAC;IAED,OAAO,UAAU,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC;AAClD,CAAC;AAED;;GAEG;AACH,SAAS,cAAc,CAAC,QAAgB;IACpC,MAAM,eAAe,GAAG,QAAQ,CAAC,IAAI,EAAE,CAAC;IACxC,IAAI,CAAC,eAAe,IAAI,SAAS,CAAC,IAAI,CAAC,eAAe,CAAC,EAAE,CAAC;QACtD,OAAO,EAAE,CAAC;IACd,CAAC;IAED,MAAM,YAAY,GAAG,eAAe;SAC/B,KAAK,CAAC,GAAG,CAAC;SACV,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC;SAC5B,MAAM,CAAC,OAAO,CAAC,CAAC;IAErB,OAAO,KAAK,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,YAAY,CAAC,CAAC,CAAC;AAC7C,CAAC;AAED;;GAEG;AACH,SAAS,mBAAmB,CAAC,cAAsB;IAC/C,MAAM,MAAM,GAAa,EAAE,CAAC;IAE5B,MAAM,aAAa,GAAG,oBAAoB,CAAC,cAAc,EAAE,mBAAmB,CAAC,aAAa,CAAC;WACtF,oBAAoB,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC;IACtD,MAAM,YAAY,GAAG,oBAAoB,CAAC,cAAc,EAAE,mBAAmB,CAAC,YAAY,CAAC,CAAC;IAC5F,MAAM,cAAc,GAAG,oBAAoB,CAAC,cAAc,EAAE,mBAAmB,CAAC,cAAc,CAAC,CAAC;IAChG,MAAM,iBAAiB,GAAG,oBAAoB,CAAC,cAAc,EAAE,mBAAmB,CAAC,iBAAiB,CAAC,CAAC;IACtG,MAAM,mBAAmB,GAAG,oBAAoB,CAAC,cAAc,EAAE,mBAAmB,CAAC,mBAAmB,CAAC,CAAC;IAC1G,MAAM,UAAU,GAAG,oBAAoB,CAAC,cAAc,EAAE,mBAAmB,CAAC,UAAU,CAAC,CAAC;IACxF,MAAM,kBAAkB,GAAG,oBAAoB,CAAC,cAAc,EAAE,mBAAmB,CAAC,kBAAkB,CAAC,CAAC;IACxG,MAAM,aAAa,GAAG,oBAAoB,CAAC,cAAc,EAAE,mBAAmB,CAAC,aAAa,CAAC,CAAC;IAC9F,MAAM,aAAa,GAAG,oBAAoB,CAAC,cAAc,EAAE,mBAAmB,CAAC,aAAa,CAAC,CAAC;IAE9F,IAAI,CAAC,aAAa;QAAE,MAAM,CAAC,IAAI,CAAC,sCAAsC,CAAC,CAAC;IACxE,IAAI,CAAC,YAAY;QAAE,MAAM,CAAC,IAAI,CAAC,qCAAqC,CAAC,CAAC;IACtE,IAAI,CAAC,cAAc;QAAE,MAAM,CAAC,IAAI,CAAC,uCAAuC,CAAC,CAAC;IAC1E,IAAI,CAAC,iBAAiB;QAAE,MAAM,CAAC,IAAI,CAAC,0CAA0C,CAAC,CAAC;IAChF,IAAI,CAAC,mBAAmB;QAAE,MAAM,CAAC,IAAI,CAAC,6CAA6C,CAAC,CAAC;IACrF,IAAI,CAAC,UAAU;QAAE,MAAM,CAAC,IAAI,CAAC,mCAAmC,CAAC,CAAC;IAClE,IAAI,CAAC,kBAAkB;QAAE,MAAM,CAAC,IAAI,CAAC,2CAA2C,CAAC,CAAC;IAClF,IAAI,CAAC,aAAa;QAAE,MAAM,CAAC,IAAI,CAAC,uCAAuC,CAAC,CAAC;IACzE,IAAI,CAAC,aAAa;QAAE,MAAM,CAAC,IAAI,CAAC,uCAAuC,CAAC,CAAC;IAEzE,IAAI,MAAM,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;QACpB,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;IACtC,CAAC;IAED,MAAM,QAAQ,GAAmB;QAC7B,aAAa,EAAE,aAAc;QAC7B,YAAY,EAAE,YAAa;QAC3B,cAAc,EAAE,cAAc,CAAC,cAAe,CAAC;QAC/C,iBAAiB,EAAE,cAAc,CAAC,iBAAkB,CAAC;QACrD,mBAAmB,EAAE,mBAAoB;QACzC,UAAU,EAAE,UAAW;QACvB,kBAAkB,EAAE,kBAAmB;QACvC,aAAa,EAAE,aAAc;QAC7B,aAAa,EAAE,aAAc;KAChC,CAAC;IAEF,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC;AACpC,CAAC;AAED;;GAEG;AACH,SAAS,sBAAsB,CAAC,QAAwB;IACpD,MAAM,MAAM,GAAa,EAAE,CAAC;IAC5B,MAAM,gBAAgB,GAAG,SAAS,CAAC,IAAI,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC;IAC/D,IAAI,CAAC,QAAQ,CAAC,YAAY,EAAE,CAAC;QACzB,MAAM,CAAC,IAAI,CAAC,yBAAyB,CAAC,CAAC;IAC3C,CAAC;IACD,IAAI,CAAC,QAAQ,CAAC,mBAAmB,EAAE,CAAC;QAChC,MAAM,CAAC,IAAI,CAAC,iCAAiC,CAAC,CAAC;IACnD,CAAC;IACD,IAAI,gBAAgB,EAAE,CAAC;QACnB,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,QAAQ,CAAC,mBAAmB,CAAC,EAAE,CAAC;YAChD,MAAM,CAAC,IAAI,CAAC,2DAA2D,CAAC,CAAC;QAC7E,CAAC;QACD,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC,QAAQ,CAAC,aAAa,CAAC,EAAE,CAAC;YACnD,MAAM,CAAC,IAAI,CAAC,+DAA+D,CAAC,CAAC;QACjF,CAAC;IACL,CAAC;SAAM,IAAI,SAAS,CAAC,IAAI,CAAC,QAAQ,CAAC,mBAAmB,CAAC,EAAE,CAAC;QACtD,MAAM,CAAC,IAAI,CAAC,gEAAgE,CAAC,CAAC;IAClF,CAAC;IACD,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE,CAAC;QACvB,MAAM,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC;IACzC,CAAC;IACD,IAAI,CAAC,QAAQ,CAAC,aAAa,EAAE,CAAC;QAC1B,MAAM,CAAC,IAAI,CAAC,2BAA2B,CAAC,CAAC;IAC7C,CAAC;IACD,IAAI,CAAC,QAAQ,CAAC,aAAa,IAAI,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC,EAAE,CAAC;QAC9E,MAAM,CAAC,IAAI,CAAC,sCAAsC,CAAC,CAAC;IACxD,CAAC;IAED,MAAM,YAAY,GAAG,IAAI,GAAG,CAAC,QAAQ,CAAC,cAAc,CAAC,CAAC;IACtD,MAAM,cAAc,GAAG,IAAI,GAAG,CAAC,QAAQ,CAAC,iBAAiB,CAAC,CAAC;IAC3D,IAAI,YAAY,CAAC,IAAI,KAAK,QAAQ,CAAC,cAAc,CAAC,MAAM,EAAE,CAAC;QACvD,MAAM,CAAC,IAAI,CAAC,sCAAsC,CAAC,CAAC;IACxD,CAAC;IACD,IAAI,cAAc,CAAC,IAAI,KAAK,QAAQ,CAAC,iBAAiB,CAAC,MAAM,EAAE,CAAC;QAC5D,MAAM,CAAC,IAAI,CAAC,yCAAyC,CAAC,CAAC;IAC3D,CAAC;IACD,IAAI,CAAC,gBAAgB,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,QAAQ,CAAC,YAAY,CAAC,IAAI,cAAc,CAAC,GAAG,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC,EAAE,CAAC;QAC9G,MAAM,CAAC,IAAI,CAAC,oEAAoE,CAAC,CAAC;IACtF,CAAC;IACD,KAAK,MAAM,cAAc,IAAI,YAAY,EAAE,CAAC;QACxC,IAAI,cAAc,CAAC,GAAG,CAAC,cAAc,CAAC,EAAE,CAAC;YACrC,MAAM,CAAC,IAAI,CAAC,UAAU,cAAc,yDAAyD,CAAC,CAAC;QACnG,CAAC;IACL,CAAC;IAED,OAAO,MAAM,CAAC;AAClB,CAAC;AAED;;GAEG;AACH,SAAS,uBAAuB,CAAC,IAAc,EAAE,KAAe;IAC5D,MAAM,cAAc,GAAG,KAAK,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC;IACxD,MAAM,eAAe,GAAG,KAAK,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC;IAC1D,OAAO,IAAI,CAAC,SAAS,CAAC,cAAc,CAAC,KAAK,IAAI,CAAC,SAAS,CAAC,eAAe,CAAC,CAAC;AAC9E,CAAC;AAED;;GAEG;AACH,SAAS,oCAAoC,CAAC,QAAwB;IAClE,MAAM,cAAc,GAAG,IAAI,GAAG,CAAS;QACnC,GAAG,QAAQ,CAAC,cAAc;QAC1B,GAAG,QAAQ,CAAC,iBAAiB;KAChC,CAAC,CAAC;IAEH,yEAAyE;IACzE,sDAAsD;IACtD,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,QAAQ,CAAC,YAAY,CAAC,IAAI,QAAQ,CAAC,mBAAmB,KAAK,QAAQ,CAAC,YAAY,EAAE,CAAC;QACnG,cAAc,CAAC,GAAG,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC;IAC9C,CAAC;IAED,OAAO,cAAc,CAAC;AAC1B,CAAC;AAED;;GAEG;AACH,SAAS,sBAAsB,CAC3B,YAAgC,EAChC,kBAA0B,EAC1B,2BAAmC,EACnC,0BAAkC;IAElC,MAAM,cAAc,GAAa,EAAE,CAAC;IAEpC,IAAI,YAAY,CAAC,UAAU,KAAK,kBAAkB,EAAE,CAAC;QACjD,cAAc,CAAC,IAAI,CAAC,kBAAkB,YAAY,CAAC,UAAU,iBAAiB,kBAAkB,IAAI,CAAC,CAAC;IAC1G,CAAC;IACD,IAAI,YAAY,CAAC,mBAAmB,KAAK,2BAA2B,EAAE,CAAC;QACnE,cAAc,CAAC,IAAI,CAAC,2BAA2B,YAAY,CAAC,mBAAmB,iBAAiB,2BAA2B,IAAI,CAAC,CAAC;IACrI,CAAC;IACD,IAAI,YAAY,CAAC,kBAAkB,KAAK,0BAA0B,EAAE,CAAC;QACjE,cAAc,CAAC,IAAI,CAAC,0BAA0B,YAAY,CAAC,kBAAkB,iBAAiB,0BAA0B,IAAI,CAAC,CAAC;IAClI,CAAC;IAED,OAAO,cAAc,CAAC;AAC1B,CAAC;AAED;;GAEG;AACH,SAAS,+BAA+B,CAAC,eAAuB,EAAE,OAAe;IAC7E,MAAM,cAAc,GAAG,IAAI,MAAM,CAAC,GAAG,gBAAgB,CAAC,OAAO,CAAC,mCAAmC,EAAE,GAAG,CAAC,CAAC;IACxG,MAAM,YAAY,GAAG,eAAe,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC;IAC3D,IAAI,CAAC,YAAY,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC;QACpC,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,MAAM,WAAW,GAAG,YAAY,CAAC,CAAC,CAAC;SAC9B,OAAO,CAAC,kBAAkB,EAAE,EAAE,CAAC;SAC/B,IAAI,EAAE,CAAC;IAEZ,IAAI,CAAC,WAAW,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IAED,MAAM,cAAc,GAAG,WAAW,CAAC,WAAW,EAAE,CAAC;IACjD,OAAO,CACH,cAAc,KAAK,KAAK;WACrB,cAAc,KAAK,SAAS;WAC5B,cAAc,KAAK,gBAAgB;WACnC,cAAc,KAAK,sEAAsE,CAC/F,CAAC;AACN,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,gBAAgB,CAAC,OAA6B;IAC1D,yEAAyE;IACzE,MAAM,MAAM,GAAG,YAAY,CAAC,KAAK,CAAC,CAAC;IACnC,MAAM,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,GAAG,OAAO,CAAC;IAEzD,IAAI,gBAAgB,GAAG,IAAI,CAAC;IAC5B,IAAI,aAAa,GAAG,IAAI,CAAC;IAEzB;;OAEG;IACH,SAAS,WAAW,CAAC,KAAa,EAAE,MAAe,EAAE,QAAgC,EAAE,MAAe;QAClG,MAAM,CAAC,KAAK,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC;QACpC,IAAI,CAAC,MAAM,EAAE,CAAC;YACV,IAAI,QAAQ,KAAK,WAAW,EAAE,CAAC;gBAC3B,gBAAgB,GAAG,KAAK,CAAC;YAC7B,CAAC;iBAAM,CAAC;gBACJ,aAAa,GAAG,KAAK,CAAC;YAC1B,CAAC;QACL,CAAC;IACL,CAAC;IAED,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;IAChB,MAAM,CAAC,IAAI,CAAC,uDAAuD,CAAC,CAAC;IAErE,mCAAmC;IACnC,MAAM,SAAS,GAAG,eAAe,CAAC,gBAAgB,CAAC,CAAC;IACpD,WAAW,CAAC,yBAAyB,EAAE,SAAS,EAAE,WAAW,CAAC,CAAC;IAC/D,IAAI,CAAC,SAAS,EAAE,CAAC;QACb,MAAM,CAAC,KAAK,CAAC,wEAAwE,CAAC,CAAC;QACvF,OAAO,CAAC,QAAQ,GAAG,CAAC,CAAC;QACrB,OAAO;IACX,CAAC;IAED,wDAAwD;IACxD,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;IAChB,MAAM,CAAC,IAAI,CAAC,wDAAwD,CAAC,CAAC;IAEtE,+CAA+C;IAC/C,MAAM,YAAY,GAAG,IAAI,CAAC,gBAAgB,EAAE,WAAW,CAAC,CAAC;IACzD,MAAM,cAAc,GAAG,aAAa,CAAC,YAAY,CAAC,CAAC;IACnD,WAAW,CAAC,kBAAkB,EAAE,cAAc,EAAE,WAAW,CAAC,CAAC;IAC7D,IAAI,cAAc,EAAE,CAAC;QACjB,MAAM,eAAe,GAAG,cAAc,CAAC,YAAY,CAAC,IAAI,EAAE,CAAC;QAC3D,WAAW,CAAC,6BAA6B,EAAE,eAAe,CAAC,eAAe,CAAC,EAAE,WAAW,CAAC,CAAC;IAC9F,CAAC;IAED,6DAA6D;IAC7D,MAAM,uBAAuB,GAAG,IAAI,CAAC,gBAAgB,EAAE,SAAS,EAAE,yBAAyB,CAAC,CAAC;IAC7F,MAAM,aAAa,GAAG,aAAa,CAAC,uBAAuB,CAAC,CAAC;IAC7D,WAAW,CAAC,wCAAwC,EAAE,aAAa,EAAE,WAAW,CAAC,CAAC;IAClF,IAAI,aAAa,EAAE,CAAC;QAChB,MAAM,cAAc,GAAG,cAAc,CAAC,uBAAuB,CAAC,IAAI,EAAE,CAAC;QACrE,WAAW,CAAC,mDAAmD,EAAE,eAAe,CAAC,cAAc,CAAC,EAAE,WAAW,CAAC,CAAC;IACnH,CAAC;IAED,MAAM,uBAAuB,GAAG,IAAI,CAAC,gBAAgB,EAAE,SAAS,EAAE,WAAW,EAAE,oBAAoB,CAAC,CAAC;IACrG,WAAW,CAAC,6CAA6C,EAAE,aAAa,CAAC,uBAAuB,CAAC,EAAE,WAAW,CAAC,CAAC;IAEhH,MAAM,cAAc,GAAG,IAAI,CAAC,gBAAgB,EAAE,SAAS,EAAE,OAAO,EAAE,qBAAqB,CAAC,CAAC;IACzF,WAAW,CAAC,0CAA0C,EAAE,aAAa,CAAC,cAAc,CAAC,EAAE,WAAW,CAAC,CAAC;IAEpG,MAAM,sBAAsB,GAAG,IAAI,CAAC,gBAAgB,EAAE,kBAAkB,CAAC,CAAC;IAC1E,WAAW,CAAC,oCAAoC,EAAE,aAAa,CAAC,sBAAsB,CAAC,EAAE,WAAW,CAAC,CAAC;IAEtG,MAAM,mBAAmB,GAAG,IAAI,CAAC,sBAAsB,EAAE,WAAW,CAAC,CAAC;IACtE,WAAW,CAAC,mCAAmC,EAAE,aAAa,CAAC,mBAAmB,CAAC,EAAE,WAAW,CAAC,CAAC;IAElG,MAAM,kBAAkB,GAAG,IAAI,CAAC,sBAAsB,EAAE,WAAW,CAAC,CAAC;IACrE,WAAW,CAAC,8CAA8C,EAAE,aAAa,CAAC,kBAAkB,CAAC,EAAE,WAAW,CAAC,CAAC;IAE5G,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;IAChB,MAAM,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;IAC/B,KAAK,MAAM,aAAa,IAAI,kBAAkB,EAAE,EAAE,CAAC;QAC/C,WAAW,CAAC,KAAK,aAAa,CAAC,YAAY,EAAE,EAAE,aAAa,CAAC,IAAI,CAAC,sBAAsB,EAAE,aAAa,CAAC,YAAY,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC;IACzI,CAAC;IAED,MAAM,iBAAiB,GAAG,IAAI,CAAC,sBAAsB,EAAE,UAAU,CAAC,CAAC;IACnE,WAAW,CAAC,6CAA6C,EAAE,aAAa,CAAC,iBAAiB,CAAC,EAAE,WAAW,CAAC,CAAC;IAE1G,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;IAChB,MAAM,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;IAC9B,KAAK,MAAM,YAAY,IAAI,iBAAiB,EAAE,EAAE,CAAC;QAC7C,WAAW,CAAC,KAAK,YAAY,CAAC,YAAY,EAAE,EAAE,aAAa,CAAC,IAAI,CAAC,sBAAsB,EAAE,YAAY,CAAC,YAAY,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC;IACvI,CAAC;IAED,MAAM,kBAAkB,GAAG,IAAI,CAAC,sBAAsB,EAAE,WAAW,CAAC,CAAC;IACrE,WAAW,CAAC,8CAA8C,EAAE,aAAa,CAAC,kBAAkB,CAAC,EAAE,WAAW,CAAC,CAAC;IAE5G,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;IAChB,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;IAC1B,KAAK,MAAM,YAAY,IAAI,iBAAiB,EAAE,EAAE,CAAC;QAC7C,WAAW,CAAC,KAAK,YAAY,CAAC,YAAY,EAAE,EAAE,aAAa,CAAC,IAAI,CAAC,sBAAsB,EAAE,YAAY,CAAC,YAAY,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC;IACvI,CAAC;IAED,0BAA0B;IAC1B,MAAM,eAAe,GAAG,IAAI,CAAC,sBAAsB,EAAE,QAAQ,CAAC,CAAC;IAC/D,WAAW,CAAC,2CAA2C,EAAE,aAAa,CAAC,eAAe,CAAC,EAAE,WAAW,CAAC,CAAC;IAEtG,0CAA0C;IAC1C,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;IAChB,MAAM,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC;IACjC,KAAK,MAAM,SAAS,IAAI,uBAAuB,EAAE,EAAE,CAAC;QAChD,WAAW,CAAC,KAAK,SAAS,CAAC,QAAQ,EAAE,EAAE,aAAa,CAAC,IAAI,CAAC,eAAe,EAAE,SAAS,CAAC,QAAQ,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC;IAClH,CAAC;IAED,gDAAgD;IAChD,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;IAChB,MAAM,CAAC,IAAI,CAAC,yBAAyB,CAAC,CAAC;IACvC,KAAK,MAAM,SAAS,IAAI,wBAAwB,EAAE,EAAE,CAAC;QACjD,WAAW,CAAC,KAAK,SAAS,CAAC,QAAQ,EAAE,EAAE,aAAa,CAAC,IAAI,CAAC,eAAe,EAAE,SAAS,CAAC,QAAQ,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC;IAClH,CAAC;IAED,yDAAyD;IACzD,MAAM,gBAAgB,GAAG,oBAAoB,CAAC,gBAAgB,CAAC,CAAC;IAChE,MAAM,cAAc,GAAG,kBAAkB,IAAI,kBAAkB,CAAC,IAAI,EAAE,CAAC,MAAM,GAAG,CAAC;QAC7E,CAAC,CAAC,kBAAkB,CAAC,IAAI,EAAE;QAC3B,CAAC,CAAC,uBAAuB,CAAC,gBAAgB,CAAC,CAAC;IAEhD,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;IAChB,IAAI,CAAC,cAAc,EAAE,CAAC;QAClB,WAAW,CACP,gDAAgD,EAChD,KAAK,EACL,QAAQ,EACR,mEAAmE,CACtE,CAAC;QACF,MAAM,CAAC,IAAI,CAAC,gFAAgF,CAAC,CAAC;IAClG,CAAC;SAAM,CAAC;QACJ,IAAI,cAAc,CAAC,WAAW,EAAE,KAAK,MAAM,EAAE,CAAC;YAC1C,WAAW,CACP,wCAAwC,EACxC,KAAK,EACL,QAAQ,EACR,8CAA8C,CACjD,CAAC;QACN,CAAC;aAAM,CAAC;YACJ,MAAM,eAAe,GAAG,kBAAkB,CAAC,cAAc,CAAC,CAAC;YAC3D,IAAI,CAAC,eAAe,EAAE,CAAC;gBACnB,WAAW,CACP,8CAA8C,EAC9C,KAAK,EACL,QAAQ,EACR,0BAA0B,cAAc,GAAG,CAC9C,CAAC;YACN,CAAC;iBAAM,CAAC;gBACJ,MAAM,sBAAsB,GAAG,6BAA6B,CACxD,cAAc,EACd,eAAe,EACf,gBAAgB,CACnB,CAAC;gBACF,MAAM,mBAAmB,GAAG,IAAI,CAAC,gBAAgB,EAAE,cAAc,EAAE,sBAAsB,CAAC,CAAC;gBAC3F,MAAM,CAAC,IAAI,CAAC,uBAAuB,cAAc,KAAK,sBAAsB,IAAI,CAAC,CAAC;gBAClF,MAAM,mBAAmB,GAAG,aAAa,CAAC,mBAAmB,CAAC,CAAC;gBAC/D,WAAW,CAAC,gBAAgB,sBAAsB,oBAAoB,EAAE,mBAAmB,EAAE,QAAQ,CAAC,CAAC;gBAEvG,IAAI,mBAAmB,EAAE,CAAC;oBACtB,KAAK,MAAM,qBAAqB,IAAI,+BAA+B,EAAE,CAAC;wBAClE,WAAW,CACP,KAAK,qBAAqB,EAAE,EAC5B,aAAa,CAAC,IAAI,CAAC,mBAAmB,EAAE,qBAAqB,CAAC,CAAC,EAC/D,QAAQ,CACX,CAAC;oBACN,CAAC;oBAED,MAAM,gBAAgB,GAAG,IAAI,CAAC,mBAAmB,EAAE,YAAY,CAAC,CAAC;oBACjE,MAAM,kBAAkB,GAAG,aAAa,CAAC,gBAAgB,CAAC,CAAC;oBAC3D,WAAW,CAAC,cAAc,EAAE,kBAAkB,EAAE,QAAQ,CAAC,CAAC;oBAE1D,MAAM,kBAAkB,GAAG,IAAI,CAAC,mBAAmB,EAAE,sBAAsB,CAAC,CAAC;oBAC7E,MAAM,qBAAqB,GAAG,cAAc,CAAC,kBAAkB,CAAC,IAAI,EAAE,CAAC;oBACvE,MAAM,YAAY,GAAG,mBAAmB,CAAC,qBAAqB,CAAC,CAAC;oBAChE,WAAW,CACP,sCAAsC,EACtC,YAAY,CAAC,MAAM,CAAC,MAAM,KAAK,CAAC,EAChC,QAAQ,EACR,YAAY,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,CAC/E,CAAC;oBAEF,IAAI,YAAY,CAAC,QAAQ,EAAE,CAAC;wBACxB,MAAM,oBAAoB,GAAG,sBAAsB,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC;wBAC3E,WAAW,CACP,mCAAmC,EACnC,oBAAoB,CAAC,MAAM,KAAK,CAAC,EACjC,QAAQ,EACR,oBAAoB,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,oBAAoB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,CACjF,CAAC;wBAEF,MAAM,yBAAyB,GAAG,iCAAiC,CAC/D,mBAAmB,EACnB,iBAAiB,EACjB,YAAY,CAAC,QAAQ,CACxB,CAAC;wBACF,WAAW,CACP,+CAA+C,EAC/C,yBAAyB,CAAC,MAAM,KAAK,CAAC,EACtC,QAAQ,EACR,yBAAyB,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,yBAAyB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,CAC3F,CAAC;oBACN,CAAC;oBAED,IAAI,kBAAkB,EAAE,CAAC;wBACrB,MAAM,mBAAmB,GAAG,cAAc,CAAC,gBAAgB,CAAC,IAAI,EAAE,CAAC;wBACnE,MAAM,kBAAkB,GAAG,uBAAuB,CAAC,mBAAmB,CAAC,CAAC;wBACxE,WAAW,CACP,8BAA8B,EAC9B,kBAAkB,KAAK,IAAI,EAC3B,QAAQ,EACR,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,0CAA0C,CAC9E,CAAC;wBAEF,IAAI,kBAAkB,EAAE,CAAC;4BACrB,kFAAkF;4BAClF,MAAM,kBAAkB,GAAG,0BAA0B,CAAC,kBAAkB,CAAC,CAAC;4BAC1E,WAAW,CACP,uCAAuC,EACvC,kBAAkB,CAAC,MAAM,KAAK,CAAC,EAC/B,QAAQ,EACR,kBAAkB,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,kBAAkB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,CAC7E,CAAC;4BAEF,MAAM,cAAc,GAAG,sBAAsB,CACzC,kBAAkB,EAClB,cAAc,EACd,eAAe,EACf,sBAAsB,CACzB,CAAC;4BACF,WAAW,CACP,8DAA8D,EAC9D,cAAc,CAAC,MAAM,KAAK,CAAC,EAC3B,QAAQ,EACR,cAAc,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,cAAc,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,CACrE,CAAC;4BAEF,MAAM,0BAA0B,GAAG,iCAAiC,CAChE,mBAAmB,EACnB,qBAAqB,EACrB,kBAAkB,CACrB,CAAC;4BACF,WAAW,CACP,mDAAmD,EACnD,0BAA0B,CAAC,MAAM,KAAK,CAAC,EACvC,QAAQ,EACR,0BAA0B,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,0BAA0B,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,CAC7F,CAAC;4BAEF,IAAI,YAAY,CAAC,QAAQ,EAAE,CAAC;gCACxB,MAAM,mBAAmB,GAAG,CACxB,YAAY,CAAC,QAAQ,CAAC,aAAa,KAAK,kBAAkB,CAAC,UAAU;uCAClE,sBAAsB,KAAK,kBAAkB,CAAC,kBAAkB;uCAChE,eAAe,KAAK,kBAAkB,CAAC,mBAAmB;uCAC1D,YAAY,CAAC,QAAQ,CAAC,YAAY,KAAK,kBAAkB,CAAC,YAAY;uCACtE,uBAAuB,CAAC,YAAY,CAAC,QAAQ,CAAC,cAAc,EAAE,kBAAkB,CAAC,cAAc,CAAC;uCAChG,uBAAuB,CAAC,YAAY,CAAC,QAAQ,CAAC,iBAAiB,EAAE,kBAAkB,CAAC,iBAAiB,CAAC;uCACtG,YAAY,CAAC,QAAQ,CAAC,mBAAmB,KAAK,kBAAkB,CAAC,mBAAmB;uCACpF,YAAY,CAAC,QAAQ,CAAC,aAAa,KAAK,kBAAkB,CAAC,aAAa,CAC9E,CAAC;gCAEF,WAAW,CACP,mDAAmD,EACnD,mBAAmB,EACnB,QAAQ,EACR,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,4CAA4C,CACjF,CAAC;4BACN,CAAC;wBACL,CAAC;oBACL,CAAC;oBAED,MAAM,iCAAiC,GAAG,YAAY,CAAC,QAAQ;wBAC3D,CAAC,CAAC,oCAAoC,CAAC,YAAY,CAAC,QAAQ,CAAC;wBAC7D,CAAC,CAAC,IAAI,GAAG,EAAU,CAAC;oBAExB,wFAAwF;oBACxF,KAAK,MAAM,CAAC,aAAa,EAAE,gBAAgB,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,uBAAuB,CAAC,EAAE,CAAC;wBACtF,MAAM,aAAa,GAAG,IAAI,CAAC,mBAAmB,EAAE,aAAa,CAAC,CAAC;wBAC/D,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,EAAE,CAAC;4BAChC,SAAS;wBACb,CAAC;wBAED,MAAM,gBAAgB,GAAG,cAAc,CAAC,aAAa,CAAC,IAAI,EAAE,CAAC;wBAC7D,MAAM,eAAe,GAAG,gBAAgB,CAAC,MAAM,CAC3C,CAAC,eAAe,EAAE,EAAE,CAAC,CAAC,gBAAgB,CAAC,WAAW,EAAE,CAAC,QAAQ,CAAC,eAAe,CAAC,WAAW,EAAE,CAAC,CAC/F,CAAC;wBAEF,WAAW,CACP,KAAK,aAAa,4BAA4B,EAC9C,eAAe,CAAC,MAAM,KAAK,CAAC,EAC5B,QAAQ,EACR,eAAe,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,YAAY,eAAe,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CACpF,CAAC;wBAEF,MAAM,SAAS,GAAG,wBAAwB,CAAC,aAAa,CAAC,CAAC;wBAC1D,IAAI,eAAe,CAAC,MAAM,KAAK,CAAC,IAAI,SAAS,IAAI,iCAAiC,CAAC,GAAG,CAAC,SAAS,CAAC,EAAE,CAAC;4BAChG,MAAM,mBAAmB,GAAG,gBAAgB,CAAC,MAAM,CAC/C,CAAC,eAAe,EAAE,EAAE,CAAC,+BAA+B,CAAC,gBAAgB,EAAE,eAAe,CAAC,CAC1F,CAAC;4BACF,WAAW,CACP,KAAK,aAAa,6CAA6C,EAC/D,mBAAmB,CAAC,MAAM,KAAK,CAAC,EAChC,QAAQ,EACR,mBAAmB,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,qBAAqB,mBAAmB,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CACrG,CAAC;wBACN,CAAC;oBACL,CAAC;gBACL,CAAC;YACL,CAAC;QACL,CAAC;IACL,CAAC;IAED,+BAA+B;IAC/B,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;IAChB,IAAI,gBAAgB,IAAI,aAAa,EAAE,CAAC;QACpC,MAAM,CAAC,OAAO,CAAC,gDAAgD,CAAC,CAAC;IACrE,CAAC;SAAM,IAAI,CAAC,gBAAgB,EAAE,CAAC;QAC3B,MAAM,CAAC,IAAI,CAAC,mEAAmE,CAAC,CAAC;IACrF,CAAC;SAAM,CAAC;QACJ,MAAM,CAAC,IAAI,CAAC,wGAAwG,CAAC,CAAC;IAC1H,CAAC;AACL,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"templates.d.ts","sourceRoot":"","sources":["../../src/lib/templates.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;
|
|
1
|
+
{"version":3,"file":"templates.d.ts","sourceRoot":"","sources":["../../src/lib/templates.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAqCH,iGAAiG;AACjG,MAAM,WAAW,iBAAiB;IAC9B,YAAY,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE,MAAM,CAAC;CACnB;AAED,6EAA6E;AAC7E,MAAM,WAAW,cAAc;IAC3B,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;CACnB;AAED,gGAAgG;AAChG,MAAM,WAAW,mBAAmB;IAChC,YAAY,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE,MAAM,CAAC;CACnB;AAoED;;GAEG;AACH,wBAAgB,yBAAyB,IAAI,MAAM,CAElD;AAED;;GAEG;AACH,wBAAgB,+BAA+B,IAAI,MAAM,CAExD;AAED;;GAEG;AACH,wBAAgB,+BAA+B,IAAI,MAAM,CAExD;AAED;;GAEG;AACH,wBAAgB,sBAAsB,IAAI,MAAM,CAE/C;AAED;;GAEG;AACH,wBAAgB,2BAA2B,IAAI,MAAM,CAEpD;AAED;;GAEG;AACH,wBAAgB,kBAAkB,IAAI,iBAAiB,EAAE,CAExD;AAED;;GAEG;AACH,wBAAgB,iBAAiB,IAAI,iBAAiB,EAAE,CAEvD;AAED;;GAEG;AACH,wBAAgB,iBAAiB,IAAI,iBAAiB,EAAE,CAEvD;AAED;;GAEG;AACH,wBAAgB,uBAAuB,IAAI,cAAc,EAAE,CAK1D;AAED;;GAEG;AACH,wBAAgB,wBAAwB,IAAI,cAAc,EAAE,CAK3D;AAED;;GAEG;AACH,wBAAgB,2BAA2B,IAAI,MAAM,EAAE,CAItD;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,UAAU,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,GAAG,mBAAmB,EAAE,CAOpG;AAED;;GAEG;AACH,wBAAgB,oBAAoB,IAAI,MAAM,CAE7C;AAED;;GAEG;AACH,wBAAgB,6BAA6B,CAAC,UAAU,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,GAAG,MAAM,CAK/F;AAED;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAE/D;AAED;;GAEG;AACH,wBAAgB,uBAAuB,CACnC,UAAU,EAAE,MAAM,EAClB,aAAa,EAAE,MAAM,EACrB,YAAY,EAAE,MAAM,EACpB,cAAc,EAAE,MAAM,EACtB,iBAAiB,EAAE,MAAM,EACzB,mBAAmB,EAAE,MAAM,EAC3B,UAAU,EAAE,MAAM,EAClB,kBAAkB,GAAE,MAAe,GACpC,MAAM,CAkBR"}
|
package/dist/lib/templates.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"templates.js","sourceRoot":"","sources":["../../src/lib/templates.tsx"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"templates.js","sourceRoot":"","sources":["../../src/lib/templates.tsx"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED