> ## Documentation Index
> Fetch the complete documentation index at: https://dev.haico.gr/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Demo walkthrough

> An end-to-end script that exercises the Co-Construction Studio: charts, preferences, a working document, and a tracked plan.

A short, copy-pasteable script that drives the [live Studio](https://haico.gr) through its main
capabilities in one session: typed chart artifacts, explicit and latent preferences, a working
document the agent co-edits, and a tracked plan. Send each message in order.

## The script

**Q1, open-ended:**

```text theme={null}
Hello, what can you do for me?
```

**Q2, a chart, with two latent style preferences:**

```text theme={null}
I would like to generate a bar chart for my data:
[
  { "category": "Legal Analysis",   "value": 82 },
  { "category": "Contract Review",  "value": 67 },
  { "category": "Risk Detection",   "value": 91 },
  { "category": "Compliance Check", "value": 74 },
  { "category": "Policy Alignment", "value": 58 }
]
I don't like intense colors. I would prefer not to be too dense (too many bars).
```

**Q3, restyle the artifact:**

```text theme={null}
Make the bars light blue.
```

**Q4, an explicit, durable preference:**

```text theme={null}
From now on, always keep the tone of my documents formal and concise: no bullet-point
walls, just clean prose.
```

**Q5, create a working document:**

```text theme={null}
Can you draft a short executive summary of these compliance scores as a working document?
Highlight the top-performing area and the one that needs the most attention.
```

**Q6, incremental edit:**

```text theme={null}
Now append a brief recommendations section to the document. Focus on concrete next steps
for the two weakest areas.
```

**Q7, a second artifact type:**

```text theme={null}
I also want to see how the same scores look as a pie chart; I need to show the
proportional distribution to my manager.
```

**Q8, track follow-up work as a plan:**

```text theme={null}
Let's track our follow-up work. Add two todos:
1. Schedule a review meeting to address Policy Alignment gaps
2. Escalate the Risk Detection findings to the compliance officer
```

**Q9, update the plan:**

```text theme={null}
Actually, I just sent the escalation email; mark the Risk Detection todo as done.
```

**Q10, recap across artifacts:**

```text theme={null}
Can you give me a quick overview of all the charts and documents we've created today?
```
