@telorun/ide-support 0.2.3 → 0.2.5

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 +17 -5
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,21 @@
1
- # ⚡ Telo
1
+ <p align="center">
2
+ <img src="./assets/telo.png" alt="Telo" width="200" />
3
+ </p>
2
4
 
3
- Runtime for declarative backends.
5
+ <h1 align="center">Telo</h1>
6
+
7
+ <p align="center">Runtime for declarative backends.</p>
8
+
9
+ <p align="center">
10
+ <a href="https://github.com/telorun/telo/actions/workflows/test.yml"><img alt="Tests" src="https://github.com/telorun/telo/actions/workflows/test.yml/badge.svg" /></a>
11
+ <a href="https://www.npmjs.com/package/@telorun/cli"><img alt="node" src="https://img.shields.io/node/v/@telorun/cli" /></a>
12
+ <br />
13
+ <a href="https://github.com/telorun/telo/commits/main"><img alt="Last commit" src="https://img.shields.io/github/last-commit/telorun/telo" /></a>
14
+ <a href="https://github.com/telorun/telo/issues"><img alt="Issues" src="https://img.shields.io/github/issues/telorun/telo" /></a>
15
+ <a href="https://github.com/telorun/telo/pulls"><img alt="Pull requests" src="https://img.shields.io/github/issues-pr/telorun/telo" /></a>
16
+ <br />
17
+ <img alt="Changesets" src="https://img.shields.io/badge/maintained%20with-changesets-176de3" />
18
+ </p>
4
19
 
5
20
  Telo is an execution engine (Micro-Kernel) that runs logic defined entirely in YAML manifests. Instead of writing imperative backend code, you define your routes, databases, schemas, and AI workflows as atomic, interconnected YAML documents. Telo takes those manifests and runs them.
6
21
 
@@ -27,8 +42,6 @@ $ telo ./examples/hello-api.yaml
27
42
  - **Indexes** resources by Kind and Name for constant-time lookup.
28
43
  - **Dispatches** execution to the controller that owns each Kind.
29
44
 
30
- Manifests also support directives for dynamic generation: `$let`, `$if`, `$for`, `$eval`, and `$include`. See [CEL-YAML Templating](./yaml-cel-templating/README.md) for documentation.
31
-
32
45
  ## Example manifest
33
46
 
34
47
  Here is an example Telo application that defines a simple HTTP API:
@@ -221,7 +234,6 @@ Those manifests were taken to the next level by allowing them to run inside a st
221
234
  ## See more at
222
235
 
223
236
  - [Telo Kernel](./kernel/README.md)
224
- - [CEL-YAML Templating](./yaml-cel-templating/README.md)
225
237
  - [Telo SDK for module authors](sdk/README.md)
226
238
  - [Modules](modules/README.md)
227
239
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telorun/ide-support",
3
- "version": "0.2.3",
3
+ "version": "0.2.5",
4
4
  "description": "Editor-host-agnostic IDE support (completions, diagnostic normalization) for Telo manifests.",
5
5
  "keywords": [
6
6
  "telo",
@@ -36,7 +36,7 @@
36
36
  "src/**"
37
37
  ],
38
38
  "dependencies": {
39
- "@telorun/analyzer": "0.6.0"
39
+ "@telorun/analyzer": "0.7.0"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/node": "^20.0.0",