We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1823d51 commit 9e27dedCopy full SHA for 9e27ded
src/mcp/prompts/core/index.ts
@@ -1,10 +1,6 @@
1
import { init } from "./init";
2
import { deploy } from "./deploy";
3
-import { isEnabled } from "../../../experiments";
4
5
-const corePrompts = [deploy];
6
-if (isEnabled("mcpalpha")) {
7
- corePrompts.push(init);
8
-}
+const corePrompts = [deploy, init];
9
10
export { corePrompts };
0 commit comments