davenov-cc 1.0.0 → 1.0.1
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 +2 -48
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ A personal collection of Claude Code customizations including skills and slash c
|
|
|
4
4
|
|
|
5
5
|
## Contents
|
|
6
6
|
|
|
7
|
-
### Commands
|
|
7
|
+
### Commands
|
|
8
8
|
|
|
9
9
|
Slash commands that can be invoked with `/<command-name>`:
|
|
10
10
|
|
|
@@ -12,7 +12,7 @@ Slash commands that can be invoked with `/<command-name>`:
|
|
|
12
12
|
- **davenov:cc:rule** - Create or modify Claude Code rules
|
|
13
13
|
- **davenov:cc:update** - Update to latest version and sync to ~/.claude/
|
|
14
14
|
|
|
15
|
-
### Skills
|
|
15
|
+
### Skills
|
|
16
16
|
|
|
17
17
|
Skills provide Claude with domain-specific knowledge and workflows:
|
|
18
18
|
|
|
@@ -55,52 +55,6 @@ The `@latest` tag ensures you get the newest version.
|
|
|
55
55
|
|
|
56
56
|
> **Note:** If you delete a file from this repo, it won't be removed from `~/.claude/` on reinstall. Manually delete unwanted files or remove the entire `~/.claude/commands/` or `~/.claude/skills/` directory before reinstalling for a clean slate.
|
|
57
57
|
|
|
58
|
-
## Structure
|
|
59
|
-
|
|
60
|
-
```
|
|
61
|
-
.
|
|
62
|
-
├── bin/
|
|
63
|
-
│ └── cli.js # npx entry point
|
|
64
|
-
├── commands/ # Slash commands (*.md files)
|
|
65
|
-
│ ├── davenov:cc:interview.md
|
|
66
|
-
│ ├── davenov:cc:rule.md
|
|
67
|
-
│ └── davenov:cc:update.md
|
|
68
|
-
├── skills/ # Skills with references and workflows
|
|
69
|
-
│ └── <skill-name>/
|
|
70
|
-
│ ├── SKILL.md # Main skill definition
|
|
71
|
-
│ ├── references/ # Reference documentation
|
|
72
|
-
│ ├── workflows/ # Step-by-step workflows
|
|
73
|
-
│ └── templates/ # Code templates (optional)
|
|
74
|
-
├── package.json # npm package configuration
|
|
75
|
-
├── install.js # Installation script
|
|
76
|
-
└── README.md
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
## Adding new customizations
|
|
80
|
-
|
|
81
|
-
### Adding a command
|
|
82
|
-
|
|
83
|
-
Create a new `.md` file in `commands/`:
|
|
84
|
-
|
|
85
|
-
```bash
|
|
86
|
-
commands/my-command.md
|
|
87
|
-
```
|
|
88
|
-
|
|
89
|
-
### Adding a skill
|
|
90
|
-
|
|
91
|
-
Create a new directory in `skills/` with at least a `SKILL.md`:
|
|
92
|
-
|
|
93
|
-
```bash
|
|
94
|
-
skills/my-skill/
|
|
95
|
-
├── SKILL.md
|
|
96
|
-
├── references/
|
|
97
|
-
│ └── ...
|
|
98
|
-
└── workflows/
|
|
99
|
-
└── ...
|
|
100
|
-
```
|
|
101
|
-
|
|
102
|
-
After adding new customizations, run `node install.js` again to install them.
|
|
103
|
-
|
|
104
58
|
## Acknowledgments
|
|
105
59
|
|
|
106
60
|
Most resources in this collection were created with the help of [taches-cc-resources](https://github.com/glittercowboy/taches-cc-resources), an excellent toolkit for building Claude Code customizations.
|