claude-code-team 0.1.0 → 0.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/README.md +3 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
# CCT - Claude Code Team
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/claude-code-team)
|
|
4
|
+
|
|
3
5
|
Orchestrate multiple Claude sessions to work on complex tasks in parallel.
|
|
4
6
|
|
|
5
7
|
## Installation
|
|
6
8
|
|
|
7
9
|
```bash
|
|
8
|
-
npm install -g
|
|
10
|
+
npm install -g claude-code-team
|
|
9
11
|
```
|
|
10
12
|
|
|
11
13
|
## Usage
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-team",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Claude Code Team - orchestrate multiple Claude sessions",
|
|
5
5
|
"bin": {
|
|
6
6
|
"cct": "./bin/cct.js"
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"repository": {
|
|
23
23
|
"type": "git",
|
|
24
|
-
"url": "https://github.com/
|
|
25
|
-
}
|
|
24
|
+
"url": "https://github.com/thomas588/cct.git"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/thomas588/cct#readme"
|
|
26
27
|
}
|