cp-toolkit 2.1.1 → 2.1.2
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/package.json +1 -1
- package/src/commands/init.js +5 -5
package/package.json
CHANGED
package/src/commands/init.js
CHANGED
|
@@ -304,14 +304,14 @@ export async function initCommand(directory, options) {
|
|
|
304
304
|
{
|
|
305
305
|
type: 'confirm',
|
|
306
306
|
name: 'installEverything',
|
|
307
|
-
message: 'Install full
|
|
307
|
+
message: 'Install full Copilot Kit (Agents, Skills, Workflows)?',
|
|
308
308
|
initial: true
|
|
309
309
|
}
|
|
310
310
|
]);
|
|
311
311
|
config = { ...config, ...response };
|
|
312
312
|
}
|
|
313
313
|
|
|
314
|
-
const spinner = ora('Installing
|
|
314
|
+
const spinner = ora('Installing Copilot Kit...').start();
|
|
315
315
|
|
|
316
316
|
try {
|
|
317
317
|
// 1. Copy Templates to .agent folder
|
|
@@ -383,7 +383,7 @@ export async function initCommand(directory, options) {
|
|
|
383
383
|
// Based on list_dir earlier, it wasn't there. It was likely outside.
|
|
384
384
|
// We will generate a basic one if missing.
|
|
385
385
|
|
|
386
|
-
spinner.succeed(chalk.green('
|
|
386
|
+
spinner.succeed(chalk.green('Copilot Kit installed successfully!'));
|
|
387
387
|
|
|
388
388
|
console.log(chalk.bold('\nNext Steps:'));
|
|
389
389
|
console.log(`1. Open ${chalk.cyan('.github/copilot-instructions.md')} to see the setup.`);
|
|
@@ -413,12 +413,12 @@ ${agent.description}
|
|
|
413
413
|
function generateCopilotInstructions(config) {
|
|
414
414
|
return `# GitHub Copilot Instructions
|
|
415
415
|
|
|
416
|
-
> **
|
|
416
|
+
> **Copilot Kit Active**
|
|
417
417
|
> Profile: ${config.projectName}
|
|
418
418
|
|
|
419
419
|
## 🧠 Core Protocols
|
|
420
420
|
|
|
421
|
-
The user has installed the **
|
|
421
|
+
The user has installed the **Copilot Kit** in \`.agent/\`.
|
|
422
422
|
You must follow the rules defined in \`.agent/rules/GEMINI.md\`.
|
|
423
423
|
|
|
424
424
|
### Structure
|