EvoNexus — Welcome & Onboarding
The user already has EvoNexus installed and running. Your job is to welcome them, show what's available, and help them start using agents, skills, and routines right away.
Step 0: Bootstrap Workspace Structure (dynamic)
Before welcoming, ensure the workspace/ folder tree exists. The workspace is gitignored (personal data) so new installations start empty — you need to discover which agents are installed and create folders based on what each agent declares in its own system prompt, not a hardcoded list. This keeps the skill self-updating: when new agents are added (business, engineering, or custom), their folders are created automatically the next time this runs.
Discovery phase
Read config/workspace.yaml to get workspace.owner, workspace.company, workspace.language, workspace.timezone, workspace.name. These values drive language and personalization.
List all installed agents with Glob .claude/agents/*.md. This captures:
- Business layer agents (
clawdia-assistant.md, flux-finance.md, etc.)
- Engineering layer agents (
apex-architect.md, bolt-executor.md, etc.) as they get imported
- Custom agents (
custom-*.md) the user created
For each agent file, Read it and extract:
- Name from the frontmatter (
name: ...)
- Color from the frontmatter (
color: ...) — used for future dashboard integration
- Domain / role from the
description: frontmatter field or the first prose paragraph
- Working folder — look for the
## Working Folder section and parse the first sentence for workspace/{folder}/. If the agent has no ## Working Folder section (e.g., pure orchestrators like Clawdia, knowledge agents like Oracle), record it as "no dedicated folder" and skip folder creation for that agent.
- Subfolders — if the Working Folder description or the agent's prose mentions specific subfolders (e.g.,
strategy/analyses/, project/github-reviews/), extract them too.
- Anti-patterns / approval rules — scan sections like
## Anti-patterns, ## Absolute Rules, ## Your Level, ### REQUIRES user approval to extract the 1-2 most important conventions.
Build an in-memory table of {agent, folder, subfolders, domain, conventions}. This is the source of truth for Step 1.
Creation phase
Check if the structure already exists. Run a quick check: if every folder in the discovered table already exists on disk, structure is already bootstrapped — skip creation and proceed to the "Customizations" summary below. Otherwise, continue.
Create folders. For each entry in the table that declares a Working Folder:
- Create
workspace/{folder}/ if missing
- Create any declared subfolders
- Create
.gitkeep in the top-level folder (subfolders don't need it — the wildcard in .gitignore handles them)
- Never overwrite existing folders or files
Create the shared read-only folder workspace/projects/ (plural) if missing — this is where the user uploads git repositories that every agent can read. Also add a .gitkeep.
Create operational folders that are not owned by any single agent but are referenced by routines:
workspace/daily-logs/ — written by clawdia and by the morning/eod routines
workspace/meetings/ — managed by int-sync-meetings routine (Fathom)
Only create these if they're referenced by at least one installed routine or agent; skip if the underlying agent/routine is not installed.
Overview files phase
Read workspace.language from config/workspace.yaml. All overview files respect this value:
- Filename and content are translated to
workspace.language (e.g., pt-BR → [C] Visão Geral — Financeiro.md; en → [C] Overview — Finance.md; es → [C] Visión General — Finanzas.md)
- If
workspace.language is not set, default to en
- This is the only place where the codebase writes localized filenames, because these files land in
workspace/ (gitignored, personal)
For each folder you created in Step 6, write an overview file using this canonical template (translate title, headings, and bullets to the target language before writing):
# Overview — {Sector}
Working folder for agent **@{agent-name}** ({agent domain extracted from the agent file}).
## What goes here
{Extract 3-6 bullets from the agent's Working Folder description and Responsibilities section}
## Conventions
- Files created by the agent are prefixed with `[C]`
- {1-2 agent-specific rules extracted from Anti-patterns / Absolute Rules / Your Level}
Never overwrite an existing overview — if one already exists in any language, skip it (the user may have customized it).
Customizations summary phase
Scan agent improvement notes. For each agent, check if .claude/agent-memory/{agent-name}/_improvements.md exists. If yes, read the first few lines and remember them for the summary.
Scan agent memory folders for customizations the user has saved (e.g., feedback memories, project memories). Count how many entries each agent has in its MEMORY.md index.
Report customizations to the user. After the welcome, include a "Your workspace customizations" section that surfaces:
- Which agents have pending
_improvements.md notes (and the first line of each)
- Which agents have non-empty
MEMORY.md indexes (count of entries) — this tells the user where they've already built up context
- Any
custom-* agents the user has created
- Any new folders the user added to
workspace/ that don't match an installed agent
This makes onboarding dynamic: instead of a generic tour, the user sees their workspace state and what's already been tailored.
Important rules
- Never overwrite existing files or folders — the user may already have content
- Discovery drives creation — never hardcode folder names; always parse from the agent files. If a new agent is added, it will be picked up automatically.
projects/ (plural) is shared read-access for all agents; the user uploads git repos there
- Engineering agents (dev layer from oh-my-claudecode) typically don't declare a
## Working Folder because they work across the codebase itself — skip folder creation for them
personal/ may contain a health dashboard setup (docker-compose.yml, health-data.js) — don't touch if it exists
meetings/ is managed by the sync-meetings routine — no overview file (has its own README.md)
- Speed: the discovery phase reads ~30 small markdown files; keep it fast by only reading the top ~40 lines of each agent unless you need deeper inspection
After bootstrap is done (or confirmed already existing), proceed to Welcome.
Welcome
Start with a warm, dynamic welcome that uses the counts you discovered in Step 0. Do not hardcode agent or skill numbers — read them from the filesystem so the message stays accurate as the workspace grows.
Counts to compute at runtime:
- Agents:
Glob .claude/agents/*.md and count entries (exclude custom-*.md or report them separately)
- Skills:
Glob .claude/skills/*/SKILL.md and count entries
- Routines: count entries in
config/routines.yaml (or ROUTINES.md if yaml doesn't exist)
- Custom extensions: count
.claude/agents/custom-*.md, .claude/skills/custom-*/SKILL.md, .claude/commands/custom-*.md
Welcome text (template, translate to workspace.language):
Welcome to {workspace.name} — your AI-powered operating system, {workspace.owner}. You have {N} agents, {N} skills, and {N} automated routines ready to go. Let me show you what you can do.
Your Agents
Present the agents in a dynamic table built from Step 0's discovery table. Group them by layer:
- Business layer — agents whose file name matches the canonical business names (clawdia, flux, atlas, pulse, pixel, sage, nex, mentor, kai, oracle, mako, aria, zara, lex, nova, dex) or whose description mentions a business domain
- Engineering layer — agents whose file name starts with a known dev role (apex, bolt, compass, echo, flow, grid, hawk, lens, oath, prism, probe, quill, raven, scout, scroll, trail, vault, zen, canvas) — these come from oh-my-claudecode
- Custom layer — any agent whose filename starts with
custom-
For each layer, build a table dynamically by reading each agent file and extracting command, name, and one-line role:
| Command |
Agent |
Role |
Try saying... |
/{command} |
{Name} |
{role from description frontmatter} |
{first example from description} |
Do not hardcode the table. Build it from the files on disk so new agents (including engineering imports and custom ones) appear automatically.
After the agents table, add:
You don't have to use slash commands — just describe what you need and I'll route to the right agent automatically.
Quick Wins to Try Right Now
Suggest 3 things the user can try immediately based on what's most useful:
1. Morning Briefing
"Say 'good morning' and the Ops agent will check your calendar, emails, tasks, and give you a prioritized plan for the day."
2. Dashboard Overview
"Open http://localhost:8080 to see the web dashboard — overview metrics, reports, services, and even a Claude Code terminal in the browser."
3. Run a Routine
"Try running a routine manually:
make morning — morning briefing
make community — community pulse report
make fin-pulse — financial snapshot
Each routine generates an HTML report you can view in the dashboard under Reports."
Skills by Domain
Compute skill categories dynamically from the filesystem:
Glob .claude/skills/*/SKILL.md → list of installed skills
- Group by prefix (the part before the first
-): fin-, social-, dev-, int-, mkt-, etc.
- Count entries per prefix
- For each prefix, pull 2-3 representative examples by reading the
name: frontmatter of the first few skills in that group
Present as a table:
You have {total} skills organized by prefix. Here are the categories installed in your workspace:
| Prefix |
Count |
Examples |
{prefix}- |
{N} |
{skill1, skill2, skill3} |
| ... |
... |
... |
Do not hardcode the prefix list. Different installations may have different layers enabled — the business layer (fin-, social-, mkt-, hr-, legal-, etc.), the engineering layer (dev-), and any custom prefixes the user introduced. Build the table from what's actually installed.
After the table:
Browse all skills in the dashboard under Skills, or just ask me to do something and I'll use the right skill.
Automated Routines
Read config/routines.yaml at runtime to list the actual routines installed in this workspace. Group them by frequency (daily / weekly / monthly) based on the cron schedule or frequency: field, and list the first handful per group.
Present as:
EvoNexus can run routines automatically on a schedule. You have {N} routines installed:
Daily: {list top 5-6 by name}
Weekly: {list}
Monthly: {list}
Start the scheduler with make scheduler and routines run at their configured times. See the full list with make help.
If config/routines.yaml is missing or empty, say so and point the user to create-routine skill to set up their first one.
The Web Dashboard
"Your dashboard at http://localhost:8080 has:
- Overview — all metrics at a glance
- Chat — Claude Code terminal in the browser
- Reports — HTML reports from routines
- Systems — register and manage your apps
- Services — start/stop scheduler, see live logs
- Routines — metrics per routine + manual run button
- Integrations — connect YouTube, Instagram, LinkedIn via OAuth
- Users & Roles — manage access with custom permissions"
Your Workspace Customizations
After the welcome tour, surface what's already been tailored in this specific workspace — this turns a generic onboarding into a personalized status check. Gather:
Agent improvement notes — for each agent folder in .claude/agent-memory/, check if _improvements.md exists. If yes, read the first line and list it. Example output:
- @flux has 2 pending improvement ideas: "Add cash flow forecast chart…"
- @sage has 1 pending improvement idea: "Link OKR review to Linear cycles…"
Agent memory depth — for each .claude/agent-memory/{agent}/MEMORY.md, count the index entries. Report agents with accumulated context:
- @clawdia has built up 14 memories (feedback, project context, references)
- @aria has 3 memories
Shared knowledge base — check memory/index.md. Report how many people profiles, projects, glossary entries, and trends are populated:
- Shared memory: 6 people profiles, 2 project histories, 42 glossary terms, 15 weekly trend snapshots
Custom agents, skills, and commands — list anything under .claude/agents/custom-*, .claude/skills/custom-*, .claude/commands/custom-*. These are workspace-specific extensions the user created.
Orphaned folders — list any directories in workspace/ that do not match a declared agent working folder. These may be legacy or manual organization and deserve a heads-up:
workspace/meetings/ — managed by the sync-meetings routine (not owned by any agent, this is expected)
workspace/{unknown}/ — not matched to any agent, you may want to review
Config status — check config/workspace.yaml values. If owner, company, language, or timezone are missing/default, flag them as "needs configuration".
Present all of this as a concise summary under a heading like:
Your workspace so far
Here's what's already been customized in {workspace.name}:
- {bulleted list from items 1-6 above}
This tells you where you've invested setup time. Agents with pending _improvements.md notes are great targets for your next session — open the file with your agent and clear the backlog.
What to Do Next
Based on what you discovered in the customizations phase, suggest personalized next steps — don't hardcode suggestions:
- If the user has populated
memory/people/ but not memory/projects/ → suggest updating project context
- If any agent has
_improvements.md → suggest tackling it
- If no routines are scheduled → suggest running a morning briefing manually
- If the user has
custom-* agents → suggest trying one of them
- Default: suggest "good morning" to
@clawdia (if installed) for the daily briefing
End with:
Just tell me what you're working on and I'll route you to the right agent.
Tone
- Enthusiastic but not overwhelming — show value quickly
- Let the user explore at their own pace
- Suggest concrete actions, not abstract descriptions
- If they seem experienced, be concise; if new, be more detailed
- Always end with an invitation to try something: "Want to try one of these now?"
1---2name: initial-setup3description: Welcome and onboard new EvoNexus users — introduce agents, skills, routines, and the dashboard. Triggers when the user says 'get started', 'how do I use this', 'what can you do', 'help me get started', 'onboarding', 'show me around', 'what agents do I have', 'how does this work', 'first time here', or seems unfamiliar with the workspace. Also trigger when the user opens Claude Code in an EvoNexus workspace for the first time.4---56# EvoNexus — Welcome & Onboarding78The user already has EvoNexus installed and running. Your job is to welcome them, show what's available, and help them start using agents, skills, and routines right away.910## Step 0: Bootstrap Workspace Structure (dynamic)1112Before welcoming, ensure the `workspace/` folder tree exists. The workspace is gitignored (personal data) so new installations start empty — you need to discover which agents are installed and create folders based on **what each agent declares in its own system prompt**, not a hardcoded list. This keeps the skill self-updating: when new agents are added (business, engineering, or custom), their folders are created automatically the next time this runs.1314### Discovery phase15161. **Read `config/workspace.yaml`** to get `workspace.owner`, `workspace.company`, `workspace.language`, `workspace.timezone`, `workspace.name`. These values drive language and personalization.17182. **List all installed agents** with `Glob .claude/agents/*.md`. This captures:19 - Business layer agents (`clawdia-assistant.md`, `flux-finance.md`, etc.)20 - Engineering layer agents (`apex-architect.md`, `bolt-executor.md`, etc.) as they get imported21 - Custom agents (`custom-*.md`) the user created22233. **For each agent file**, Read it and extract:24 - **Name** from the frontmatter (`name: ...`)25 - **Color** from the frontmatter (`color: ...`) — used for future dashboard integration26 - **Domain / role** from the `description:` frontmatter field or the first prose paragraph27 - **Working folder** — look for the `## Working Folder` section and parse the first sentence for `workspace/{folder}/`. If the agent has no `## Working Folder` section (e.g., pure orchestrators like Clawdia, knowledge agents like Oracle), record it as "no dedicated folder" and skip folder creation for that agent.28 - **Subfolders** — if the Working Folder description or the agent's prose mentions specific subfolders (e.g., `strategy/analyses/`, `project/github-reviews/`), extract them too.29 - **Anti-patterns / approval rules** — scan sections like `## Anti-patterns`, `## Absolute Rules`, `## Your Level`, `### REQUIRES user approval` to extract the 1-2 most important conventions.30314. **Build an in-memory table** of `{agent, folder, subfolders, domain, conventions}`. This is the source of truth for Step 1.3233### Creation phase34355. **Check if the structure already exists.** Run a quick check: if **every** folder in the discovered table already exists on disk, structure is already bootstrapped — skip creation and proceed to the "Customizations" summary below. Otherwise, continue.36376. **Create folders.** For each entry in the table that declares a Working Folder:38 - Create `workspace/{folder}/` if missing39 - Create any declared subfolders40 - Create `.gitkeep` in the top-level folder (subfolders don't need it — the wildcard in `.gitignore` handles them)41 - **Never overwrite** existing folders or files42437. **Create the shared read-only folder** `workspace/projects/` (plural) if missing — this is where the user uploads git repositories that every agent can read. Also add a `.gitkeep`.44458. **Create operational folders** that are not owned by any single agent but are referenced by routines:46 - `workspace/daily-logs/` — written by clawdia and by the morning/eod routines47 - `workspace/meetings/` — managed by `int-sync-meetings` routine (Fathom)4849 Only create these if they're referenced by at least one installed routine or agent; skip if the underlying agent/routine is not installed.5051### Overview files phase52539. **Read `workspace.language`** from `config/workspace.yaml`. All overview files respect this value:54 - Filename and content are translated to `workspace.language` (e.g., `pt-BR` → `[C] Visão Geral — Financeiro.md`; `en` → `[C] Overview — Finance.md`; `es` → `[C] Visión General — Finanzas.md`)55 - If `workspace.language` is not set, default to `en`56 - This is the only place where the codebase writes localized filenames, because these files land in `workspace/` (gitignored, personal)575810. **For each folder** you created in Step 6, write an overview file using this canonical template (translate title, headings, and bullets to the target language before writing):5960 ```markdown61 # Overview — {Sector}6263 Working folder for agent **@{agent-name}** ({agent domain extracted from the agent file}).6465 ## What goes here6667 {Extract 3-6 bullets from the agent's Working Folder description and Responsibilities section}6869 ## Conventions7071 - Files created by the agent are prefixed with `[C]`72 - {1-2 agent-specific rules extracted from Anti-patterns / Absolute Rules / Your Level}73 ```7475 **Never overwrite** an existing overview — if one already exists in any language, skip it (the user may have customized it).7677### Customizations summary phase787911. **Scan agent improvement notes.** For each agent, check if `.claude/agent-memory/{agent-name}/_improvements.md` exists. If yes, read the first few lines and remember them for the summary.808112. **Scan agent memory folders** for customizations the user has saved (e.g., feedback memories, project memories). Count how many entries each agent has in its `MEMORY.md` index.828313. **Report customizations to the user.** After the welcome, include a "Your workspace customizations" section that surfaces:84 - Which agents have pending `_improvements.md` notes (and the first line of each)85 - Which agents have non-empty `MEMORY.md` indexes (count of entries) — this tells the user where they've already built up context86 - Any `custom-*` agents the user has created87 - Any new folders the user added to `workspace/` that don't match an installed agent8889 This makes onboarding dynamic: instead of a generic tour, the user sees **their** workspace state and what's already been tailored.9091### Important rules9293- **Never overwrite** existing files or folders — the user may already have content94- **Discovery drives creation** — never hardcode folder names; always parse from the agent files. If a new agent is added, it will be picked up automatically.95- **`projects/` (plural)** is shared read-access for all agents; the user uploads git repos there96- **Engineering agents** (dev layer from oh-my-claudecode) typically don't declare a `## Working Folder` because they work across the codebase itself — skip folder creation for them97- **`personal/`** may contain a health dashboard setup (`docker-compose.yml`, `health-data.js`) — don't touch if it exists98- **`meetings/`** is managed by the sync-meetings routine — no overview file (has its own `README.md`)99- **Speed:** the discovery phase reads ~30 small markdown files; keep it fast by only reading the top ~40 lines of each agent unless you need deeper inspection100101After bootstrap is done (or confirmed already existing), proceed to Welcome.102103## Welcome104105Start with a warm, **dynamic** welcome that uses the counts you discovered in Step 0. Do not hardcode agent or skill numbers — read them from the filesystem so the message stays accurate as the workspace grows.106107Counts to compute at runtime:108- **Agents:** `Glob .claude/agents/*.md` and count entries (exclude `custom-*.md` or report them separately)109- **Skills:** `Glob .claude/skills/*/SKILL.md` and count entries110- **Routines:** count entries in `config/routines.yaml` (or `ROUTINES.md` if yaml doesn't exist)111- **Custom extensions:** count `.claude/agents/custom-*.md`, `.claude/skills/custom-*/SKILL.md`, `.claude/commands/custom-*.md`112113Welcome text (template, translate to `workspace.language`):114115> Welcome to **{workspace.name}** — your AI-powered operating system, {workspace.owner}. You have **{N} agents**, **{N} skills**, and **{N} automated routines** ready to go. Let me show you what you can do.116117## Your Agents118119Present the agents in a **dynamic table** built from Step 0's discovery table. Group them by layer:1201211. **Business layer** — agents whose file name matches the canonical business names (clawdia, flux, atlas, pulse, pixel, sage, nex, mentor, kai, oracle, mako, aria, zara, lex, nova, dex) or whose description mentions a business domain1222. **Engineering layer** — agents whose file name starts with a known dev role (apex, bolt, compass, echo, flow, grid, hawk, lens, oath, prism, probe, quill, raven, scout, scroll, trail, vault, zen, canvas) — these come from oh-my-claudecode1233. **Custom layer** — any agent whose filename starts with `custom-`124125For each layer, build a table dynamically by reading each agent file and extracting command, name, and one-line role:126127| Command | Agent | Role | Try saying... |128|---------|-------|------|---------------|129| `/{command}` | **{Name}** | {role from description frontmatter} | {first example from description} |130131**Do not hardcode the table.** Build it from the files on disk so new agents (including engineering imports and custom ones) appear automatically.132133After the agents table, add:134135> You don't have to use slash commands — just describe what you need and I'll route to the right agent automatically.136137## Quick Wins to Try Right Now138139Suggest 3 things the user can try immediately based on what's most useful:140141### 1. Morning Briefing142"Say **'good morning'** and the Ops agent will check your calendar, emails, tasks, and give you a prioritized plan for the day."143144### 2. Dashboard Overview145"Open **http://localhost:8080** to see the web dashboard — overview metrics, reports, services, and even a Claude Code terminal in the browser."146147### 3. Run a Routine148"Try running a routine manually:149- `make morning` — morning briefing150- `make community` — community pulse report151- `make fin-pulse` — financial snapshot152153Each routine generates an HTML report you can view in the dashboard under Reports."154155## Skills by Domain156157Compute skill categories **dynamically** from the filesystem:1581591. `Glob .claude/skills/*/SKILL.md` → list of installed skills1602. Group by prefix (the part before the first `-`): `fin-`, `social-`, `dev-`, `int-`, `mkt-`, etc.1613. Count entries per prefix1624. For each prefix, pull 2-3 representative examples by reading the `name:` frontmatter of the first few skills in that group163164Present as a table:165166> You have **{total}** skills organized by prefix. Here are the categories installed in your workspace:167168| Prefix | Count | Examples |169|--------|-------|----------|170| `{prefix}-` | {N} | {skill1, skill2, skill3} |171| ... | ... | ... |172173**Do not hardcode the prefix list.** Different installations may have different layers enabled — the business layer (`fin-`, `social-`, `mkt-`, `hr-`, `legal-`, etc.), the engineering layer (`dev-`), and any custom prefixes the user introduced. Build the table from what's actually installed.174175After the table:176177> Browse all skills in the dashboard under **Skills**, or just ask me to do something and I'll use the right skill.178179## Automated Routines180181Read `config/routines.yaml` at runtime to list the actual routines installed in this workspace. Group them by frequency (daily / weekly / monthly) based on the cron schedule or `frequency:` field, and list the first handful per group.182183Present as:184185> EvoNexus can run routines automatically on a schedule. You have **{N} routines** installed:186>187> **Daily:** {list top 5-6 by name}188> **Weekly:** {list}189> **Monthly:** {list}190>191> Start the scheduler with `make scheduler` and routines run at their configured times. See the full list with `make help`.192193If `config/routines.yaml` is missing or empty, say so and point the user to `create-routine` skill to set up their first one.194195## The Web Dashboard196197"Your dashboard at **http://localhost:8080** has:198199- **Overview** — all metrics at a glance200- **Chat** — Claude Code terminal in the browser201- **Reports** — HTML reports from routines202- **Systems** — register and manage your apps203- **Services** — start/stop scheduler, see live logs204- **Routines** — metrics per routine + manual run button205- **Integrations** — connect YouTube, Instagram, LinkedIn via OAuth206- **Users & Roles** — manage access with custom permissions"207208## Your Workspace Customizations209210After the welcome tour, surface what's already been tailored in this specific workspace — this turns a generic onboarding into a personalized status check. Gather:2112121. **Agent improvement notes** — for each agent folder in `.claude/agent-memory/`, check if `_improvements.md` exists. If yes, read the first line and list it. Example output:213 > - **@flux** has 2 pending improvement ideas: "Add cash flow forecast chart…"214 > - **@sage** has 1 pending improvement idea: "Link OKR review to Linear cycles…"2152162. **Agent memory depth** — for each `.claude/agent-memory/{agent}/MEMORY.md`, count the index entries. Report agents with accumulated context:217 > - **@clawdia** has built up 14 memories (feedback, project context, references)218 > - **@aria** has 3 memories2192203. **Shared knowledge base** — check `memory/index.md`. Report how many people profiles, projects, glossary entries, and trends are populated:221 > - **Shared memory:** 6 people profiles, 2 project histories, 42 glossary terms, 15 weekly trend snapshots2222234. **Custom agents, skills, and commands** — list anything under `.claude/agents/custom-*`, `.claude/skills/custom-*`, `.claude/commands/custom-*`. These are workspace-specific extensions the user created.2242255. **Orphaned folders** — list any directories in `workspace/` that do **not** match a declared agent working folder. These may be legacy or manual organization and deserve a heads-up:226 > - `workspace/meetings/` — managed by the sync-meetings routine (not owned by any agent, this is expected)227 > - `workspace/{unknown}/` — not matched to any agent, you may want to review2282296. **Config status** — check `config/workspace.yaml` values. If `owner`, `company`, `language`, or `timezone` are missing/default, flag them as "needs configuration".230231Present all of this as a concise summary under a heading like:232233> ## Your workspace so far234>235> Here's what's already been customized in **{workspace.name}**:236> - {bulleted list from items 1-6 above}237>238> This tells you where you've invested setup time. Agents with pending `_improvements.md` notes are great targets for your next session — open the file with your agent and clear the backlog.239240## What to Do Next241242Based on what you discovered in the customizations phase, suggest **personalized** next steps — don't hardcode suggestions:243244- If the user has populated `memory/people/` but not `memory/projects/` → suggest updating project context245- If any agent has `_improvements.md` → suggest tackling it246- If no routines are scheduled → suggest running a morning briefing manually247- If the user has `custom-*` agents → suggest trying one of them248- Default: suggest "good morning" to `@clawdia` (if installed) for the daily briefing249250End with:251252> Just tell me what you're working on and I'll route you to the right agent.253254## Tone255256- Enthusiastic but not overwhelming — show value quickly257- Let the user explore at their own pace258- Suggest concrete actions, not abstract descriptions259- If they seem experienced, be concise; if new, be more detailed260- Always end with an invitation to try something: "Want to try one of these now?"