@malloydata/malloyyo 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.
- package/dist/index.js +2 -2
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -387,7 +387,7 @@ var prompts = {
|
|
|
387
387
|
},
|
|
388
388
|
"tools": {
|
|
389
389
|
"query": {
|
|
390
|
-
"description": "Run Malloy text against a model: `model_ref` is the model, `malloy` is the Malloy text (e.g. `run: source -> { ... }`). Set `execute:false` to validate only. Inspect the model first.",
|
|
390
|
+
"description": "Run Malloy text against a model: `model_ref` is the model, `malloy` is the Malloy text (e.g. `run: source -> { ... }`). Set `execute:false` to validate only. Inspect the model first. When a result returns, FIRST show the result and its `ltool_link` (when present) to the user, THEN interpret it \u2014 surfacing the data before analysis gives you and the user time to read it together. Part of your work is to create Malloy artifacts that can be viewed later without you: do as much computation as possible IN Malloy (ordering, limiting, aggregation) \u2014 use multi-stage queries when necessary \u2014 rather than post-processing rows yourself.",
|
|
391
391
|
"title": "Query a Malloy model"
|
|
392
392
|
},
|
|
393
393
|
"yo_help": {
|
|
@@ -1822,7 +1822,7 @@ async function serveMcp(opts) {
|
|
|
1822
1822
|
}
|
|
1823
1823
|
|
|
1824
1824
|
// package.json
|
|
1825
|
-
var version = "0.2.
|
|
1825
|
+
var version = "0.2.5";
|
|
1826
1826
|
|
|
1827
1827
|
// src/index.ts
|
|
1828
1828
|
function shortSha(sha) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/malloyyo",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "Publish Malloy models to a Malloyyo instance",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"prepublishOnly": "npm run build"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@malloydata/malloy": "0.0.
|
|
36
|
-
"@malloydata/malloy-connections": "0.0.
|
|
35
|
+
"@malloydata/malloy": "0.0.417",
|
|
36
|
+
"@malloydata/malloy-connections": "0.0.417",
|
|
37
37
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
38
38
|
"commander": "^12.1.0"
|
|
39
39
|
},
|