You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: skills/clickui-code/SKILL.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,14 @@ description: Use this skill when you want to run a shell command that could be d
7
7
8
8
Before running risky shell commands, get user approval via this skill. Always show the user exactly which files will change and what the diffs look like — this is the default, not optional.
9
9
10
+
## Preferences
11
+
12
+
Before submitting a command for review, fetch user preferences and apply any rules under `## Code Review`:
13
+
14
+
```bash
15
+
curl -s "$AGENTCLICK_BASE/api/preferences/style"
16
+
```
17
+
10
18
## Step 1: Generate the diff
11
19
12
20
Before submitting, capture the exact changes so the user can see them in the review UI.
Copy file name to clipboardExpand all lines: skills/clickui-email/SKILL.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,20 @@ If the task is email work plus live session handling in UI, use this skill over
31
31
- Reply generation is lazy: generate only after the user clicks `Reply`.
32
32
- The reply text comes from the agent's own generation unless the user wired some other drafting system explicitly.
33
33
34
+
## Preferences
35
+
36
+
Before opening a session, fetch user style preferences and apply any rules under `## Email Reply Style` to every reply draft in this session:
37
+
38
+
```bash
39
+
curl -s "$AGENTCLICK_BASE/api/preferences/style"
40
+
```
41
+
42
+
## Session Style Rules
43
+
44
+
When the poll result includes `userIntention`, treat it as a **session-level style rule** — apply it to every subsequent reply draft in this session, not just the current one. It is also automatically saved to preferences by the server.
45
+
46
+
Example: if `userIntention` is `"say Hiiii instead of Hi"`, every reply generated after that point must use "Hiiii".
0 commit comments