@devobsessed/code-captain 0.1.0 → 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 +1 -1
- package/bin/install.js +13 -13
- package/claude-code/commands/cc-create-spec.md +627 -0
- package/copilot/README.md +27 -27
- package/copilot/prompts/create-adr.prompt.md +1 -1
- package/copilot/prompts/create-spec.prompt.md +1 -1
- package/copilot/prompts/edit-spec.prompt.md +1 -1
- package/copilot/prompts/execute-task.prompt.md +1 -1
- package/copilot/prompts/explain-code.prompt.md +1 -1
- package/copilot/prompts/initialize.prompt.md +1 -1
- package/copilot/prompts/new-command.prompt.md +3 -3
- package/copilot/prompts/plan-product.prompt.md +1 -1
- package/copilot/prompts/research.prompt.md +1 -1
- package/copilot/prompts/status.prompt.md +1 -1
- package/copilot/prompts/swab.prompt.md +1 -1
- package/manifest.json +101 -93
- package/package.json +1 -1
- /package/copilot/{chatmodes/Code Captain.chatmode.md → agents/Code Captain.agent.md} +0 -0
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
|
|
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/
|
|
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/
|
|
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
|
|
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
|
-
//
|
|
901
|
-
if (includeAll || selectedComponents.includes("
|
|
900
|
+
// Agents
|
|
901
|
+
if (includeAll || selectedComponents.includes("agents")) {
|
|
902
902
|
files.push({
|
|
903
|
-
source: "copilot/
|
|
904
|
-
target: ".github/
|
|
905
|
-
component: "
|
|
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
|
|
1105
|
-
chalk.cyan(".github/
|
|
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
|
-
"
|
|
1111
|
-
chalk.cyan("
|
|
1112
|
-
"
|
|
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.") +
|