davenov-cc 1.0.8 → 1.0.9
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 +10 -0
- package/bin/cli.js +1 -1
- package/commands/davenov:cc:help.md +68 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,6 +30,16 @@ npx davenov-cc
|
|
|
30
30
|
|
|
31
31
|
That's it! The installer will copy all commands and skills to `~/.claude/`.
|
|
32
32
|
|
|
33
|
+
## Getting Help
|
|
34
|
+
|
|
35
|
+
Run the help command to see all available commands and skills:
|
|
36
|
+
|
|
37
|
+
```
|
|
38
|
+
/davenov:cc:help
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
This will show you what's installed, how to use each command, and quick start tips.
|
|
42
|
+
|
|
33
43
|
## Updating
|
|
34
44
|
|
|
35
45
|
### `/davenov:cc:update`
|
package/bin/cli.js
CHANGED
|
@@ -18,7 +18,7 @@ const CUSTOMIZATION_DIRS = ["commands", "skills"];
|
|
|
18
18
|
|
|
19
19
|
// Files/folders installed by this package (for uninstall)
|
|
20
20
|
const INSTALLED_ITEMS = {
|
|
21
|
-
commands: ["davenov:cc:interview.md", "davenov:cc:rule.md", "davenov:cc:update.md"],
|
|
21
|
+
commands: ["davenov:cc:help.md", "davenov:cc:interview.md", "davenov:cc:rule.md", "davenov:cc:update.md"],
|
|
22
22
|
skills: [
|
|
23
23
|
"davenov:cc:expert-convex-nextjs",
|
|
24
24
|
"davenov:cc:expert-evolu-nextjs",
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Show available Davenov CC commands and skills with usage examples
|
|
3
|
+
allowed-tools:
|
|
4
|
+
- Bash
|
|
5
|
+
- Read
|
|
6
|
+
- Glob
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Davenov CC Help
|
|
10
|
+
|
|
11
|
+
Display help information about the installed Davenov CC collection.
|
|
12
|
+
|
|
13
|
+
## Instructions
|
|
14
|
+
|
|
15
|
+
1. **Check what's installed** by looking at the `~/.claude/` directory for davenov:cc commands and skills:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
# List installed commands
|
|
19
|
+
ls ~/.claude/commands/davenov:cc:*.md 2>/dev/null || echo "No commands found"
|
|
20
|
+
|
|
21
|
+
# List installed skills
|
|
22
|
+
ls -d ~/.claude/skills/davenov:cc:*/ 2>/dev/null || echo "No skills found"
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
2. **Read the description** from each installed command's YAML frontmatter and each skill's SKILL.md file.
|
|
26
|
+
|
|
27
|
+
3. **Present a friendly help guide** to the user in this format:
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
Davenov CC Collection
|
|
31
|
+
|
|
32
|
+
A collection of Claude Code skills and slash commands for enhanced AI-assisted development.
|
|
33
|
+
|
|
34
|
+
COMMANDS
|
|
35
|
+
────────
|
|
36
|
+
/davenov:cc:help
|
|
37
|
+
Show this help message
|
|
38
|
+
|
|
39
|
+
/davenov:cc:interview <spec-file>
|
|
40
|
+
[description from frontmatter]
|
|
41
|
+
|
|
42
|
+
/davenov:cc:rule <description>
|
|
43
|
+
[description from frontmatter]
|
|
44
|
+
|
|
45
|
+
/davenov:cc:update
|
|
46
|
+
[description from frontmatter]
|
|
47
|
+
|
|
48
|
+
SKILLS (auto-loaded when relevant)
|
|
49
|
+
──────────────────────────────────
|
|
50
|
+
davenov:cc:expert-convex-nextjs
|
|
51
|
+
[description from SKILL.md]
|
|
52
|
+
|
|
53
|
+
[...other skills...]
|
|
54
|
+
|
|
55
|
+
QUICK START
|
|
56
|
+
───────────
|
|
57
|
+
• Run /davenov:cc:update to get the latest version
|
|
58
|
+
• Skills activate automatically based on your project context
|
|
59
|
+
• Use /davenov:cc:interview to flesh out project specs
|
|
60
|
+
• Use /davenov:cc:rule to create Claude Code rules
|
|
61
|
+
|
|
62
|
+
RESOURCES
|
|
63
|
+
─────────
|
|
64
|
+
• GitHub: https://github.com/kaladivo/davenov-cc-collection
|
|
65
|
+
• npm: https://www.npmjs.com/package/davenov-cc
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
4. If no davenov:cc items are found, suggest running `npx davenov-cc` to install.
|