@connsoft-tech/claude-init 1.0.0 → 1.0.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/.claude-plugin/plugin.json +1 -1
- package/README.md +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ claude-init
|
|
|
36
36
|
### Rodando a partir do código-fonte (desenvolvimento/customização)
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
|
-
git clone https://github.com
|
|
39
|
+
git clone https://github.com/valdirjunior10/claude-setup-cli.git
|
|
40
40
|
cd claude-setup-cli
|
|
41
41
|
npm install
|
|
42
42
|
npm link
|
|
@@ -61,7 +61,7 @@ Se você só usa isso dentro de uma sessão do Claude Code e não quer lidar
|
|
|
61
61
|
com Node/npm, este mesmo repositório também é um plugin:
|
|
62
62
|
|
|
63
63
|
```bash
|
|
64
|
-
claude plugin marketplace add
|
|
64
|
+
claude plugin marketplace add valdirjunior10/claude-setup-cli
|
|
65
65
|
claude plugin install claude-init@claude-init
|
|
66
66
|
```
|
|
67
67
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@connsoft-tech/claude-init",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Scaffolder de estrutura Claude Code (orchestrator, agentes por camada, Spec-Driven Development, hooks de segurança) para qualquer stack, monorepo ou não.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"claude-init": "bin/cli.js"
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
],
|
|
31
31
|
"repository": {
|
|
32
32
|
"type": "git",
|
|
33
|
-
"url": "git+https://github.com
|
|
33
|
+
"url": "git+https://github.com/valdirjunior10/claude-setup-cli.git"
|
|
34
34
|
},
|
|
35
|
-
"homepage": "https://github.com
|
|
35
|
+
"homepage": "https://github.com/valdirjunior10/claude-setup-cli",
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
}
|