@jtalk22/slack-mcp 3.0.0 → 3.1.0
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 +25 -22
- package/docs/INDEX.md +6 -5
- package/docs/LAUNCH-COPY-v3.0.0.md +43 -15
- package/docs/LAUNCH-OPS.md +1 -1
- package/docs/RELEASE-HEALTH.md +42 -55
- package/docs/images/demo-claude-mobile-360x800.png +0 -0
- package/docs/images/demo-claude-mobile-390x844.png +0 -0
- package/docs/images/demo-claude-mobile-poster.png +0 -0
- package/docs/images/demo-poster.png +0 -0
- package/docs/images/social-preview-v3.png +0 -0
- package/package.json +21 -29
- package/public/demo-claude.html +19 -3
- package/public/demo-video.html +16 -7
- package/public/demo.html +2 -2
- package/public/share.html +127 -0
- package/scripts/build-mobile-demo.js +168 -0
- package/scripts/build-release-health-delta.js +2 -2
- package/scripts/build-social-preview.js +189 -0
- package/scripts/capture-screenshots.js +6 -0
- package/scripts/check-owner-attribution.sh +53 -2
- package/scripts/check-public-language.sh +1 -0
- package/scripts/check-version-parity.js +45 -3
- package/scripts/collect-release-health.js +13 -1
- package/scripts/impact-push-v3.js +781 -0
- package/scripts/record-demo.js +4 -3
- package/scripts/release-preflight.js +6 -2
- package/scripts/update-github-social-preview.js +208 -0
- package/scripts/verify-web.js +23 -19
- package/server.json +2 -2
- package/src/web-server.js +2 -0
|
@@ -12,6 +12,12 @@ const NPM_PACKAGE =
|
|
|
12
12
|
process.env.RELEASE_HEALTH_NPM_PACKAGE ||
|
|
13
13
|
process.env.GROWTH_NPM_PACKAGE ||
|
|
14
14
|
"@jtalk22/slack-mcp";
|
|
15
|
+
const argv = process.argv.slice(2);
|
|
16
|
+
|
|
17
|
+
function argValue(flag) {
|
|
18
|
+
const idx = argv.indexOf(flag);
|
|
19
|
+
return idx >= 0 && idx + 1 < argv.length ? argv[idx + 1] : null;
|
|
20
|
+
}
|
|
15
21
|
|
|
16
22
|
function safeGhApi(path) {
|
|
17
23
|
try {
|
|
@@ -132,7 +138,13 @@ async function main() {
|
|
|
132
138
|
|
|
133
139
|
const markdown = buildMarkdown(data);
|
|
134
140
|
|
|
135
|
-
const
|
|
141
|
+
const explicitOutDir = argValue("--out-dir");
|
|
142
|
+
const publicMode = argv.includes("--public");
|
|
143
|
+
const metricsDir = explicitOutDir
|
|
144
|
+
? resolve(explicitOutDir)
|
|
145
|
+
: publicMode
|
|
146
|
+
? resolve("docs", "release-health")
|
|
147
|
+
: resolve("output", "release-health");
|
|
136
148
|
const datedPath = join(metricsDir, `${dateSlug}.md`);
|
|
137
149
|
const latestPath = join(metricsDir, "latest.md");
|
|
138
150
|
|