Skip to content

Commit 7903537

Browse files
Drop 4-tool framing; reframe repo as single-tool
The 4-tab UI with 3 'Coming soon' stubs read as unfinished. Tool 1 (Meeting Brief Generator) is the only tool that exists, and there are no concrete plans to ship Tools 2-4, so the stubs and roadmap were carrying weight they couldn't justify. - index.html: removed the .tabs nav block; eyebrow 'Tool 01' becomes 'Meeting Brief' - README.md: dropped the Status table and the Roadmap section; rewrote the Why paragraph and the file-tree comments to describe this as 'one such tool', not '1 of 4' The 'EA Toolkit' branding stays at the page header and repo name so nothing breaks if a future tool is added; just no promises in the UI. The .tabs CSS is left in place (dead but harmless) for the same reason. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent dcec819 commit 7903537

2 files changed

Lines changed: 4 additions & 28 deletions

File tree

README.md

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,18 @@ Small AI tools for executive assistants. Static frontend, Cloudflare Workers pro
44

55
**Live:** https://lisaesterhuizen0-wq.github.io/ea-toolkit/
66

7-
## Status
8-
9-
| # | Tool | Status |
10-
|---|------|--------|
11-
| 01 | Meeting Brief Generator | **Live** |
12-
| 02 | EOD Summary Generator | Coming soon |
13-
| 03 | Email Triage Helper | Coming soon |
14-
| 04 | Calendar Conflict Negotiator | Coming soon |
15-
167
## Why
178

18-
Most executive-assistant prep work is the same shape every time: take some context, distil signal, hand the exec something useful in 10 minutes. The four tools here each take a flavour of that work and give it a tight UI plus a well-tuned prompt.
9+
Most executive-assistant prep work is the same shape every time: take some context, distil signal, hand the exec something useful in 10 minutes. This repo is one such tool — a pre-meeting brief generator that turns a calendar invite plus a LinkedIn profile into a five-section brief (who they are / meeting context / talking points / questions / red flags).
1910

2011
## What's in this repo
2112

2213
```
23-
index.html # 4-tab toolkit page; only Tool 1 active
14+
index.html # the meeting brief generator page
2415
style.css # design system (cream paper / jade / jasper)
2516
app.js # vanilla JS — submit, fetch, Markdown render
2617
prompts/
27-
├── meeting-brief.md # Tool 1's prompt template (canonical reference)
18+
├── meeting-brief.md # the prompt template
2819
└── legacy/ # 5 prompts from the v1 React build, kept as a library
2920
worker/
3021
├── wrangler.toml # Cloudflare Worker config
@@ -96,14 +87,6 @@ Sign up at [console.anthropic.com](https://console.anthropic.com). Add a small a
9687
- GitHub Pages for hosting (free)
9788
- Anthropic Claude Sonnet 4.6 via `/v1/messages`
9889

99-
## Roadmap
100-
101-
Tools 2–4 reuse the same design system, Worker, and deploy pipeline. Each adds one more tab to the front page.
102-
103-
- **EOD Summary Generator** — paste a day of emails / Slack / calendar; get a tight end-of-day note for the exec
104-
- **Email Triage Helper** — classify and draft replies for an inbox dump
105-
- **Calendar Conflict Negotiator** — generate a tactful reschedule message given an attendee list and a constraint
106-
10790
## Built by
10891

10992
[Lisa Myburgh](https://github.com/lisaesterhuizen0-wq) — AI Operations specialist. Part of a personal portfolio aimed at international remote AI Operations roles.

index.html

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,9 @@
1818
<a class="repo-link" href="https://github.com/lisaesterhuizen0-wq/ea-toolkit" target="_blank" rel="noopener">Repo</a>
1919
</header>
2020

21-
<nav class="tabs" role="tablist" aria-label="Toolkit tools">
22-
<button class="tab active" role="tab" aria-selected="true">Meeting Brief</button>
23-
<button class="tab" role="tab" aria-selected="false" disabled title="Coming soon">EOD Summary</button>
24-
<button class="tab" role="tab" aria-selected="false" disabled title="Coming soon">Email Triage</button>
25-
<button class="tab" role="tab" aria-selected="false" disabled title="Coming soon">Calendar Conflict</button>
26-
</nav>
27-
2821
<main class="container">
2922
<section class="intro">
30-
<p class="eyebrow"><span class="dot"></span>Tool 01</p>
23+
<p class="eyebrow"><span class="dot"></span>Meeting Brief</p>
3124
<h1>Pre-meeting <em>brief</em>, in seconds.</h1>
3225
<p class="lede">Paste the calendar context and the LinkedIn profile of who you're meeting. Get a structured brief — who they are, what to talk about, what to ask, what to watch for.</p>
3326
</section>

0 commit comments

Comments
 (0)