Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 932 Bytes

File metadata and controls

23 lines (14 loc) · 932 Bytes

AGENTS.md

Project Overview

Eclipse GLSP Server Node monorepo. Provides the TypeScript-based server framework for the Graphical Language Server Platform (GLSP). Contains core server packages, graph model, ELK layout integration, and example workflow server. Uses pnpm workspaces.

Build & Development

  • Package manager: pnpm — do not use yarn or npm
  • Build: pnpm install from root installs and compiles everything
  • Clean: pnpm clean
  • Start example server: pnpm start (TCP on 5007) or pnpm start:websocket (WebSocket on 8081)

Validation

  • After completing any code changes, always run the /verify skill before reporting completion
  • If verification fails, run the /fix skill to auto-fix issues, then re-run /verify

Import Rules

These are enforced by ESLint and are easy to get wrong:

  • Never import from sprotty-protocol directly — use @eclipse-glsp/protocol instead