copilotkit 0.0.0-main-20260402184302
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 +21 -0
- package/README.md +83 -0
- package/bin/dev.cmd +3 -0
- package/bin/dev.js +8 -0
- package/bin/run.cmd +3 -0
- package/bin/run.js +17 -0
- package/dist/commands/base-command.d.ts +12 -0
- package/dist/commands/base-command.js +65 -0
- package/dist/commands/base-command.js.map +1 -0
- package/dist/commands/create.d.ts +24 -0
- package/dist/commands/create.js +507 -0
- package/dist/commands/create.js.map +1 -0
- package/dist/commands/dev.d.ts +25 -0
- package/dist/commands/dev.js +776 -0
- package/dist/commands/dev.js.map +1 -0
- package/dist/commands/init.d.ts +11 -0
- package/dist/commands/init.js +523 -0
- package/dist/commands/init.js.map +1 -0
- package/dist/commands/login.d.ts +13 -0
- package/dist/commands/login.js +374 -0
- package/dist/commands/login.js.map +1 -0
- package/dist/commands/logout.d.ts +13 -0
- package/dist/commands/logout.js +375 -0
- package/dist/commands/logout.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/init/ide-docs.d.ts +25 -0
- package/dist/lib/init/ide-docs.js +170 -0
- package/dist/lib/init/ide-docs.js.map +1 -0
- package/dist/lib/init/index.d.ts +14 -0
- package/dist/lib/init/index.js +1104 -0
- package/dist/lib/init/index.js.map +1 -0
- package/dist/lib/init/questions.d.ts +9 -0
- package/dist/lib/init/questions.js +508 -0
- package/dist/lib/init/questions.js.map +1 -0
- package/dist/lib/init/scaffold/agent.d.ts +20 -0
- package/dist/lib/init/scaffold/agent.js +173 -0
- package/dist/lib/init/scaffold/agent.js.map +1 -0
- package/dist/lib/init/scaffold/crew-inputs.d.ts +3 -0
- package/dist/lib/init/scaffold/crew-inputs.js +59 -0
- package/dist/lib/init/scaffold/crew-inputs.js.map +1 -0
- package/dist/lib/init/scaffold/env.d.ts +7 -0
- package/dist/lib/init/scaffold/env.js +124 -0
- package/dist/lib/init/scaffold/env.js.map +1 -0
- package/dist/lib/init/scaffold/github.d.ts +17 -0
- package/dist/lib/init/scaffold/github.js +114 -0
- package/dist/lib/init/scaffold/github.js.map +1 -0
- package/dist/lib/init/scaffold/index.d.ts +10 -0
- package/dist/lib/init/scaffold/index.js +690 -0
- package/dist/lib/init/scaffold/index.js.map +1 -0
- package/dist/lib/init/scaffold/langgraph-assistants.d.ts +18 -0
- package/dist/lib/init/scaffold/langgraph-assistants.js +26 -0
- package/dist/lib/init/scaffold/langgraph-assistants.js.map +1 -0
- package/dist/lib/init/scaffold/packages.d.ts +7 -0
- package/dist/lib/init/scaffold/packages.js +62 -0
- package/dist/lib/init/scaffold/packages.js.map +1 -0
- package/dist/lib/init/scaffold/shadcn.d.ts +7 -0
- package/dist/lib/init/scaffold/shadcn.js +279 -0
- package/dist/lib/init/scaffold/shadcn.js.map +1 -0
- package/dist/lib/init/types/index.d.ts +4 -0
- package/dist/lib/init/types/index.js +238 -0
- package/dist/lib/init/types/index.js.map +1 -0
- package/dist/lib/init/types/questions.d.ts +209 -0
- package/dist/lib/init/types/questions.js +214 -0
- package/dist/lib/init/types/questions.js.map +1 -0
- package/dist/lib/init/types/templates.d.ts +17 -0
- package/dist/lib/init/types/templates.js +26 -0
- package/dist/lib/init/types/templates.js.map +1 -0
- package/dist/lib/init/utils.d.ts +3 -0
- package/dist/lib/init/utils.js +8 -0
- package/dist/lib/init/utils.js.map +1 -0
- package/dist/services/analytics.service.d.ts +38 -0
- package/dist/services/analytics.service.js +134 -0
- package/dist/services/analytics.service.js.map +1 -0
- package/dist/services/auth.service.d.ts +26 -0
- package/dist/services/auth.service.js +299 -0
- package/dist/services/auth.service.js.map +1 -0
- package/dist/services/events.d.ts +119 -0
- package/dist/services/events.js +1 -0
- package/dist/services/events.js.map +1 -0
- package/dist/services/tunnel.service.d.ts +15 -0
- package/dist/services/tunnel.service.js +21 -0
- package/dist/services/tunnel.service.js.map +1 -0
- package/dist/utils/detect-endpoint-type.utils.d.ts +15 -0
- package/dist/utils/detect-endpoint-type.utils.js +157 -0
- package/dist/utils/detect-endpoint-type.utils.js.map +1 -0
- package/dist/utils/trpc.d.ts +4 -0
- package/dist/utils/trpc.js +25 -0
- package/dist/utils/trpc.js.map +1 -0
- package/dist/utils/version.d.ts +3 -0
- package/dist/utils/version.js +6 -0
- package/dist/utils/version.js.map +1 -0
- package/oclif.manifest.json +208 -0
- package/package.json +113 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Atai Barkai
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
# 🪁 CopilotKit CLI
|
|
2
|
+
|
|
3
|
+
> **NOTE:** The CopilotKit CLI is an optional tool that enhances the developer experience of CopilotKit. [It is not required to use CopilotKit. Click here to get started with CopilotKit](https://docs.copilotkit.ai)..
|
|
4
|
+
|
|
5
|
+
[](https://npmjs.org/package/copilotkit)
|
|
6
|
+
[](https://npmjs.org/package/copilotkit)
|
|
7
|
+
|
|
8
|
+
- [Installation](#installation)
|
|
9
|
+
- [Commands](#commands)
|
|
10
|
+
- [init](#init-add-copilotkit-to-your-nextjs-project)
|
|
11
|
+
- [login](#login-authenticating-with-copilot-cloud)
|
|
12
|
+
- [dev](#dev-local-endpoint-development)
|
|
13
|
+
- [Need help?](#need-help)
|
|
14
|
+
|
|
15
|
+
## What is the CopilotKit CLI?
|
|
16
|
+
|
|
17
|
+
The CopilotKit CLI boosts your [CopilotKit](https://github.com/copilotkit/copilotkit) development experience. It integrates neatly with Copilot Cloud.
|
|
18
|
+
|
|
19
|
+
## Installation
|
|
20
|
+
|
|
21
|
+
```sh
|
|
22
|
+
# npm
|
|
23
|
+
npm install -g copilotkit
|
|
24
|
+
|
|
25
|
+
# pnpm
|
|
26
|
+
pnpm install -g copilotkit
|
|
27
|
+
|
|
28
|
+
# yarn
|
|
29
|
+
yarn global add copilotkit
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Commands
|
|
33
|
+
|
|
34
|
+
### `init`: Add CopilotKit to your Next.js project
|
|
35
|
+
|
|
36
|
+
The fastest way to add CopilotKit to your Next.js project is with the init command:
|
|
37
|
+
|
|
38
|
+
```sh
|
|
39
|
+
# Navigate to your Next.js project
|
|
40
|
+
cd my-nextjs-app
|
|
41
|
+
|
|
42
|
+
# Run the init command
|
|
43
|
+
copilotkit init
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
This interactive command will:
|
|
47
|
+
|
|
48
|
+
- Set up the required UI components
|
|
49
|
+
- Configure AI agents if desired (LangGraph, CrewAI)
|
|
50
|
+
- Connect to Copilot Cloud (optional)
|
|
51
|
+
- Create all necessary configuration files
|
|
52
|
+
|
|
53
|
+
You can also pass flags to automate the setup:
|
|
54
|
+
|
|
55
|
+
```sh
|
|
56
|
+
copilotkit init --mode LangGraph
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
### `login`: Authenticating with Copilot Cloud
|
|
60
|
+
|
|
61
|
+
First, ensure you have an account on [Copilot Cloud](https://cloud.copilotkit.ai).
|
|
62
|
+
|
|
63
|
+
Then, run the following command to authenticate with Copilot Cloud:
|
|
64
|
+
|
|
65
|
+
```sh
|
|
66
|
+
copilotkit login
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
### `dev`: Local Endpoint Development
|
|
70
|
+
|
|
71
|
+
The CopilotKit CLI allows you to create a local tunnel to your CopilotKit remote endpoints, agents, and LangGraph apps.
|
|
72
|
+
|
|
73
|
+
For example, to create a local tunnel to an endpoint running locally on port 8000, you can run:
|
|
74
|
+
|
|
75
|
+
```sh
|
|
76
|
+
copilotkit dev --port 8000
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
## Need help?
|
|
80
|
+
|
|
81
|
+
You can always run `copilotkit --help` to get help on the CopilotKit CLI.
|
|
82
|
+
|
|
83
|
+
You're welcome to join our [Discord](https://discord.gg/copilotkit) to get help from the CopilotKit team and community.
|
package/bin/dev.cmd
ADDED
package/bin/dev.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#!/usr/bin/env -S node --loader ts-node/esm --disable-warning=ExperimentalWarning
|
|
2
|
+
|
|
3
|
+
// eslint-disable-next-line n/shebang
|
|
4
|
+
import { execute } from "@oclif/core";
|
|
5
|
+
|
|
6
|
+
process.env.SENTRY_DISABLED = "true";
|
|
7
|
+
process.env.SEGMENT_DISABLED = "true";
|
|
8
|
+
await execute({ development: true, dir: import.meta.url });
|
package/bin/run.cmd
ADDED
package/bin/run.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
import { execute } from "@oclif/core";
|
|
4
|
+
|
|
5
|
+
const main = async () => {
|
|
6
|
+
try {
|
|
7
|
+
await execute({ dir: import.meta.url });
|
|
8
|
+
} catch (error) {
|
|
9
|
+
// Rely on command-level error handling to surface friendly messages.
|
|
10
|
+
// If we reach here it means something happened before oclif handed off to the command.
|
|
11
|
+
const message = error?.message || "Unknown error";
|
|
12
|
+
console.error(message);
|
|
13
|
+
process.exitCode = 1;
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
void main();
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Command } from '@oclif/core';
|
|
2
|
+
|
|
3
|
+
declare class BaseCommand extends Command {
|
|
4
|
+
init(): Promise<void>;
|
|
5
|
+
catch(err: any): Promise<void>;
|
|
6
|
+
finally(): Promise<void>;
|
|
7
|
+
run(): Promise<void>;
|
|
8
|
+
checkCLIVersion(): Promise<void>;
|
|
9
|
+
gracefulError(message: string): Promise<void>;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export { BaseCommand };
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
// src/commands/base-command.ts
|
|
2
|
+
import { Command } from "@oclif/core";
|
|
3
|
+
import Sentry, { consoleIntegration } from "@sentry/node";
|
|
4
|
+
|
|
5
|
+
// src/utils/version.ts
|
|
6
|
+
var LIB_VERSION = "0.0.0-main-20260402184302";
|
|
7
|
+
|
|
8
|
+
// src/utils/trpc.ts
|
|
9
|
+
import { createTRPCClient as trpcClient, httpBatchLink } from "@trpc/client";
|
|
10
|
+
import superjson from "superjson";
|
|
11
|
+
var COPILOT_CLOUD_BASE_URL = process.env.COPILOT_CLOUD_BASE_URL || "https://cloud.copilotkit.ai";
|
|
12
|
+
|
|
13
|
+
// src/commands/base-command.ts
|
|
14
|
+
import chalk from "chalk";
|
|
15
|
+
var BaseCommand = class extends Command {
|
|
16
|
+
async init() {
|
|
17
|
+
await this.checkCLIVersion();
|
|
18
|
+
if (process.env.SENTRY_DISABLED === "true") {
|
|
19
|
+
return;
|
|
20
|
+
}
|
|
21
|
+
Sentry.init({
|
|
22
|
+
dsn: process.env.SENTRY_DSN || "https://1eea15d32e2eacb0456a77db5e39aeeb@o4507288195170304.ingest.us.sentry.io/4508581448581120",
|
|
23
|
+
integrations: [consoleIntegration()],
|
|
24
|
+
// Tracing
|
|
25
|
+
tracesSampleRate: 1
|
|
26
|
+
// Capture 100% of the transactions
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
async catch(err) {
|
|
30
|
+
if (process.env.SENTRY_DISABLED !== "true") {
|
|
31
|
+
Sentry.captureException(err);
|
|
32
|
+
}
|
|
33
|
+
const message = err?.message ?? "Unknown error";
|
|
34
|
+
this.log("\n" + chalk.red(message) + "\n");
|
|
35
|
+
const exitCode = err?.oclif?.exit ?? 1;
|
|
36
|
+
this.exit(exitCode);
|
|
37
|
+
}
|
|
38
|
+
async finally() {
|
|
39
|
+
if (process.env.SENTRY_DISABLED === "true") {
|
|
40
|
+
return;
|
|
41
|
+
}
|
|
42
|
+
Sentry.close();
|
|
43
|
+
}
|
|
44
|
+
async run() {
|
|
45
|
+
}
|
|
46
|
+
async checkCLIVersion() {
|
|
47
|
+
try {
|
|
48
|
+
const response = await fetch(`${COPILOT_CLOUD_BASE_URL}/api/healthz`);
|
|
49
|
+
const data = await response.json();
|
|
50
|
+
const cloudVersion = data.cliVersion;
|
|
51
|
+
if (!cloudVersion || cloudVersion === LIB_VERSION) {
|
|
52
|
+
return;
|
|
53
|
+
}
|
|
54
|
+
} catch {
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
async gracefulError(message) {
|
|
58
|
+
this.log("\n" + chalk.red(message));
|
|
59
|
+
process.exit(1);
|
|
60
|
+
}
|
|
61
|
+
};
|
|
62
|
+
export {
|
|
63
|
+
BaseCommand
|
|
64
|
+
};
|
|
65
|
+
//# sourceMappingURL=base-command.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/commands/base-command.ts","../../src/utils/version.ts","../../src/utils/trpc.ts"],"sourcesContent":["import { Command } from \"@oclif/core\";\nimport Sentry, { consoleIntegration } from \"@sentry/node\";\nimport { LIB_VERSION } from \"../utils/version.js\";\nimport { COPILOT_CLOUD_BASE_URL } from \"../utils/trpc.js\";\nimport chalk from \"chalk\";\n\nexport class BaseCommand extends Command {\n async init() {\n await this.checkCLIVersion();\n\n if (process.env.SENTRY_DISABLED === \"true\") {\n return;\n }\n\n Sentry.init({\n dsn:\n process.env.SENTRY_DSN ||\n \"https://1eea15d32e2eacb0456a77db5e39aeeb@o4507288195170304.ingest.us.sentry.io/4508581448581120\",\n integrations: [consoleIntegration()],\n // Tracing\n tracesSampleRate: 1.0, // Capture 100% of the transactions\n });\n }\n\n async catch(err: any) {\n if (process.env.SENTRY_DISABLED !== \"true\") {\n Sentry.captureException(err);\n }\n\n const message = err?.message ?? \"Unknown error\";\n\n this.log(\"\\n\" + chalk.red(message) + \"\\n\");\n\n const exitCode = err?.oclif?.exit ?? 1;\n this.exit(exitCode);\n }\n\n async finally() {\n if (process.env.SENTRY_DISABLED === \"true\") {\n return;\n }\n\n Sentry.close();\n }\n\n async run() {}\n\n async checkCLIVersion() {\n try {\n const response = await fetch(`${COPILOT_CLOUD_BASE_URL}/api/healthz`);\n\n const data = await response.json();\n const cloudVersion = data.cliVersion;\n\n if (!cloudVersion || cloudVersion === LIB_VERSION) {\n return;\n }\n\n // TODO: add this back in, removed for crew ai launch since we don't want to keep releasing cloud\n // this.log(chalk.yellow('================ New version available! =================\\n'))\n // this.log(`You are using CopilotKit CLI v${LIB_VERSION}.`)\n // this.log(`A new CopilotKit CLI version is available (v${cloudVersion}).\\n`)\n // this.log('Please update your CLI to the latest version:\\n\\n')\n // this.log(`${chalk.cyan(chalk.underline(chalk.bold('npm:')))}\\t npm install -g copilotkit@${cloudVersion}\\n`)\n // this.log(`${chalk.cyan(chalk.underline(chalk.bold('pnpm:')))}\\t pnpm install -g copilotkit@${cloudVersion}\\n`)\n // this.log(`${chalk.cyan(chalk.underline(chalk.bold('yarn:')))}\\t yarn global add copilotkit@${cloudVersion}\\n`)\n // this.log(chalk.yellow('============================================================\\n\\n'))\n } catch {\n // Version check is non-critical — don't crash the CLI when offline\n }\n }\n\n async gracefulError(message: string) {\n this.log(\"\\n\" + chalk.red(message));\n process.exit(1);\n }\n}\n","// This is auto generated!\nexport const LIB_VERSION = \"0.0.0-main-20260402184302\";\n","import { createTRPCClient as trpcClient, httpBatchLink } from \"@trpc/client\";\nimport superjson from \"superjson\";\n\nexport const COPILOT_CLOUD_BASE_URL =\n process.env.COPILOT_CLOUD_BASE_URL || \"https://cloud.copilotkit.ai\";\n\nexport function createTRPCClient(cliToken: string): any {\n return trpcClient({\n links: [\n httpBatchLink({\n url: `${COPILOT_CLOUD_BASE_URL}/api/trpc-cli`,\n transformer: superjson,\n headers: () => {\n return {\n \"x-trpc-source\": \"cli\",\n \"x-cli-token\": cliToken,\n };\n },\n }),\n ],\n });\n}\n"],"mappings":";AAAA,SAAS,eAAe;AACxB,OAAO,UAAU,0BAA0B;;;ACApC,IAAM,cAAc;;;ACD3B,SAAS,oBAAoB,YAAY,qBAAqB;AAC9D,OAAO,eAAe;AAEf,IAAM,yBACX,QAAQ,IAAI,0BAA0B;;;AFAxC,OAAO,WAAW;AAEX,IAAM,cAAN,cAA0B,QAAQ;AAAA,EACvC,MAAM,OAAO;AACX,UAAM,KAAK,gBAAgB;AAE3B,QAAI,QAAQ,IAAI,oBAAoB,QAAQ;AAC1C;AAAA,IACF;AAEA,WAAO,KAAK;AAAA,MACV,KACE,QAAQ,IAAI,cACZ;AAAA,MACF,cAAc,CAAC,mBAAmB,CAAC;AAAA;AAAA,MAEnC,kBAAkB;AAAA;AAAA,IACpB,CAAC;AAAA,EACH;AAAA,EAEA,MAAM,MAAM,KAAU;AACpB,QAAI,QAAQ,IAAI,oBAAoB,QAAQ;AAC1C,aAAO,iBAAiB,GAAG;AAAA,IAC7B;AAEA,UAAM,UAAU,KAAK,WAAW;AAEhC,SAAK,IAAI,OAAO,MAAM,IAAI,OAAO,IAAI,IAAI;AAEzC,UAAM,WAAW,KAAK,OAAO,QAAQ;AACrC,SAAK,KAAK,QAAQ;AAAA,EACpB;AAAA,EAEA,MAAM,UAAU;AACd,QAAI,QAAQ,IAAI,oBAAoB,QAAQ;AAC1C;AAAA,IACF;AAEA,WAAO,MAAM;AAAA,EACf;AAAA,EAEA,MAAM,MAAM;AAAA,EAAC;AAAA,EAEb,MAAM,kBAAkB;AACtB,QAAI;AACF,YAAM,WAAW,MAAM,MAAM,GAAG,sBAAsB,cAAc;AAEpE,YAAM,OAAO,MAAM,SAAS,KAAK;AACjC,YAAM,eAAe,KAAK;AAE1B,UAAI,CAAC,gBAAgB,iBAAiB,aAAa;AACjD;AAAA,MACF;AAAA,IAWF,QAAQ;AAAA,IAER;AAAA,EACF;AAAA,EAEA,MAAM,cAAc,SAAiB;AACnC,SAAK,IAAI,OAAO,MAAM,IAAI,OAAO,CAAC;AAClC,YAAQ,KAAK,CAAC;AAAA,EAChB;AACF;","names":[]}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as _oclif_core_interfaces from '@oclif/core/interfaces';
|
|
2
|
+
import { Config } from '@oclif/core';
|
|
3
|
+
import { BaseCommand } from './base-command.js';
|
|
4
|
+
|
|
5
|
+
declare class Create extends BaseCommand {
|
|
6
|
+
static description: string;
|
|
7
|
+
static examples: string[];
|
|
8
|
+
static flags: {
|
|
9
|
+
framework: _oclif_core_interfaces.OptionFlag<string | undefined, _oclif_core_interfaces.CustomOptions>;
|
|
10
|
+
name: _oclif_core_interfaces.OptionFlag<string | undefined, _oclif_core_interfaces.CustomOptions>;
|
|
11
|
+
"no-banner": _oclif_core_interfaces.BooleanFlag<boolean>;
|
|
12
|
+
project: _oclif_core_interfaces.OptionFlag<string | undefined, _oclif_core_interfaces.CustomOptions>;
|
|
13
|
+
};
|
|
14
|
+
static args: {
|
|
15
|
+
projectName: _oclif_core_interfaces.Arg<string | undefined, Record<string, unknown>>;
|
|
16
|
+
};
|
|
17
|
+
constructor(argv: string[], config: Config);
|
|
18
|
+
run(): Promise<void>;
|
|
19
|
+
private promptProjectName;
|
|
20
|
+
private promptAgentFramework;
|
|
21
|
+
private downloadTemplate;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export { Create as default };
|