leglas-mcp 0.8.0 → 0.9.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 +14 -5
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -12,6 +12,7 @@
12
12
  <a href="https://www.npmjs.com/package/leglas"><img src="https://img.shields.io/npm/v/leglas" alt="npm"></a>
13
13
  <a href="https://github.com/FredAmartey/leglas/actions/workflows/ci.yml"><img src="https://github.com/FredAmartey/leglas/actions/workflows/ci.yml/badge.svg" alt="CI"></a>
14
14
  <a href="LICENSE"><img src="https://img.shields.io/npm/l/leglas" alt="license"></a>
15
+ <a href="https://leglas.vercel.app/changelog/"><img src="https://img.shields.io/badge/changelog-what's%20new-0B1839" alt="changelog"></a>
15
16
  </p>
16
17
 
17
18
  <p align="center">
@@ -534,6 +535,7 @@ pnpm install
534
535
  pnpm build # build every package
535
536
  pnpm test # run the test suite
536
537
  pnpm typecheck # type check every package
538
+ pnpm site # build the site, homepage and changelog, into dist/site
537
539
  ```
538
540
 
539
541
  | Package | Contents |
@@ -549,11 +551,18 @@ terminal and `pnpm --filter @leglas/shell dev` in another.
549
551
  Two packages are published, both unscoped: `leglas`, which bundles the
550
552
  server and the built interface, and `leglas-mcp`. Releases are
551
553
  tag-driven: set the same version in both packages and `plugin.json`, turn
552
- the changelog's Unreleased section into that version, push a `v<version>`
553
- tag, and CI runs the suite and publishes through npm trusted publishing.
554
- A tag that disagrees with the manifests is refused, and so is a patch tag
555
- when `api-surface.txt` has moved since the previous one. No npm token
556
- exists anywhere in the project.
554
+ the changelog's Unreleased section into that version with a title for what
555
+ the release was about, push a `v<version>` tag, and CI runs the suite and
556
+ publishes through npm trusted publishing. A tag that disagrees with the
557
+ manifests is refused, and so is a patch tag when `api-surface.txt` has
558
+ moved since the previous one. No npm token exists anywhere in the project.
559
+
560
+ The [site](https://leglas.vercel.app/) is two pages, the homepage and the
561
+ [changelog](https://leglas.vercel.app/changelog/), written by `site.ts`. The
562
+ changelog page is made from `CHANGELOG.md` and nothing else, so describing a
563
+ release in the changelog is the whole job. Vercel builds it from
564
+ `vercel.json` on every push, so main is the live site and every pull request
565
+ gets a preview.
557
566
 
558
567
  ## License
559
568
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "leglas-mcp",
3
- "version": "0.8.0",
3
+ "version": "0.9.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.8.0"
18
+ "leglas": "^0.9.0"
19
19
  },
20
20
  "license": "MIT",
21
21
  "repository": {