@event4u/agent-config 4.3.0 → 4.5.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/.agent-src/commands/agents/user/init.md +7 -13
- package/.agent-src/commands/agents/user/show.md +4 -4
- package/.agent-src/commands/post-as/me.md +6 -6
- package/.agent-src/contexts/execution/autonomy-mechanics.md +1 -1
- package/.agent-src/contexts/execution/cheap-question-mechanics.md +4 -0
- package/.agent-src/templates/agents/agent-project-settings.example.yml +1 -1
- package/.claude-plugin/marketplace.json +1 -1
- package/CHANGELOG.md +110 -66
- package/config/discovery/packs.yml +9 -1
- package/config/discovery/workspaces.yml +14 -1
- package/dist/cli/agent-config.js +5 -4
- package/dist/cli/agent-config.js.map +1 -1
- package/dist/cli/commands/uiServe.js +27 -11
- package/dist/cli/commands/uiServe.js.map +1 -1
- package/dist/discovery/deprecation-report.md +1 -1
- package/dist/discovery/discovery-manifest.json +51 -8
- package/dist/discovery/discovery-manifest.json.sha256 +1 -1
- package/dist/discovery/discovery-manifest.summary.md +3 -3
- package/dist/discovery/orphan-report.md +1 -1
- package/dist/discovery/packs.json +25 -4
- package/dist/discovery/trust-report.md +1 -1
- package/dist/discovery/workspaces.json +4 -4
- package/dist/install/selectedTools.js +52 -0
- package/dist/install/selectedTools.js.map +1 -0
- package/dist/install/toolDetection.js +104 -0
- package/dist/install/toolDetection.js.map +1 -0
- package/dist/mcp/registry-manifest.json +2 -2
- package/dist/server/app.js +36 -0
- package/dist/server/app.js.map +1 -1
- package/dist/server/routes/ping.js +17 -0
- package/dist/server/routes/ping.js.map +1 -1
- package/dist/server/routes/wizard.js +240 -28
- package/dist/server/routes/wizard.js.map +1 -1
- package/dist/server/serverInfo.js +54 -0
- package/dist/server/serverInfo.js.map +1 -0
- package/dist/shared/userMd/formAdapter.js +1 -5
- package/dist/shared/userMd/formAdapter.js.map +1 -1
- package/dist/shared/userMd/schema.js +2 -1
- package/dist/shared/userMd/schema.js.map +1 -1
- package/dist/ui/assets/index-J0-0d7RC.js +40 -0
- package/dist/ui/assets/index-J0-0d7RC.js.map +1 -0
- package/dist/ui/assets/index-ZiC8PbdW.css +1 -0
- package/dist/ui/index.html +2 -2
- package/docs/archive/CHANGELOG-pre-4.0.0.md +80 -0
- package/docs/contracts/agent-user-schema.md +1 -3
- package/docs/contracts/discovery-manifest.schema.json +3 -1
- package/docs/contracts/gui-wizard.md +96 -8
- package/docs/decisions/ADR-013-discovery-frontmatter-contract.md +27 -0
- package/docs/decisions/ADR-021-deployment-shape.md +2 -2
- package/docs/deploy/connector-setup.md +2 -2
- package/docs/deploy/policy-cookbook.md +2 -2
- package/docs/examples/agent-user.example.md +0 -1
- package/package.json +1 -1
- package/scripts/__pycache__/validate_frontmatter.cpython-312.pyc +0 -0
- package/scripts/_lib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/scripts/_lib/__pycache__/agent_src.cpython-312.pyc +0 -0
- package/scripts/build_discovery_manifest.py +4 -0
- package/scripts/condense_memory.py +8 -2
- package/scripts/install.py +73 -0
- package/scripts/lint_discovery_vocabulary.py +8 -0
- package/dist/ui/assets/index-BDAhhpDV.js +0 -40
- package/dist/ui/assets/index-BDAhhpDV.js.map +0 -1
- package/dist/ui/assets/index-BXZILUxe.css +0 -1
|
@@ -26,7 +26,7 @@ install:
|
|
|
26
26
|
|
|
27
27
|
Short interactive interview that creates **`.agent-user.md`** at the
|
|
28
28
|
project root from the locked v1 schema in
|
|
29
|
-
[`docs/contracts/agent-user-schema.md`](
|
|
29
|
+
[`docs/contracts/agent-user-schema.md`](../../../../../../../../docs/contracts/agent-user-schema.md).
|
|
30
30
|
|
|
31
31
|
Use when:
|
|
32
32
|
|
|
@@ -81,20 +81,15 @@ Ask in this order. Each answer drives one frontmatter field.
|
|
|
81
81
|
`Kurze Rollenbeschreibung (z. B. "founder/engineer", "product manager", "designer")` /
|
|
82
82
|
`Short role label`
|
|
83
83
|
|
|
84
|
-
5. **Style —
|
|
85
|
-
|
|
86
|
-
> 1. informal — Du / first-name (default)
|
|
87
|
-
> 2. formal — Sie / full name
|
|
88
|
-
```
|
|
89
|
-
|
|
90
|
-
6. **Style — pace**.
|
|
84
|
+
5. **Style — pace**. (Formality is not asked — the agent always uses
|
|
85
|
+
informal "Du".)
|
|
91
86
|
```
|
|
92
87
|
> 1. pragmatic — balanced (default)
|
|
93
88
|
> 2. thorough — more verification, longer replies
|
|
94
89
|
> 3. rapid — shorter replies, fewer caveats
|
|
95
90
|
```
|
|
96
91
|
|
|
97
|
-
|
|
92
|
+
6. **Voice sample** — required.
|
|
98
93
|
`Paste eine typische Nachricht von dir (1–3 Sätze, im normalen Schreibstil)` /
|
|
99
94
|
`Paste one typical message of yours (1–3 sentences, your normal style)`
|
|
100
95
|
|
|
@@ -108,7 +103,7 @@ Before writing, scan the collected `voice_sample` and `role` for:
|
|
|
108
103
|
- Health/legal status keywords.
|
|
109
104
|
|
|
110
105
|
Hit → surface the line and ask the user to redact before proceeding.
|
|
111
|
-
Per [`agent-user-schema § Explicit exclusions`](
|
|
106
|
+
Per [`agent-user-schema § Explicit exclusions`](../../../../../../../../docs/contracts/agent-user-schema.md#explicit-exclusions).
|
|
112
107
|
|
|
113
108
|
### 5. Render and write
|
|
114
109
|
|
|
@@ -124,7 +119,6 @@ identity:
|
|
|
124
119
|
language: "..."
|
|
125
120
|
role: "..."
|
|
126
121
|
style:
|
|
127
|
-
formality: "..."
|
|
128
122
|
pace: "...""
|
|
129
123
|
voice_sample: |
|
|
130
124
|
...
|
|
@@ -155,7 +149,7 @@ Print the file path and a one-line summary:
|
|
|
155
149
|
|
|
156
150
|
```
|
|
157
151
|
✅ .agent-user.md written ({n} lines).
|
|
158
|
-
identity: {nickname or name} · language: {lang} · role: {role} · style: {
|
|
152
|
+
identity: {nickname or name} · language: {lang} · role: {role} · style: {pace}
|
|
159
153
|
```
|
|
160
154
|
|
|
161
155
|
Do NOT commit. Do NOT run any other `/agents user` sub-sub-command.
|
|
@@ -171,5 +165,5 @@ Do NOT commit. Do NOT run any other `/agents user` sub-sub-command.
|
|
|
171
165
|
|
|
172
166
|
## See also
|
|
173
167
|
|
|
174
|
-
- Schema: [`agent-user-schema`](
|
|
168
|
+
- Schema: [`agent-user-schema`](../../../../../../../../docs/contracts/agent-user-schema.md).
|
|
175
169
|
- Parent: [`/agents user`](../user.md).
|
|
@@ -26,7 +26,7 @@ install:
|
|
|
26
26
|
# /agents user show
|
|
27
27
|
|
|
28
28
|
Read-only render of the project-root `.agent-user.md` per
|
|
29
|
-
[`docs/contracts/agent-user-schema.md`](
|
|
29
|
+
[`docs/contracts/agent-user-schema.md`](../../../../../../../docs/contracts/agent-user-schema.md).
|
|
30
30
|
|
|
31
31
|
Use when:
|
|
32
32
|
|
|
@@ -55,7 +55,7 @@ Parse the YAML frontmatter and the body (everything after the second
|
|
|
55
55
|
`---`). Validate against the locked v1 schema:
|
|
56
56
|
|
|
57
57
|
- `version` is `1`.
|
|
58
|
-
- `identity.name`, `language`, `role`, `style.
|
|
58
|
+
- `identity.name`, `language`, `role`, `style.pace`,
|
|
59
59
|
`voice_sample`, `last_updated` are all present.
|
|
60
60
|
- File is ≤100 lines total.
|
|
61
61
|
|
|
@@ -73,7 +73,7 @@ Print the persona in this exact shape:
|
|
|
73
73
|
Identity : {nickname or name} ({name} if nickname is set)
|
|
74
74
|
Language : {language}
|
|
75
75
|
Role : {role}
|
|
76
|
-
Style : {
|
|
76
|
+
Style : {pace}
|
|
77
77
|
|
|
78
78
|
Voice sample
|
|
79
79
|
─────────────
|
|
@@ -116,6 +116,6 @@ Do NOT chain to other `/agents user *` commands. Do NOT commit.
|
|
|
116
116
|
|
|
117
117
|
## See also
|
|
118
118
|
|
|
119
|
-
- Schema: [`agent-user-schema`](
|
|
119
|
+
- Schema: [`agent-user-schema`](../../../../../../../docs/contracts/agent-user-schema.md).
|
|
120
120
|
- Parent: [`/agents user`](../user.md).
|
|
121
121
|
- Sibling: [`/agents user init`](init.md), [`/agents user update`](update.md).
|
|
@@ -59,13 +59,13 @@ Read the frontmatter:
|
|
|
59
59
|
decisions (default-to-nickname when set), **not** appended to the
|
|
60
60
|
output.
|
|
61
61
|
- `language` — language of the draft.
|
|
62
|
-
- `style.
|
|
63
|
-
|
|
62
|
+
- `style.pace` — mapped into the engine's fingerprint slot. Register is
|
|
63
|
+
always `casual` (the agent addresses the user informally — "Du" — and
|
|
64
|
+
formality is not configurable):
|
|
64
65
|
|
|
65
66
|
| `.agent-user.md` field | Engine fingerprint slot |
|
|
66
67
|
|---|---|
|
|
67
|
-
|
|
|
68
|
-
| `style.formality: formal` | `vocab_register: professional` |
|
|
68
|
+
| (always) | `vocab_register: casual` |
|
|
69
69
|
| `style.pace: rapid` | `sentence_length_avg: 12` |
|
|
70
70
|
| `style.pace: pragmatic` | `sentence_length_avg: 18` |
|
|
71
71
|
| `style.pace: thorough` | `sentence_length_avg: 28` |
|
|
@@ -84,7 +84,7 @@ Flag form: `--tone=<formal|casual|neutral>`,
|
|
|
84
84
|
`--audience=<text>`. Missing flags → interactive prompt, **one
|
|
85
85
|
question per turn**, in the order Topic → Tone → Length → Channel →
|
|
86
86
|
Audience. Defaults inherit from the engine's per-channel table and
|
|
87
|
-
the
|
|
87
|
+
the pace mapping above.
|
|
88
88
|
|
|
89
89
|
### 4. Negative-constraint pass (skipped)
|
|
90
90
|
|
|
@@ -95,7 +95,7 @@ the formality / pace mapping above.
|
|
|
95
95
|
|
|
96
96
|
Generate the body as a single fenced markdown block per
|
|
97
97
|
[`write-engine § 4`](../../../docs/contracts/write-engine.md). Honour
|
|
98
|
-
the loaded fingerprint (sentence-length ±25 %,
|
|
98
|
+
the loaded fingerprint (sentence-length ±25 %, pace),
|
|
99
99
|
±15 % length tolerance, write in `language`.
|
|
100
100
|
|
|
101
101
|
### 6. Disclosure footer (omitted — user is the author)
|
|
@@ -8,7 +8,7 @@ relevant. Detection logic lives in [`autonomy-detection.md`](autonomy-detection.
|
|
|
8
8
|
|
|
9
9
|
| Value | Behavior |
|
|
10
10
|
|---|---|
|
|
11
|
-
| `on` | Suppress trivial questions. Act on the obvious next step. Still ask on blocking / critical decisions, and ALWAYS ask on Hard-Floor triggers. |
|
|
11
|
+
| `on` | Suppress trivial questions. Act on the obvious next step. **Never ask "weiter? / shall I continue? / soll ich fortfahren?" between clean batches** — a continuation prompt under `on` is a cheap question, forbidden by [`no-cheap-questions` Iron Law 4](../../rules/no-cheap-questions.md); the persistent setting alone arms that law (see [`cheap-question-mechanics § Iron Law 4`](cheap-question-mechanics.md#iron-law-4--halt-conditions-under-autonomous-mandate)). Still ask on blocking / critical decisions, and ALWAYS ask on Hard-Floor triggers. |
|
|
12
12
|
| `off` | Ask trivial questions too. Use this if you want the agent to check in on each workflow step. |
|
|
13
13
|
| `auto` (default) | Same as `off` by default. Flips to `on` for the rest of the conversation as soon as the user expresses the intent "stop asking, just work". See [detection logic](autonomy-detection.md) — match by **intent**, not exact string. The flip never lifts the Hard Floor. |
|
|
14
14
|
|
|
@@ -20,10 +20,14 @@ THE USER DECIDES WHEN TO STOP.
|
|
|
20
20
|
|
|
21
21
|
A standing autonomous mandate is active when any of these fire:
|
|
22
22
|
|
|
23
|
+
- `personal.autonomy: on` in `.agent-settings.yml` — the **persistent** opt-in. No per-turn phrasing and no roadmap command is required; the durable setting alone arms this Iron Law. Missing key defaults to `on`, so the cloud/headless default arms it too.
|
|
24
|
+
- `auto` mode after the user opted in via a standing "just work" directive (per [`autonomous-execution § opt-in detection`](../../rules/autonomous-execution.md#opt-in-detection--match-by-intent-not-exact-string)).
|
|
23
25
|
- `/roadmap:process-full` invocation.
|
|
24
26
|
- `/roadmap:process-phase` invocation.
|
|
25
27
|
- Explicit "entscheide selbst / decide and don't ask" in the current or a recent un-revoked turn.
|
|
26
28
|
|
|
29
|
+
The first two are the common case the persistent setting is *for*: a user who set `autonomy: on` never wants a "weiter? / shall I continue? / soll ich fortfahren?" prompt between clean batches. Treating those as cheap (IL 4) is not optional — it is the contract the setting promises.
|
|
30
|
+
|
|
27
31
|
### Halt conditions
|
|
28
32
|
|
|
29
33
|
The only halts named in the invoking command:
|
|
@@ -39,7 +39,7 @@ schema_version: 1
|
|
|
39
39
|
# CI guard: a release bump of `package.json` must update this value
|
|
40
40
|
# in lockstep — see scripts/check_template_pin_drift.py (road-to-
|
|
41
41
|
# portable-runtime-and-update-check P3.3).
|
|
42
|
-
agent_config_version: "4.
|
|
42
|
+
agent_config_version: "4.3.0"
|
|
43
43
|
|
|
44
44
|
# --- Project identity ---
|
|
45
45
|
project:
|
package/CHANGELOG.md
CHANGED
|
@@ -786,13 +786,114 @@ our recommendation order, not its support status.
|
|
|
786
786
|
users" tension without removing any path that an existing user
|
|
787
787
|
might rely on.
|
|
788
788
|
|
|
789
|
-
# Era:
|
|
789
|
+
# Era: 4.1.x — current
|
|
790
790
|
|
|
791
|
-
> Started at `
|
|
791
|
+
> Started at `4.1.0` (2026-05-27). Full entries live inline below.
|
|
792
792
|
> The drift test caps this era at 250 lines of entry body; growth past
|
|
793
793
|
> that forces a new era split (`# Era: 3.3.x`, etc.) — see
|
|
794
794
|
> [`docs/contracts/CHANGELOG-conventions.md § Era splits`](docs/contracts/CHANGELOG-conventions.md).
|
|
795
795
|
|
|
796
|
+
## [4.5.0](https://github.com/event4u-app/agent-config/compare/4.3.0...4.5.0) (2026-05-27)
|
|
797
|
+
|
|
798
|
+
### Features
|
|
799
|
+
|
|
800
|
+
* **wizard:** move name + language to a welcome step (Step 1) with smart pre-fill ([98fc74d](https://github.com/event4u-app/agent-config/commit/98fc74d3da2337c811d59e22bbcde75daa1ae623))
|
|
801
|
+
* **wizard:** badge packs with their workspace areas on the packs step ([0c16a81](https://github.com/event4u-app/agent-config/commit/0c16a81c9479f66e5b66a666eef39d7555fca6e2))
|
|
802
|
+
* **wizard:** show example roles per area instead of the raw workspace id ([b60e08d](https://github.com/event4u-app/agent-config/commit/b60e08d56dffe5151b25cec7ddb0394d47123e5a))
|
|
803
|
+
* **wizard-ui:** show the role id under each workspace on the roles step ([5556afa](https://github.com/event4u-app/agent-config/commit/5556afa7b410d9963eef4abcd1e1f4cb72bcd6cf))
|
|
804
|
+
* **wizard-ui:** show the role id under each workspace on the roles step ([8dd4611](https://github.com/event4u-app/agent-config/commit/8dd46113f856b1c8bb0c7bf12d8594ee1b898b97))
|
|
805
|
+
* optimize autonomy-mechanics ([615c368](https://github.com/event4u-app/agent-config/commit/615c368a6f07394468247b9a2b281114c29f290f))
|
|
806
|
+
* **wizard:** add roles step (Step 2) + drop the formality setting ([7331651](https://github.com/event4u-app/agent-config/commit/7331651e2d7915b13a9a639414884cffea277a19))
|
|
807
|
+
* **wizard-ui:** smarter Step-1/2 pre-selection, sticky frameworks, empty-selection gate ([8de1e0e](https://github.com/event4u-app/agent-config/commit/8de1e0e6f50408d82b4d3f3ee3b35296aefb472f))
|
|
808
|
+
* **wizard:** surface prior tool selection from the install lockfile ([cdacbe0](https://github.com/event4u-app/agent-config/commit/cdacbe0292b60a447966ee976e18382da274756f))
|
|
809
|
+
* **init:** kill a stale wizard server before launching a fresh one ([dd57b7f](https://github.com/event4u-app/agent-config/commit/dd57b7f5ec121dc3abc2815fdcfcf26dc10c930a))
|
|
810
|
+
* **wizard:** auto-shut the server down after 30 min of inactivity ([5f9514f](https://github.com/event4u-app/agent-config/commit/5f9514fb869df901fb184b7ff7b8c4f0e14ddf91))
|
|
811
|
+
* **wizard:** shut the local server down when the browser window closes ([77d3c4f](https://github.com/event4u-app/agent-config/commit/77d3c4fcdd3e35f43daeb1a39e27e9e48653ef98))
|
|
812
|
+
* **wizard-ui:** first-run detection, pack tiles, styled inputs, handoff, rtk + AI-council steps ([f1755ed](https://github.com/event4u-app/agent-config/commit/f1755ed23687c6b6013480c1e743eabf0a53807a))
|
|
813
|
+
* **packs:** advisory `cluster:` field for wizard language→framework grouping ([b2a2ed9](https://github.com/event4u-app/agent-config/commit/b2a2ed979666b9f20686c30a3529b5ee9c8004fb))
|
|
814
|
+
* **wizard-server:** fresh-start state + tool/rtk/council detect & config endpoints ([c32d87c](https://github.com/event4u-app/agent-config/commit/c32d87c020006e3759f5a3aec362450650bb6de1))
|
|
815
|
+
|
|
816
|
+
### Bug Fixes
|
|
817
|
+
|
|
818
|
+
* **ci:** regenerate pack-ai-video for the description change + fix userMd test resets ([cd4509d](https://github.com/event4u-app/agent-config/commit/cd4509d6a5601b5d6ca8d4bd4adef53a3e9468bb))
|
|
819
|
+
* **condense-memory:** preserve URLs, link targets, and paths in prose ([aac6de1](https://github.com/event4u-app/agent-config/commit/aac6de1710a06f29be43c732aeb1c0e707bdfc69))
|
|
820
|
+
* **wizard:** pre-select the user's prior tool selection, not every deployed tool ([afe38a3](https://github.com/event4u-app/agent-config/commit/afe38a3458818ab532f01266b7e17708bfb1702b))
|
|
821
|
+
* **packs:** allow `cluster` in the discovery-manifest schema ([9014e95](https://github.com/event4u-app/agent-config/commit/9014e95983bff5e3b7acd96bd249ffced11a109c))
|
|
822
|
+
* **template:** bump agent-project-settings pin to 4.3.0 ([c2648ce](https://github.com/event4u-app/agent-config/commit/c2648cef51a8b587e1e3c7be536c3b46fbdd7410))
|
|
823
|
+
|
|
824
|
+
### Documentation
|
|
825
|
+
|
|
826
|
+
* **adr-013:** record the advisory example_roles key on workspaces ([ebcc661](https://github.com/event4u-app/agent-config/commit/ebcc66164bc6ce0201695bf293515f309d8efcf4))
|
|
827
|
+
* **wizard:** roles step + remove formality from schema docs and user commands ([06f890e](https://github.com/event4u-app/agent-config/commit/06f890e2e259016417b0a808f4e8c92e53c0ebea))
|
|
828
|
+
* **gui-wizard:** document Step-1/2 pre-selection, sticky frameworks, empty-selection gate ([ca273de](https://github.com/event4u-app/agent-config/commit/ca273de6e3e8b182fa98ddaff985cf4acb31eb91))
|
|
829
|
+
* **gui-wizard:** document 30-min idle shutdown + init kill-stale-server ([dfcdc40](https://github.com/event4u-app/agent-config/commit/dfcdc4054b85edab426abcb0bb4f2672d373c554))
|
|
830
|
+
* **gui-wizard:** document the browser-close shutdown beacon + idle backstop ([4eccc51](https://github.com/event4u-app/agent-config/commit/4eccc5117a802c1a0d57b7a98d7eea7a36d0078a))
|
|
831
|
+
* **roadmap:** complete + archive road-to-wizard-ux-improvements ([e02d514](https://github.com/event4u-app/agent-config/commit/e02d5145c9343126a2aa049811fc8094de8fa542))
|
|
832
|
+
* **gui-wizard:** step layout 8/11 + ai-council step + new wizard endpoints ([fdbcd9c](https://github.com/event4u-app/agent-config/commit/fdbcd9c494ec2785375ed1d3f1e130e3a4cb99ba))
|
|
833
|
+
|
|
834
|
+
### Tests
|
|
835
|
+
|
|
836
|
+
* **wizard:** roles step coverage + formality removal + step-count shifts ([5f8ec3e](https://github.com/event4u-app/agent-config/commit/5f8ec3ee4a1f135ee00e60ca612a2b4f09dbd7ba))
|
|
837
|
+
* **wizard:** cover detection, packs cluster, handoff, rtk, AI-council + step-count shifts ([5b6b758](https://github.com/event4u-app/agent-config/commit/5b6b7581e784bf5b219d30981f614e3778ccaaad))
|
|
838
|
+
|
|
839
|
+
### Chores
|
|
840
|
+
|
|
841
|
+
* **changelog:** split era 3.2.x → pre-4.0.0 ([10a6dd4](https://github.com/event4u-app/agent-config/commit/10a6dd415e5e8f3a60714898ad9157484b6a29e2))
|
|
842
|
+
* refresh condensation hashes for the autonomy/cheap-question contexts ([843f065](https://github.com/event4u-app/agent-config/commit/843f0658e1ac965c1dc44aebce26cec29744a0a7))
|
|
843
|
+
* add new roadmaps ([76ec1e3](https://github.com/event4u-app/agent-config/commit/76ec1e392b656c2177b7b9e1f75d5c6a1d1976e4))
|
|
844
|
+
* **docs:** repoint council-question links + ignore agents/tmp.old/ ([984512e](https://github.com/event4u-app/agent-config/commit/984512e623f25e9d336647d5190d3cfc2969d9b5))
|
|
845
|
+
|
|
846
|
+
### Other
|
|
847
|
+
|
|
848
|
+
* **wizard:** shrink the workspace badges on the packs step ([9af0d1e](https://github.com/event4u-app/agent-config/commit/9af0d1ea68302e3d3ef22b4a62955dfe2c54074b))
|
|
849
|
+
* Revert "feat(wizard-ui): show the role id under each workspace on the roles step" ([a22120c](https://github.com/event4u-app/agent-config/commit/a22120c3625c2535b85c05b9c7dcbfc2f3849d1f))
|
|
850
|
+
* 4.4.0 ([e2d7c13](https://github.com/event4u-app/agent-config/commit/e2d7c139a910f0539cece0ce0645259fc8d778fd))
|
|
851
|
+
|
|
852
|
+
Tests: 5059 (+7 since 4.3.0)
|
|
853
|
+
|
|
854
|
+
## [4.4.0](https://github.com/event4u-app/agent-config/compare/4.3.0...4.4.0) (2026-05-27)
|
|
855
|
+
|
|
856
|
+
### Features
|
|
857
|
+
|
|
858
|
+
* optimize autonomy-mechanics ([615c368](https://github.com/event4u-app/agent-config/commit/615c368a6f07394468247b9a2b281114c29f290f))
|
|
859
|
+
* **wizard:** add roles step (Step 2) + drop the formality setting ([7331651](https://github.com/event4u-app/agent-config/commit/7331651e2d7915b13a9a639414884cffea277a19))
|
|
860
|
+
* **wizard-ui:** smarter Step-1/2 pre-selection, sticky frameworks, empty-selection gate ([8de1e0e](https://github.com/event4u-app/agent-config/commit/8de1e0e6f50408d82b4d3f3ee3b35296aefb472f))
|
|
861
|
+
* **wizard:** surface prior tool selection from the install lockfile ([cdacbe0](https://github.com/event4u-app/agent-config/commit/cdacbe0292b60a447966ee976e18382da274756f))
|
|
862
|
+
* **init:** kill a stale wizard server before launching a fresh one ([dd57b7f](https://github.com/event4u-app/agent-config/commit/dd57b7f5ec121dc3abc2815fdcfcf26dc10c930a))
|
|
863
|
+
* **wizard:** auto-shut the server down after 30 min of inactivity ([5f9514f](https://github.com/event4u-app/agent-config/commit/5f9514fb869df901fb184b7ff7b8c4f0e14ddf91))
|
|
864
|
+
* **wizard:** shut the local server down when the browser window closes ([77d3c4f](https://github.com/event4u-app/agent-config/commit/77d3c4fcdd3e35f43daeb1a39e27e9e48653ef98))
|
|
865
|
+
* **wizard-ui:** first-run detection, pack tiles, styled inputs, handoff, rtk + AI-council steps ([f1755ed](https://github.com/event4u-app/agent-config/commit/f1755ed23687c6b6013480c1e743eabf0a53807a))
|
|
866
|
+
* **packs:** advisory `cluster:` field for wizard language→framework grouping ([b2a2ed9](https://github.com/event4u-app/agent-config/commit/b2a2ed979666b9f20686c30a3529b5ee9c8004fb))
|
|
867
|
+
* **wizard-server:** fresh-start state + tool/rtk/council detect & config endpoints ([c32d87c](https://github.com/event4u-app/agent-config/commit/c32d87c020006e3759f5a3aec362450650bb6de1))
|
|
868
|
+
|
|
869
|
+
### Bug Fixes
|
|
870
|
+
|
|
871
|
+
* **wizard:** pre-select the user's prior tool selection, not every deployed tool ([afe38a3](https://github.com/event4u-app/agent-config/commit/afe38a3458818ab532f01266b7e17708bfb1702b))
|
|
872
|
+
* **packs:** allow `cluster` in the discovery-manifest schema ([9014e95](https://github.com/event4u-app/agent-config/commit/9014e95983bff5e3b7acd96bd249ffced11a109c))
|
|
873
|
+
* **template:** bump agent-project-settings pin to 4.3.0 ([c2648ce](https://github.com/event4u-app/agent-config/commit/c2648cef51a8b587e1e3c7be536c3b46fbdd7410))
|
|
874
|
+
|
|
875
|
+
### Documentation
|
|
876
|
+
|
|
877
|
+
* **wizard:** roles step + remove formality from schema docs and user commands ([06f890e](https://github.com/event4u-app/agent-config/commit/06f890e2e259016417b0a808f4e8c92e53c0ebea))
|
|
878
|
+
* **gui-wizard:** document Step-1/2 pre-selection, sticky frameworks, empty-selection gate ([ca273de](https://github.com/event4u-app/agent-config/commit/ca273de6e3e8b182fa98ddaff985cf4acb31eb91))
|
|
879
|
+
* **gui-wizard:** document 30-min idle shutdown + init kill-stale-server ([dfcdc40](https://github.com/event4u-app/agent-config/commit/dfcdc4054b85edab426abcb0bb4f2672d373c554))
|
|
880
|
+
* **gui-wizard:** document the browser-close shutdown beacon + idle backstop ([4eccc51](https://github.com/event4u-app/agent-config/commit/4eccc5117a802c1a0d57b7a98d7eea7a36d0078a))
|
|
881
|
+
* **roadmap:** complete + archive road-to-wizard-ux-improvements ([e02d514](https://github.com/event4u-app/agent-config/commit/e02d5145c9343126a2aa049811fc8094de8fa542))
|
|
882
|
+
* **gui-wizard:** step layout 8/11 + ai-council step + new wizard endpoints ([fdbcd9c](https://github.com/event4u-app/agent-config/commit/fdbcd9c494ec2785375ed1d3f1e130e3a4cb99ba))
|
|
883
|
+
|
|
884
|
+
### Tests
|
|
885
|
+
|
|
886
|
+
* **wizard:** roles step coverage + formality removal + step-count shifts ([5f8ec3e](https://github.com/event4u-app/agent-config/commit/5f8ec3ee4a1f135ee00e60ca612a2b4f09dbd7ba))
|
|
887
|
+
* **wizard:** cover detection, packs cluster, handoff, rtk, AI-council + step-count shifts ([5b6b758](https://github.com/event4u-app/agent-config/commit/5b6b7581e784bf5b219d30981f614e3778ccaaad))
|
|
888
|
+
|
|
889
|
+
### Chores
|
|
890
|
+
|
|
891
|
+
* refresh condensation hashes for the autonomy/cheap-question contexts ([843f065](https://github.com/event4u-app/agent-config/commit/843f0658e1ac965c1dc44aebce26cec29744a0a7))
|
|
892
|
+
* add new roadmaps ([76ec1e3](https://github.com/event4u-app/agent-config/commit/76ec1e392b656c2177b7b9e1f75d5c6a1d1976e4))
|
|
893
|
+
* **docs:** repoint council-question links + ignore agents/tmp.old/ ([984512e](https://github.com/event4u-app/agent-config/commit/984512e623f25e9d336647d5190d3cfc2969d9b5))
|
|
894
|
+
|
|
895
|
+
Tests: 5055 (+3 since 4.3.0)
|
|
896
|
+
|
|
796
897
|
## [4.3.0](https://github.com/event4u-app/agent-config/compare/4.2.0...4.3.0) (2026-05-27)
|
|
797
898
|
|
|
798
899
|
### Features
|
|
@@ -967,71 +1068,14 @@ Tests: 5052 (+9 since 4.1.0)
|
|
|
967
1068
|
|
|
968
1069
|
Tests: 5043 (+105 since 3.3.0)
|
|
969
1070
|
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
### Features
|
|
973
|
-
|
|
974
|
-
* **scripts:** point bench / eval / mcp tooling at internal/ (ADR-028 phase 1) ([c20b515](https://github.com/event4u-app/agent-config/commit/c20b515dfc80d03244e54af7b50e07d562647799))
|
|
975
|
-
|
|
976
|
-
### Bug Fixes
|
|
977
|
-
|
|
978
|
-
* **ci:** repoint bench/ -> internal/bench/ in projected agent-status + condense-memory ([682040b](https://github.com/event4u-app/agent-config/commit/682040b230248bd054767ab10bd1e90ed3a1d0b7))
|
|
979
|
-
|
|
980
|
-
### Documentation
|
|
981
|
-
|
|
982
|
-
* **roadmap:** archive road-to-root-layout-cleanup at 100% complete ([948f1a8](https://github.com/event4u-app/agent-config/commit/948f1a8cd9ec63fa831d5abab25aeb3657a0a7d4))
|
|
983
|
-
* **adr:** land Phase 2 audit evidence + ADR-029 multi-workspace deferral ([c4dabf1](https://github.com/event4u-app/agent-config/commit/c4dabf1f718fee0d4709d727d1e3eb781f8db62f))
|
|
984
|
-
* **adr:** land ADR-028 + root-layout-cleanup roadmap ([7b0fd28](https://github.com/event4u-app/agent-config/commit/7b0fd281288a87f9c218d9fa9d73f01a48a56626))
|
|
985
|
-
* repoint bench / mcp-worker paths to internal/ (ADR-028 phase 1) ([85278dd](https://github.com/event4u-app/agent-config/commit/85278dd831d44a187dcfe7684e895bac0ca97ae4))
|
|
986
|
-
|
|
987
|
-
### Chores
|
|
988
|
-
|
|
989
|
-
* **root:** move bench/ and workers/ under internal/ (ADR-028 phase 1) ([2a1dd1e](https://github.com/event4u-app/agent-config/commit/2a1dd1e363f9aabb59b6eebf35f64a47609abebb))
|
|
990
|
-
* **roadmap:** close changelog-era-auto-split (Phase 4 → ADR-027) ([b10b326](https://github.com/event4u-app/agent-config/commit/b10b32623b42739f0eba12a52173b810169929b6))
|
|
991
|
-
|
|
992
|
-
Tests: 4938 (+9 since 3.2.0)
|
|
993
|
-
|
|
994
|
-
## [3.2.0](https://github.com/event4u-app/agent-config/compare/3.1.1...3.2.0) (2026-05-25)
|
|
995
|
-
|
|
996
|
-
### Features
|
|
997
|
-
|
|
998
|
-
* **workspace:** GUI bridge + Workspace tab for Phases 4-8 backends ([6911b56](https://github.com/event4u-app/agent-config/commit/6911b56d1e474dace4a250d077ed93f628b029be))
|
|
999
|
-
* **workspace:** backend Python modules for Phases 5/6/7/8 ([c890fde](https://github.com/event4u-app/agent-config/commit/c890fde556b24e6b69409a4f0f647cace3779320))
|
|
1000
|
-
* **memory:** wire knowledge namespace into hybrid retrieval ([a65ae2c](https://github.com/event4u-app/agent-config/commit/a65ae2c117ac10aff78ac711316b441d2ee2f42c))
|
|
1001
|
-
* **knowledge:** implement local knowledge ingestion module ([d842ba3](https://github.com/event4u-app/agent-config/commit/d842ba350f325293f0faafe4698b8bbbe77033f8))
|
|
1002
|
-
* **knowledge:** add /knowledge command cluster source files ([9023c17](https://github.com/event4u-app/agent-config/commit/9023c17049ea42769537919df5ca10db1cc785e7))
|
|
1003
|
-
* **roadmap:** land road-to-employee-product-and-external-proof + consumer docs ([b2901ad](https://github.com/event4u-app/agent-config/commit/b2901ad516a6bb209b7fadae884563025a090e4d))
|
|
1004
|
-
* **roles:** scaffold consultant, content-creator, galabau experiences ([55384df](https://github.com/event4u-app/agent-config/commit/55384df486cba24288f38275435d151c5c7b8762))
|
|
1005
|
-
|
|
1006
|
-
### Bug Fixes
|
|
1007
|
-
|
|
1008
|
-
* **knowledge:** use agent-config-maintainer workspace per discovery vocabulary ([75f78ab](https://github.com/event4u-app/agent-config/commit/75f78ab2999ed5fbc261aecf9fadd692588a2498))
|
|
1009
|
-
* **check-refs:** mark forward-refs to recruit-sessions with ref-ignore ([147909b](https://github.com/event4u-app/agent-config/commit/147909b4428492ad8332959635573a1ab419d865))
|
|
1071
|
+
# Era: pre-4.0.0 — archived
|
|
1010
1072
|
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
* **contracts:** add 8 contracts for Daily Workspace + role experience ([34f882c](https://github.com/event4u-app/agent-config/commit/34f882c815fa2366956f2f454534bd9f18f79e04))
|
|
1018
|
-
* **adr:** add ADR-022..026 for Daily Workspace architecture ([034eb99](https://github.com/event4u-app/agent-config/commit/034eb99569fcf388099b059ae5e8fb0537d902e3))
|
|
1019
|
-
|
|
1020
|
-
### CI
|
|
1021
|
-
|
|
1022
|
-
* **visibility:** drop push-trigger ghost-runs from drift workflows ([1704683](https://github.com/event4u-app/agent-config/commit/1704683ff0f08985e750b7cb6c8555812f349914))
|
|
1023
|
-
|
|
1024
|
-
### Chores
|
|
1025
|
-
|
|
1026
|
-
* **gitignore:** ignore pnpm-lock.yaml (repo uses npm) ([088fae6](https://github.com/event4u-app/agent-config/commit/088fae6ef8377200185826c31ea8adc0b97573f4))
|
|
1027
|
-
* **counts:** sync command count to 136 (analytics cluster added) ([1d56496](https://github.com/event4u-app/agent-config/commit/1d564962bd57aedc6d4ff2ae6b757e45e8a63e2c))
|
|
1028
|
-
* **release:** bump agent_config_version in templates to match package.json 3.1.1 ([4864332](https://github.com/event4u-app/agent-config/commit/4864332804fe9979a4f94cb053cdd13c7473ac40))
|
|
1029
|
-
* **sync:** regenerate index + catalog for analytics commands ([77cb4fa](https://github.com/event4u-app/agent-config/commit/77cb4fa41d8b2773e7f5ece27f385d7b42862f5f))
|
|
1030
|
-
* **sync:** regenerate condensed analytics commands + Claude skill stubs ([41728c4](https://github.com/event4u-app/agent-config/commit/41728c4400c8cabaa8966d2708fbb4f3cef64adb))
|
|
1031
|
-
* **knowledge:** regenerate projections + manifests for /knowledge cluster ([f4c5a26](https://github.com/event4u-app/agent-config/commit/f4c5a26bffef0a25918bdde42131354c9dd5295d))
|
|
1032
|
-
* **discovery:** add agent-skills and cinematic-ai-video to topics ([5c01d5e](https://github.com/event4u-app/agent-config/commit/5c01d5e152bda559aefd48fd8220f2a3cbd90249))
|
|
1033
|
-
|
|
1034
|
-
Tests: 4929 (+90 since 3.1.1)
|
|
1073
|
+
> All entries from `3.2.0` and `3.3.0` live in
|
|
1074
|
+
> [`docs/archive/CHANGELOG-pre-4.0.0.md`](docs/archive/CHANGELOG-pre-4.0.0.md).
|
|
1075
|
+
> The archive is read-only; git tags `3.2.0` and `3.3.0` remain the
|
|
1076
|
+
> canonical source for what shipped. Splitting them out of the main
|
|
1077
|
+
> file keeps the active era under the 250-line drift cap enforced by
|
|
1078
|
+
> `tests/test_changelog_eras.py`.
|
|
1035
1079
|
|
|
1036
1080
|
# Era: pre-3.2.0 — archived
|
|
1037
1081
|
|
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
# Source of truth: docs/decisions/ADR-013-discovery-frontmatter-contract.md §packs
|
|
4
4
|
# Amendments require an ADR-013 amendment in the same PR.
|
|
5
5
|
# `requires_hint` is advisory metadata only; runtime does NOT act on it.
|
|
6
|
+
# `cluster: <language-id>` is advisory too (road-to-wizard-ux-improvements
|
|
7
|
+
# § Phase 4): it groups a framework pack under a language tile in the setup
|
|
8
|
+
# wizard's pack step (e.g. laravel → php, react → typescript). The value must
|
|
9
|
+
# be a known pack id. Like `requires_hint`, the installer does NOT act on it.
|
|
6
10
|
# Lint: scripts/lint_discovery_vocabulary.py
|
|
7
11
|
|
|
8
12
|
- id: engineering-base
|
|
@@ -23,6 +27,7 @@
|
|
|
23
27
|
description: Laravel framework patterns; depends on PHP at the artefact level.
|
|
24
28
|
workspaces: [engineering]
|
|
25
29
|
requires_hint: [php, engineering-base]
|
|
30
|
+
cluster: php
|
|
26
31
|
trust_level_default: professional
|
|
27
32
|
|
|
28
33
|
- id: symfony
|
|
@@ -30,6 +35,7 @@
|
|
|
30
35
|
description: Symfony framework patterns; depends on PHP at the artefact level.
|
|
31
36
|
workspaces: [engineering]
|
|
32
37
|
requires_hint: [php, engineering-base]
|
|
38
|
+
cluster: php
|
|
33
39
|
trust_level_default: professional
|
|
34
40
|
|
|
35
41
|
- id: javascript
|
|
@@ -51,6 +57,7 @@
|
|
|
51
57
|
description: React framework patterns.
|
|
52
58
|
workspaces: [engineering]
|
|
53
59
|
requires_hint: [javascript, engineering-base]
|
|
60
|
+
cluster: typescript
|
|
54
61
|
trust_level_default: professional
|
|
55
62
|
|
|
56
63
|
- id: nextjs
|
|
@@ -58,6 +65,7 @@
|
|
|
58
65
|
description: Next.js framework patterns.
|
|
59
66
|
workspaces: [engineering]
|
|
60
67
|
requires_hint: [react, typescript, engineering-base]
|
|
68
|
+
cluster: typescript
|
|
61
69
|
trust_level_default: professional
|
|
62
70
|
|
|
63
71
|
- id: python
|
|
@@ -147,7 +155,7 @@
|
|
|
147
155
|
|
|
148
156
|
- id: ai-video
|
|
149
157
|
label: AI Video
|
|
150
|
-
description: AI video pipeline
|
|
158
|
+
description: AI video pipeline.
|
|
151
159
|
workspaces: [small-business]
|
|
152
160
|
trust_level_default: experimental
|
|
153
161
|
onboarding:
|
|
@@ -3,57 +3,70 @@
|
|
|
3
3
|
# Source of truth: docs/decisions/ADR-013-discovery-frontmatter-contract.md §workspaces
|
|
4
4
|
# Amendments require an ADR-013 amendment in the same PR.
|
|
5
5
|
# Lint: scripts/lint_discovery_vocabulary.py
|
|
6
|
+
#
|
|
7
|
+
# `example_roles` is advisory UI copy only (NOT a closed vocabulary): the
|
|
8
|
+
# wizard shows it under each area as illustrative job titles. The stored
|
|
9
|
+
# `.agent-user.yml` role is the workspace id, not these examples.
|
|
6
10
|
|
|
7
11
|
- id: engineering
|
|
8
12
|
label: Engineering
|
|
9
13
|
description: Code, tests, CI, reviews, architecture.
|
|
14
|
+
example_roles: [Developer, CTO, Tech Lead]
|
|
10
15
|
default_packs: [engineering-base]
|
|
11
16
|
optional_packs: [php, laravel, symfony, javascript, typescript, react, nextjs, python]
|
|
12
17
|
|
|
13
18
|
- id: product
|
|
14
19
|
label: Product
|
|
15
20
|
description: Discovery, roadmaps, prioritisation, AC tightening.
|
|
21
|
+
example_roles: [Product Manager, CPO]
|
|
16
22
|
default_packs: [product-basic]
|
|
17
23
|
optional_packs: [product-discovery]
|
|
18
24
|
|
|
19
25
|
- id: finance
|
|
20
|
-
label: Finance
|
|
26
|
+
label: Finance
|
|
21
27
|
description: Cashflow, forecasting, DCF, board reporting.
|
|
28
|
+
example_roles: [CFO, Controller, Finance Lead]
|
|
22
29
|
default_packs: [finance-basic]
|
|
23
30
|
optional_packs: [finance-advanced]
|
|
24
31
|
|
|
25
32
|
- id: founder
|
|
26
33
|
label: Founder
|
|
27
34
|
description: Strategy, fundraising, vision, board narrative.
|
|
35
|
+
example_roles: [CEO, Co-Founder]
|
|
28
36
|
default_packs: [founder-strategy]
|
|
29
37
|
optional_packs: [finance-basic, gtm-marketing]
|
|
30
38
|
|
|
31
39
|
- id: gtm
|
|
32
40
|
label: Go-to-Market
|
|
33
41
|
description: Sales pipeline, marketing, positioning, launch.
|
|
42
|
+
example_roles: [Head of Sales, CMO, Growth Lead]
|
|
34
43
|
default_packs: [gtm-sales, gtm-marketing]
|
|
35
44
|
optional_packs: []
|
|
36
45
|
|
|
37
46
|
- id: ops
|
|
38
47
|
label: Operations
|
|
39
48
|
description: Hiring, comp, perf, org design, runbooks.
|
|
49
|
+
example_roles: [COO, Head of People, Ops Lead]
|
|
40
50
|
default_packs: [ops-people]
|
|
41
51
|
optional_packs: []
|
|
42
52
|
|
|
43
53
|
- id: small-business
|
|
44
54
|
label: Small Business
|
|
45
55
|
description: Self-employed / SMB-shaped owner workflows.
|
|
56
|
+
example_roles: [Owner, Freelancer]
|
|
46
57
|
default_packs: [small-business]
|
|
47
58
|
optional_packs: [ai-video]
|
|
48
59
|
|
|
49
60
|
- id: construction
|
|
50
61
|
label: Construction
|
|
51
62
|
description: Trade-business workflows (planning, quotes).
|
|
63
|
+
example_roles: [Contractor, Site Manager]
|
|
52
64
|
default_packs: [construction]
|
|
53
65
|
optional_packs: []
|
|
54
66
|
|
|
55
67
|
- id: agent-config-maintainer
|
|
56
68
|
label: Maintainer
|
|
57
69
|
description: Skills/rules/commands that maintain this package.
|
|
70
|
+
example_roles: [Maintainer]
|
|
58
71
|
default_packs: [meta]
|
|
59
72
|
optional_packs: []
|
package/dist/cli/agent-config.js
CHANGED
|
@@ -159,10 +159,11 @@ async function main(argv) {
|
|
|
159
159
|
const forwarded = {
|
|
160
160
|
initialRoute: '/wizard',
|
|
161
161
|
extendedSteps: extended,
|
|
162
|
-
// Setup skips the
|
|
163
|
-
//
|
|
164
|
-
//
|
|
165
|
-
|
|
162
|
+
// Setup skips the welcome step (it keeps name/language in the
|
|
163
|
+
// user-md form) and the install-only lead (ai-tools/roles/packs/
|
|
164
|
+
// modules). Extended → jump to Identity/editor (index 5);
|
|
165
|
+
// non-extended → skip welcome to the first settings step (1).
|
|
166
|
+
initialStep: extended ? 5 : 1,
|
|
166
167
|
wizardMode: 'setup',
|
|
167
168
|
};
|
|
168
169
|
if (opts.port !== undefined)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent-config.js","sourceRoot":"","sources":["../../src/cli/agent-config.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"agent-config.js","sourceRoot":"","sources":["../../src/cli/agent-config.ts"],"names":[],"mappings":";AACA;;;;;;;;;;;;GAYG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AACvC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAC1C,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAC3D,OAAO,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACnD,OAAO,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAC5E,OAAO,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEzC,SAAS,WAAW;IAChB,MAAM,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,YAAY,EAAE,MAAM,CAAC,CAA0B,CAAC;IACpF,OAAO,OAAO,GAAG,CAAC,OAAO,KAAK,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC;AACnE,CAAC;AAED,SAAS,SAAS;IACd,MAAM,KAAK,GAAa;QACpB,oDAAoD;QACpD,EAAE;QACF,QAAQ;QACR,oCAAoC;QACpC,uBAAuB;QACvB,0BAA0B;QAC1B,EAAE;QACF,6BAA6B;KAChC,CAAC;IACF,KAAK,MAAM,KAAK,IAAI,QAAQ,EAAE,CAAC;QAC3B,IAAI,KAAK,CAAC,WAAW,KAAK,QAAQ;YAAE,SAAS;QAC7C,MAAM,QAAQ,GAAG,KAAK,CAAC,QAAQ,IAAI,EAAE,CAAC;QACtC,KAAK,CAAC,IAAI,CAAC,KAAK,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,IAAI,QAAQ,EAAE,CAAC,CAAC;IACzD,CAAC;IACD,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IACf,KAAK,CAAC,IAAI,CAAC,wDAAwD,CAAC,CAAC;IACrE,KAAK,CAAC,IAAI,CAAC,oEAAoE,CAAC,CAAC;IACjF,OAAO,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;AAC5B,CAAC;AAED,KAAK,UAAU,IAAI,CAAC,IAAuB;IACvC,MAAM,OAAO,GAAG,IAAI,OAAO,EAAE,CAAC;IAC9B,OAAO;SACF,IAAI,CAAC,cAAc,CAAC;SACpB,WAAW,CAAC,gCAAgC,CAAC;SAC7C,OAAO,CAAC,WAAW,EAAE,EAAE,eAAe,EAAE,uBAAuB,CAAC;SAChE,UAAU,CAAC,YAAY,EAAE,gBAAgB,CAAC;SAC1C,kBAAkB,CAAC,IAAI,CAAC;SACxB,oBAAoB,CAAC,IAAI,CAAC,CAAC;IAEhC,OAAO;SACF,OAAO,CAAC,UAAU,CAAC;SACnB,WAAW,CAAC,qCAAqC,CAAC;SAClD,MAAM,CAAC,WAAW,EAAE,yBAAyB,CAAC;SAC9C,MAAM,CAAC,QAAQ,EAAE,4BAA4B,CAAC;SAC9C,MAAM,CAAC,aAAa,EAAE,gCAAgC,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC;SAC1F,MAAM,CAAC,KAAK,EAAE,IAA2D,EAAE,EAAE;QAC1E,MAAM,IAAI,GAAG,MAAM,WAAW,CAAC,IAAI,CAAC,CAAC;QACrC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACvB,CAAC,CAAC,CAAC;IAEP,OAAO;SACF,OAAO,CAAC,cAAc,CAAC;SACvB,WAAW,CAAC,gCAAgC,CAAC;SAC7C,MAAM,CAAC,GAAG,EAAE;QACT,MAAM,IAAI,GAAG,cAAc,EAAE,CAAC;QAC9B,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACvB,CAAC,CAAC,CAAC;IAEP,OAAO;SACF,OAAO,CAAC,UAAU,CAAC;SACnB,WAAW,CAAC,yDAAyD,CAAC;SACtE,MAAM,CAAC,YAAY,EAAE,+BAA+B,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;SACpF,MAAM,CAAC,WAAW,EAAE,2BAA2B,CAAC;SAChD,MAAM,CAAC,kBAAkB,EAAE,gCAAgC,CAAC;SAC5D,MAAM,CAAC,kBAAkB,EAAE,4CAA4C,CAAC;SACxE,MAAM,CAAC,uBAAuB,EAAE,0DAA0D,CAAC;SAC3F,MAAM,CAAC,WAAW,EAAE,wHAAwH,CAAC;SAC7I,MAAM,CAAC,KAAK,EAAE,IAOd,EAAE,EAAE;QACD,MAAM,IAAI,GAAG,MAAM,UAAU,CAAC,IAAI,CAAC,CAAC;QACpC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACvB,CAAC,CAAC,CAAC;IAEP,OAAO;SACF,OAAO,CAAC,UAAU,CAAC;SACnB,WAAW,CAAC,2EAA2E,CAAC;SACxF,MAAM,CAAC,YAAY,EAAE,+BAA+B,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;SACpF,MAAM,CAAC,WAAW,EAAE,2BAA2B,CAAC;SAChD,MAAM,CAAC,kBAAkB,EAAE,gCAAgC,CAAC;SAC5D,MAAM,CAAC,kBAAkB,EAAE,4CAA4C,CAAC;SACxE,MAAM,CAAC,uBAAuB,EAAE,0DAA0D,CAAC;SAC3F,MAAM,CAAC,WAAW,EAAE,gDAAgD,CAAC;SACrE,MAAM,CAAC,KAAK,EAAE,IAOd,EAAE,EAAE;QACD,MAAM,IAAI,GAAG,MAAM,WAAW,CAAC,IAAI,CAAC,CAAC;QACrC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACvB,CAAC,CAAC,CAAC;IAEP,qEAAqE;IACrE,4EAA4E;IAC5E,iEAAiE;IACjE,wBAAwB;IACxB,OAAO;SACF,OAAO,CAAC,SAAS,CAAC;SAClB,WAAW,CAAC,8EAA8E,CAAC;SAC3F,MAAM,CAAC,YAAY,EAAE,+BAA+B,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;SACpF,MAAM,CAAC,WAAW,EAAE,2BAA2B,CAAC;SAChD,MAAM,CAAC,kBAAkB,EAAE,gCAAgC,CAAC;SAC5D,MAAM,CAAC,kBAAkB,EAAE,4CAA4C,CAAC;SACxE,MAAM,CAAC,uBAAuB,EAAE,0DAA0D,CAAC;SAC3F,MAAM,CAAC,WAAW,EAAE,gDAAgD,CAAC;SACrE,MAAM,CAAC,KAAK,EAAE,IAOd,EAAE,EAAE;QACD,MAAM,SAAS,GAAqC;YAChD,YAAY,EAAE,SAAS;YACvB,aAAa,EAAE,IAAI;YACnB,WAAW,EAAE,CAAC;YACd,UAAU,EAAE,SAAS;SACxB,CAAC;QACF,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS;YAAE,SAAS,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACxD,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS;YAAE,SAAS,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACxD,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS;YAAE,SAAS,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;QAC9D,IAAI,IAAI,CAAC,aAAa,KAAK,SAAS;YAAE,SAAS,CAAC,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC;QACnF,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS;YAAE,SAAS,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC;QAC7E,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS;YAAE,SAAS,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;QAC9D,MAAM,IAAI,GAAG,MAAM,UAAU,CAAC,SAAS,CAAC,CAAC;QACzC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACvB,CAAC,CAAC,CAAC;IAEP,mEAAmE;IACnE,mEAAmE;IACnE,+DAA+D;IAC/D,uEAAuE;IACvE,4DAA4D;IAC5D,mEAAmE;IACnE,OAAO;SACF,OAAO,CAAC,OAAO,CAAC;SAChB,WAAW,CAAC,iFAAiF,CAAC;SAC9F,MAAM,CAAC,YAAY,EAAE,+BAA+B,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;SACpF,MAAM,CAAC,WAAW,EAAE,2BAA2B,CAAC;SAChD,MAAM,CAAC,kBAAkB,EAAE,gCAAgC,CAAC;SAC5D,MAAM,CAAC,kBAAkB,EAAE,4CAA4C,CAAC;SACxE,MAAM,CAAC,uBAAuB,EAAE,0DAA0D,CAAC;SAC3F,MAAM,CAAC,WAAW,EAAE,gDAAgD,CAAC;SACrE,MAAM,CAAC,eAAe,EAAE,qEAAqE,CAAC;SAC9F,MAAM,CAAC,KAAK,EAAE,IAQd,EAAE,EAAE;QACD,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,KAAK,KAAK,CAAC;QACzC,MAAM,SAAS,GAAqC;YAChD,YAAY,EAAE,SAAS;YACvB,aAAa,EAAE,QAAQ;YACvB,8DAA8D;YAC9D,iEAAiE;YACjE,0DAA0D;YAC1D,8DAA8D;YAC9D,WAAW,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;YAC7B,UAAU,EAAE,OAAO;SACtB,CAAC;QACF,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS;YAAE,SAAS,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACxD,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS;YAAE,SAAS,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACxD,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS;YAAE,SAAS,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;QAC9D,IAAI,IAAI,CAAC,aAAa,KAAK,SAAS;YAAE,SAAS,CAAC,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC;QACnF,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS;YAAE,SAAS,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC;QAC7E,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS;YAAE,SAAS,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;QAC9D,MAAM,IAAI,GAAG,MAAM,UAAU,CAAC,SAAS,CAAC,CAAC;QACzC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACvB,CAAC,CAAC,CAAC;IAEP,MAAM,UAAU,GAAG,OAAO;SACrB,OAAO,CAAC,YAAY,CAAC;SACrB,WAAW,CAAC,gDAAgD,CAAC,CAAC;IACnE,UAAU;SACL,OAAO,CAAC,IAAI,CAAC;SACb,WAAW,CAAC,4CAA4C,CAAC;SACzD,MAAM,CAAC,QAAQ,EAAE,4BAA4B,CAAC;SAC9C,MAAM,CAAC,CAAC,IAAwB,EAAE,EAAE;QACjC,MAAM,IAAI,GAAG,eAAe,CAAC,IAAI,CAAC,CAAC;QACnC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACvB,CAAC,CAAC,CAAC;IAEP,MAAM,KAAK,GAAG,OAAO;SAChB,OAAO,CAAC,OAAO,CAAC;SAChB,WAAW,CAAC,2CAA2C,CAAC,CAAC;IAC9D,KAAK;SACA,OAAO,CAAC,IAAI,CAAC;SACb,WAAW,CAAC,oDAAoD,CAAC;SACjE,MAAM,CAAC,QAAQ,EAAE,4BAA4B,CAAC;SAC9C,MAAM,CAAC,CAAC,IAAwB,EAAE,EAAE;QACjC,MAAM,IAAI,GAAG,UAAU,CAAC,IAAI,CAAC,CAAC;QAC9B,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACvB,CAAC,CAAC,CAAC;IAEP,OAAO;SACF,OAAO,CAAC,MAAM,CAAC;SACf,WAAW,CAAC,gDAAgD,CAAC;SAC7D,kBAAkB,CAAC,IAAI,CAAC;SACxB,oBAAoB,CAAC,IAAI,CAAC;SAC1B,MAAM,CAAC,KAAK,IAAI,EAAE;QACf,MAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;QAClD,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YACpB,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,SAAS,EAAE,IAAI,CAAC,CAAC;YACzC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QACpB,CAAC;QACD,MAAM,IAAI,GAAG,MAAM,cAAc,CAAC,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC,CAAC;QAC/D,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACvB,CAAC,CAAC,CAAC;IAEP,yCAAyC;IACzC,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QACpB,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,SAAS,EAAE,IAAI,CAAC,CAAC;QACzC,OAAO,CAAC,CAAC;IACb,CAAC;IAED,MAAM,IAAI,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;IACrB,IAAI,IAAI,KAAK,QAAQ,IAAI,IAAI,KAAK,IAAI,EAAE,CAAC;QACrC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,SAAS,EAAE,IAAI,CAAC,CAAC;QACzC,OAAO,CAAC,CAAC;IACb,CAAC;IACD,IAAI,IAAI,KAAK,WAAW,IAAI,IAAI,KAAK,IAAI,EAAE,CAAC;QACxC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,WAAW,EAAE,IAAI,CAAC,CAAC;QAC3C,OAAO,CAAC,CAAC;IACb,CAAC;IAED,kEAAkE;IAClE,MAAM,MAAM,GAAG,CAAC,UAAU,EAAE,cAAc,EAAE,UAAU,EAAE,UAAU,EAAE,SAAS,EAAE,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC;IACvH,IAAI,IAAI,KAAK,SAAS,IAAI,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC;QAC9C,MAAM,OAAO,CAAC,UAAU,CAAC,CAAC,MAAM,EAAE,cAAc,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;QAC5D,OAAO,CAAC,CAAC;IACb,CAAC;IAED,2EAA2E;IAC3E,yEAAyE;IACzE,4EAA4E;IAC5E,4EAA4E;IAC5E,wEAAwE;IACxE,IAAI,IAAI,KAAK,MAAM,IAAI,mBAAmB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;QACxD,OAAO,UAAU,CAAC,mBAAmB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;IAC1D,CAAC;IAED,4DAA4D;IAC5D,OAAO,cAAc,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;AAC1C,CAAC;AAED,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;KACtB,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;KACvC,KAAK,CAAC,CAAC,GAAY,EAAE,EAAE;IACpB,MAAM,OAAO,GAAG,GAAG,YAAY,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;IACjE,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IACtB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AACpB,CAAC,CAAC,CAAC"}
|