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
The `weco` CLI leverages a tree search approach guided by LLMs to iteratively explore and refine your code. It automatically applies changes, runs your evaluation script, parses the results, and proposes further improvements based on the specified goal.
36
38
39
+
## Skills (Claude Code & Cursor)
40
+
41
+
Weco ships as a **skill** for AI coding assistants. A skill is a set of instructions that teaches your assistant how to use Weco end-to-end — from setting up optimizations to interpreting results. Once installed, just describe what you want to optimize in plain language and your assistant handles the rest.
42
+
43
+
```bash
44
+
weco setup claude-code # installs skill into Claude Code
45
+
weco setup cursor # installs skill into Cursor
46
+
```
47
+
48
+
Then prompt naturally:
49
+
50
+
```text
51
+
Use Weco to make this function faster.
52
+
```
53
+
54
+
Your assistant will inspect your code, write the evaluation, configure `weco run`, monitor the iterations, and explain the results — no CLI flags needed.
55
+
56
+
See the full [Skills guide](https://docs.weco.ai/skills) for details.
57
+
58
+
## Observe (Track External Experiments)
59
+
60
+
Running your own optimization loop with an LLM agent, a custom script, or a manual workflow? `weco observe` lets you track those experiments in the Weco dashboard with tree visualization, code diffs, and metric tracking — without handing off control of the optimization itself.
All observe commands are fire-and-forget (always exit 0), so they never crash an agent loop. There is also a [Python SDK](https://docs.weco.ai/observe#python-sdk) for scripts with a Python loop.
74
+
75
+
See the full [Observe guide](https://docs.weco.ai/observe) for branching, lifecycle, and more.
0 commit comments