@savvy-web/silk 3.15.2 → 4.0.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.
@@ -0,0 +1,20 @@
1
+ #!/usr/bin/env node
2
+ import { main } from "@savvy-web/mcp/main";
3
+
4
+ //#region src/bin/savvy-mcp.ts
5
+ /**
6
+ * The `savvy-mcp` bin, provided by the carrier. Mirrors `@savvy-web/mcp`'s own bin: both
7
+ * call the same `main()`. `@savvy-web/silk` is the one package a consumer installs, so
8
+ * it owns this bin entry and `node_modules/.bin/savvy-mcp` is created off that single
9
+ * direct dependency, no hoisting required.
10
+ *
11
+ * This file (with `savvy.ts` beside it) is the ONE sanctioned place silk imports
12
+ * `@savvy-web/mcp`; the repo's non-import invariant otherwise forbids it.
13
+ * @internal
14
+ */
15
+ /* v8 ignore start -- bin shim; covered by the built-artifact tests in __test__/externals.test.ts */
16
+ await main();
17
+ /* v8 ignore stop */
18
+
19
+ //#endregion
20
+ export { };
package/bin/savvy.js ADDED
@@ -0,0 +1,20 @@
1
+ #!/usr/bin/env node
2
+ import { main } from "@savvy-web/cli/main";
3
+
4
+ //#region src/bin/savvy.ts
5
+ /**
6
+ * The `savvy` bin, provided by the carrier. Mirrors `@savvy-web/cli`'s own bin: both
7
+ * call the same `main()`. `@savvy-web/silk` is the one package a consumer installs, so
8
+ * it owns this bin entry and `node_modules/.bin/savvy` is created off that single direct
9
+ * dependency, no hoisting required.
10
+ *
11
+ * This file (with `savvy-mcp.ts` beside it) is the ONE sanctioned place silk imports
12
+ * `@savvy-web/cli`; the repo's non-import invariant otherwise forbids it.
13
+ * @internal
14
+ */
15
+ /* v8 ignore start -- bin shim; covered by the built-artifact tests in __test__/externals.test.ts */
16
+ main();
17
+ /* v8 ignore stop */
18
+
19
+ //#endregion
20
+ export { };