toga-ai 1.0.641 → 1.0.642
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.
|
@@ -130,9 +130,10 @@ So the decision: build the shell now, swap it later.
|
|
|
130
130
|
|
|
131
131
|
## Styling
|
|
132
132
|
|
|
133
|
-
The `.chatveil` / `.chatpanel` block
|
|
134
|
-
|
|
135
|
-
|
|
133
|
+
The `.chatveil` / `.chatpanel` block was ported from the security mockup's `styles.css`
|
|
134
|
+
into `security.css` and is **scoped under `.security-shell`** like every other landing
|
|
135
|
+
rule. (The source mockup folder was deleted from the repo on 2026-08-25; `security.css`
|
|
136
|
+
is now the only copy of these styles.) `z-index: 120`, width `min(400px, 92vw)`, reduced-motion respected.
|
|
136
137
|
`.chatmd-p` / `.chatmd-list` carry the reply rhythm. Escape and scrim click close the
|
|
137
138
|
drawer; focus moves into the composer on open and is restored to the opener on close.
|
|
138
139
|
|
|
@@ -37,12 +37,14 @@ A single-page **cybersecurity services marketing landing page** at **`/landing`*
|
|
|
37
37
|
and the 7-screen Agent Studio funnel is parked (see `web-funnel-app.md`). Its job is one
|
|
38
38
|
conversion: *"Book your free risk assessment."*
|
|
39
39
|
|
|
40
|
-
It is a **pixel-faithful port of a
|
|
41
|
-
mockup
|
|
40
|
+
It is a **pixel-faithful port of a designer mockup**, not new design work. The source
|
|
41
|
+
mockup lived at `BDR/AI BDR - Security/` (a React 18 UMD + in-browser Babel prototype —
|
|
42
42
|
`app.jsx`, `screens.jsx`, `components.jsx`, `styles.css`, plus a
|
|
43
|
-
`ground-truth-tokens-and-stack.md` token spec)
|
|
44
|
-
|
|
45
|
-
|
|
43
|
+
`ground-truth-tokens-and-stack.md` token spec) but **was deleted from the repo on
|
|
44
|
+
2026-08-25 — the port is complete and the shipped code in `src/` is now the only
|
|
45
|
+
reference.** The landing is that mockup's **`Capabilities` screen**; because
|
|
46
|
+
`src/flow/screens/Capabilities.tsx` already exists as a studio screen, it was ported
|
|
47
|
+
under the name **`SecurityLanding`**.
|
|
46
48
|
|
|
47
49
|
**Status (updated 2026-08-24): one live backend, nothing else.** The page now carries a
|
|
48
50
|
**Talos chat drawer wired to the real campaign-chat backend** — see
|
|
@@ -70,10 +72,9 @@ Section order inside the shell:
|
|
|
70
72
|
3. **Footer** (`.lp-footer`) — logo mark, name, one line, copyright.
|
|
71
73
|
|
|
72
74
|
**Zero binary assets.** Every visual is inline SVG or CSS (`LogoSymbol`,
|
|
73
|
-
`AssistantMark`, the `Ico` registry, `Particles`, gradients).
|
|
74
|
-
`
|
|
75
|
-
|
|
76
|
-
dependency.
|
|
75
|
+
`AssistantMark`, the `Ico` registry, `Particles`, gradients). Nothing was copied into
|
|
76
|
+
`public/` for this page. This is the opposite of the studio flow, whose agent art is a
|
|
77
|
+
real asset dependency.
|
|
77
78
|
|
|
78
79
|
## All copy lives in `src/content/security.ts`
|
|
79
80
|
|
|
@@ -126,8 +127,9 @@ does not define or defines differently.
|
|
|
126
127
|
was verified byte-identical**, so the 7 existing studio screens do not shift. Any future
|
|
127
128
|
change here must keep that property.
|
|
128
129
|
- **`LogoSymbol.tsx`** / **`AssistantMark.tsx`** — new inline-SVG marks.
|
|
129
|
-
- **`eslint.config.mjs`** — `"AI BDR - Security/**"`
|
|
130
|
-
|
|
130
|
+
- **`eslint.config.mjs`** — a `"AI BDR - Security/**"` `globalIgnores` entry existed
|
|
131
|
+
while the mockup was in the repo; it was removed with the mockup on 2026-08-25 (the
|
|
132
|
+
studio flow's `mockup/**` entry remains).
|
|
131
133
|
|
|
132
134
|
## CTA wiring (read this before assuming the page converts)
|
|
133
135
|
|
|
@@ -194,12 +196,12 @@ ported. All of it is scoped under `.security-shell`.
|
|
|
194
196
|
- **`Particles` default behavior must stay byte-identical.** The new `palette`/`bold`/
|
|
195
197
|
`radiate` props are additive on purpose; the 7 studio screens depend on the untouched
|
|
196
198
|
default path.
|
|
197
|
-
- **
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
199
|
+
- **Nothing further can be ported from the security mockup — it was deleted from the
|
|
200
|
+
repo (2026-08-25).** The chat drawer (see `landing-chat-drawer.md`) was the last piece
|
|
201
|
+
ported before deletion. Historical note: that mockup's `styles.css` carried the same
|
|
202
|
+
literal-`\n` corruption class as `mockup/styles.css` (a JS-string generation artifact,
|
|
203
|
+
see `web-funnel-app.md`) — the standing gotcha still applies to the studio `mockup/`
|
|
204
|
+
folder, which remains in the repo.
|
|
203
205
|
- **No `<head>` resource surprises this time**, but the standing rule from the first port
|
|
204
206
|
still applies: a font named in ported CSS is not a loaded font. The landing rides
|
|
205
207
|
`layout.tsx`'s existing Plus Jakarta Sans.
|
|
@@ -209,6 +211,10 @@ ported. All of it is scoped under `.security-shell`.
|
|
|
209
211
|
the page gains a form or reads a query param.
|
|
210
212
|
|
|
211
213
|
## Change history
|
|
214
|
+
- 2026-08-25 — The source mockup folder `BDR/AI BDR - Security/` was **deleted from the
|
|
215
|
+
repo** (port complete; shipped code is the reference now). Its `eslint.config.mjs`
|
|
216
|
+
`globalIgnores` entry was removed with it; the porting-related gotchas are retired.
|
|
217
|
+
(tcox)
|
|
212
218
|
- 2026-08-24 — Closed both of the doc's open gaps. BUILT the **mobile pass** as original
|
|
213
219
|
work (560px and 420px breakpoints under `.security-shell`; the `.lp-value-motes` inset
|
|
214
220
|
was pulled in to kill horizontal scroll, and `.wordmark-tech` is hidden under 420px) —
|
package/package.json
CHANGED