davenov-cc 1.0.7 → 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 CHANGED
@@ -10,7 +10,6 @@ Slash commands that can be invoked with `/<command-name>`:
10
10
 
11
11
  - **davenov:cc:interview** - Interview mode for expanding specifications
12
12
  - **davenov:cc:rule** - Create or modify Claude Code rules
13
- - **davenov:cc:update** - Update to latest version and sync to ~/.claude/
14
13
 
15
14
  ### Skills
16
15
 
@@ -31,14 +30,28 @@ npx davenov-cc
31
30
 
32
31
  That's it! The installer will copy all commands and skills to `~/.claude/`.
33
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
+
34
43
  ## Updating
35
44
 
36
- Update from any directory using the slash command:
45
+ ### `/davenov:cc:update`
46
+
47
+ The easiest way — just run this slash command from any Claude Code session:
37
48
 
38
49
  ```
39
50
  /davenov:cc:update
40
51
  ```
41
52
 
53
+ ### Manual update
54
+
42
55
  Or run the npx command directly:
43
56
 
44
57
  ```bash
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.
@@ -1,12 +1,12 @@
1
1
  ---
2
- description: Update davenov-cc-collection to latest version and sync to ~/.claude/
2
+ description: Update Davenov CC (skills & slash commands collection) to the latest version
3
3
  allowed-tools:
4
4
  - Bash
5
5
  ---
6
6
 
7
- # Update davenov-cc-collection
7
+ # Update Davenov CC Collection
8
8
 
9
- Download the latest version from npm and install to ~/.claude/.
9
+ This command updates the **davenov-cc** npm package — a collection of Claude Code skills and slash commands — to the latest version and syncs them to your `~/.claude/` folder.
10
10
 
11
11
  ## Instructions
12
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "davenov-cc",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "Claude Code customizations - skills and slash commands for enhanced AI-assisted development",
5
5
  "bin": {
6
6
  "davenov-cc": "./bin/cli.js"