@ethanhq/cc-fleet 0.1.1 → 0.1.3
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/install.js +6 -0
- package/package.json +1 -1
package/install.js
CHANGED
|
@@ -89,6 +89,12 @@ async function main() {
|
|
|
89
89
|
fs.rmSync(tmp, { recursive: true, force: true });
|
|
90
90
|
}
|
|
91
91
|
console.log(`cc-fleet: installed v${version} (${PLATFORM}/${ARCH})`);
|
|
92
|
+
console.log(
|
|
93
|
+
"cc-fleet: this installs the BINARY only. To let Claude Code use it, also install the skill:\n" +
|
|
94
|
+
" claude plugin marketplace add ethanhq/cc-fleet\n" +
|
|
95
|
+
" claude plugin install cc-fleet@ethanhq\n" +
|
|
96
|
+
" Then run `cc-fleet` to register a vendor."
|
|
97
|
+
);
|
|
92
98
|
}
|
|
93
99
|
|
|
94
100
|
main().catch((err) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ethanhq/cc-fleet",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Spawn any third-party LLM provider with an Anthropic-compatible API as real Claude Code agent-team teammates or one-shot subagents. The main session's own auth (OAuth or API key) is untouched.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"cc-fleet": "bin/launcher.js",
|