@devobsessed/code-captain 0.0.9 → 0.2.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 CHANGED
@@ -54,7 +54,7 @@ _AI-first development with built-in agent system_
54
54
 
55
55
  _Classic VS Code with Copilot Chat integration_
56
56
 
57
- - Custom chat modes and prompts
57
+ - Custom agents and prompts
58
58
  - `.github/` repository integration
59
59
  - Team collaboration features
60
60
  - **→ [Copilot Setup Guide](copilot/README.md)**
package/bin/install.js CHANGED
@@ -39,7 +39,7 @@ class CodeCaptainInstaller {
39
39
  name: "Copilot",
40
40
  description: "Visual Studio Code with Copilot extension",
41
41
  details:
42
- "Uses .github/chatmodes/ + .github/prompts/ + .code-captain/docs/",
42
+ "Uses .github/agents/ + .github/prompts/ + .code-captain/docs/",
43
43
  },
44
44
  claude: {
45
45
  name: "Claude Code",
@@ -125,7 +125,7 @@ class CodeCaptainInstaller {
125
125
  ".cursor/rules/cc.mdc",
126
126
  ".cursor/rules/",
127
127
  ],
128
- "Copilot Integration": [".github/chatmodes/", ".github/prompts/"],
128
+ "Copilot Integration": [".github/agents/", ".github/prompts/"],
129
129
  "Claude Integration": [
130
130
  ".code-captain/claude/",
131
131
  "claude-code/",
@@ -679,7 +679,7 @@ class CodeCaptainInstaller {
679
679
  case "copilot":
680
680
  return [
681
681
  ...baseChoices,
682
- { name: "Copilot Chatmodes", value: "chatmodes", checked: true },
682
+ { name: "Copilot Agents", value: "agents", checked: true },
683
683
  { name: "Copilot Prompts", value: "prompts", checked: true },
684
684
  ];
685
685
 
@@ -897,12 +897,12 @@ class CodeCaptainInstaller {
897
897
  break;
898
898
 
899
899
  case "copilot":
900
- // Chatmodes
901
- if (includeAll || selectedComponents.includes("chatmodes")) {
900
+ // Agents
901
+ if (includeAll || selectedComponents.includes("agents")) {
902
902
  files.push({
903
- source: "copilot/chatmodes/Code Captain.chatmode.md",
904
- target: ".github/chatmodes/Code Captain.chatmode.md",
905
- component: "chatmodes",
903
+ source: "copilot/agents/Code Captain.agent.md",
904
+ target: ".github/agents/Code Captain.agent.md",
905
+ component: "agents",
906
906
  });
907
907
  }
908
908
 
@@ -1101,15 +1101,15 @@ class CodeCaptainInstaller {
1101
1101
  case "copilot":
1102
1102
  console.log(
1103
1103
  chalk.blue("1.") +
1104
- " Restart VS Code to load chatmodes from " +
1105
- chalk.cyan(".github/chatmodes/")
1104
+ " Restart VS Code to load agents from " +
1105
+ chalk.cyan(".github/agents/")
1106
1106
  );
1107
1107
  console.log(chalk.blue("2.") + " Open Copilot Chat in VS Code");
1108
1108
  console.log(
1109
1109
  chalk.blue("3.") +
1110
- " Type " +
1111
- chalk.cyan("@Code Captain") +
1112
- " to access the chatmode"
1110
+ " Select the " +
1111
+ chalk.cyan("Code Captain") +
1112
+ " agent from the agent picker"
1113
1113
  );
1114
1114
  console.log(
1115
1115
  chalk.blue("4.") +