ccsetup 1.0.3 → 1.0.5
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 -2
- package/bin/create-project.js +0 -8
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -99,12 +99,11 @@ After setting up your project with `ccsetup`:
|
|
|
99
99
|
- Pre-configured project structure for Claude Code
|
|
100
100
|
- Multiple specialized agents for different tasks
|
|
101
101
|
- Built-in ticket and planning system
|
|
102
|
-
- Git repository initialization
|
|
103
102
|
- Ready-to-use boilerplate
|
|
104
103
|
|
|
105
104
|
## Credits
|
|
106
105
|
|
|
107
|
-
|
|
106
|
+
Born from our discussions in TechOverflow with [vichannnnn](https://github.com/vichannnnn) and [nasdin](https://github.com/nasdin)
|
|
108
107
|
|
|
109
108
|
## License
|
|
110
109
|
|
package/bin/create-project.js
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
const fs = require('fs');
|
|
4
4
|
const path = require('path');
|
|
5
|
-
const { execSync } = require('child_process');
|
|
6
5
|
|
|
7
6
|
const projectName = process.argv[2] || '.';
|
|
8
7
|
const targetDir = path.resolve(process.cwd(), projectName);
|
|
@@ -35,13 +34,6 @@ function copyRecursive(src, dest) {
|
|
|
35
34
|
|
|
36
35
|
copyRecursive(templateDir, targetDir);
|
|
37
36
|
|
|
38
|
-
if (fs.existsSync(path.join(targetDir, '.git'))) {
|
|
39
|
-
console.log('Git repository already exists, skipping git init...');
|
|
40
|
-
} else {
|
|
41
|
-
console.log('Initializing git repository...');
|
|
42
|
-
execSync('git init', { cwd: targetDir, stdio: 'inherit' });
|
|
43
|
-
}
|
|
44
|
-
|
|
45
37
|
console.log('\n✅ Claude Code project created successfully!');
|
|
46
38
|
console.log('\nNext steps:');
|
|
47
39
|
if (projectName !== '.') {
|
package/package.json
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccsetup",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Boilerplate for Claude Code projects with agents, tickets, and plans",
|
|
5
5
|
"bin": {
|
|
6
6
|
"ccsetup": "./bin/create-project.js"
|
|
7
7
|
},
|
|
8
8
|
"keywords": ["claude", "boilerplate", "project-template", "claude-code", "ai", "development"],
|
|
9
|
-
"author": "
|
|
9
|
+
"author": "marcia_ong",
|
|
10
10
|
"contributors": [
|
|
11
|
-
"
|
|
11
|
+
"hima7459",
|
|
12
|
+
"nasdin"
|
|
12
13
|
],
|
|
13
14
|
"license": "MIT",
|
|
14
15
|
"repository": {
|