grapheme-cli 0.3.0

Grapheme CLI for parsing, compiling, and running .gr workflows
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import core from "grapheme/core"

glyph Main {
  A
  |> core.echo(message: "done")
}

query A {
  set {
    project: "agentql",
    message: "Grapheme canonical main entrypoint"
  }
  |> core.echo(message: $current.message)
}