leglas-mcp 0.7.3 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -196,7 +196,14 @@ edit the hero. The supporting commands:
196
196
  a direction from the rail hands over a block that ends in this command, so
197
197
  an agent given the block can go and get the rest.
198
198
  - `npx leglas keep "Aurora" --to src/components/hero.tsx` moves the winner
199
- into real source and ends the exploration.
199
+ into real source and ends the exploration. It also writes down what the
200
+ exploration was, into `design-log/`: every direction with its note, the words
201
+ you typed at each of them, the captures the agent was sent, and which one
202
+ won. Plain markdown and PNGs, committed, so a pull request can link it and
203
+ somebody can read it in three months without this tool. Exploring is
204
+ episodic, and the archive is what makes coming back to a surface cheaper than
205
+ starting over. `npx leglas log` lists what is there. Set `logDir` if you want
206
+ it somewhere else.
200
207
 
201
208
  Asking for a change works from the interface too. Type what you want
202
209
  changed into the field under the rail (or press `R`) and Leglas composes a
@@ -388,6 +395,7 @@ Usage
388
395
  leglas classify Decide where a direction should live
389
396
  leglas add --title T --url U Register a preview on this machine
390
397
  leglas list Show every preview, shared and local
398
+ leglas log [entry] What past explorations decided
391
399
  leglas show <title> Everything Leglas knows about one direction
392
400
  leglas requests Show change requests made from the interface
393
401
  leglas watch --run "<cmd>" Hand each request to your agent as it arrives
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "leglas-mcp",
3
- "version": "0.7.3",
3
+ "version": "0.8.0",
4
4
  "description": "Stdio MCP server exposing Leglas to agent hosts that cannot run a shell.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -15,7 +15,7 @@
15
15
  "dependencies": {
16
16
  "@modelcontextprotocol/sdk": "^1.30.0",
17
17
  "zod": "^3.25.76",
18
- "leglas": "^0.7.3"
18
+ "leglas": "^0.8.0"
19
19
  },
20
20
  "license": "MIT",
21
21
  "repository": {