@thallylabs/mcp 0.7.0 → 0.7.1
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/LICENSE +1 -1
- package/dist/index.js +11 -1
- package/dist/tools.js +11 -1
- package/package.json +1 -1
package/LICENSE
CHANGED
package/dist/index.js
CHANGED
|
@@ -19,7 +19,17 @@ import { promisify } from "util";
|
|
|
19
19
|
import tar from "tar";
|
|
20
20
|
var pipelineAsync = promisify(pipeline);
|
|
21
21
|
var TARBALL_URL = "https://codeload.github.com/thallylabs/thally/tar.gz/main";
|
|
22
|
-
var EXCLUDE_PATHS = [
|
|
22
|
+
var EXCLUDE_PATHS = [
|
|
23
|
+
"/cli/",
|
|
24
|
+
"/packages/",
|
|
25
|
+
"/node_modules/",
|
|
26
|
+
"/.git/",
|
|
27
|
+
"/thally-agent.yml",
|
|
28
|
+
"/thally-track.yml",
|
|
29
|
+
"/CODEOWNERS",
|
|
30
|
+
"/CLAUDE.md",
|
|
31
|
+
"/notes/"
|
|
32
|
+
];
|
|
23
33
|
var STARTER_PAGES = {
|
|
24
34
|
"introduction.mdx": `---
|
|
25
35
|
title: Introduction
|
package/dist/tools.js
CHANGED
|
@@ -10,7 +10,17 @@ import { promisify } from "util";
|
|
|
10
10
|
import tar from "tar";
|
|
11
11
|
var pipelineAsync = promisify(pipeline);
|
|
12
12
|
var TARBALL_URL = "https://codeload.github.com/thallylabs/thally/tar.gz/main";
|
|
13
|
-
var EXCLUDE_PATHS = [
|
|
13
|
+
var EXCLUDE_PATHS = [
|
|
14
|
+
"/cli/",
|
|
15
|
+
"/packages/",
|
|
16
|
+
"/node_modules/",
|
|
17
|
+
"/.git/",
|
|
18
|
+
"/thally-agent.yml",
|
|
19
|
+
"/thally-track.yml",
|
|
20
|
+
"/CODEOWNERS",
|
|
21
|
+
"/CLAUDE.md",
|
|
22
|
+
"/notes/"
|
|
23
|
+
];
|
|
14
24
|
var STARTER_PAGES = {
|
|
15
25
|
"introduction.mdx": `---
|
|
16
26
|
title: Introduction
|