caos-vscode-client 0.0.4

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.
package/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # caos-vscode-client
2
+
3
+ The Visual Studio Code client for the CAOS Language Server. It is the extension-host component that starts the server and registers CAOS and catalogue editor features.
4
+
5
+ ## Install
6
+
7
+ This package is intended to be consumed as part of the **Creatures CAOS and Agenteering** VS Code extension. It is published to support the workspace's package layout, not as a standalone VS Code extension.
8
+
9
+ ```sh
10
+ npm install caos-vscode-client
11
+ ```
12
+
13
+ ## Integration
14
+
15
+ The package's entry point exports the extension lifecycle. A VS Code extension can delegate activation to it:
16
+
17
+ ```ts
18
+ import * as vscode from "vscode";
19
+ import { activate, deactivate } from "caos-vscode-client";
20
+
21
+ export { activate, deactivate };
22
+ ```
23
+
24
+ The client expects the CAOS language-server bundle and the configuration contributed by the parent extension. For a complete integration, use this repository's root extension manifest as the reference implementation.
25
+
26
+ ## License
27
+
28
+ MIT