@voodocs/cli 0.2.0 → 0.3.0

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/CHANGELOG.md CHANGED
@@ -1,3 +1,85 @@
1
+ ## [0.3.0] - 2025-12-20
2
+
3
+ ### Added
4
+
5
+ #### AI-Aware Integration System
6
+
7
+ **Native AI Assistant Integration**
8
+ - Auto-detects existing AI configurations (Claude, Cursor, Copilot, Gemini, Junie)
9
+ - Interactive menu for selecting AI assistant(s) during `voodocs context init`
10
+ - Generates native configuration files for each AI assistant
11
+ - Supports 5+ AI assistants with more coming
12
+
13
+ **Supported AI Assistants:**
14
+ 1. **Claude Code** - Generates `.claude/skills/voodocs-context/SKILL.md` (2,341 chars)
15
+ - Full skill with YAML frontmatter
16
+ - On-demand context loading
17
+ - Executable scripts support
18
+
19
+ 2. **Cursor** - Generates `.cursor/rules/voodocs-context.mdc` (2,560 chars)
20
+ - Comprehensive rules file
21
+ - Context system commands
22
+ - Workflow best practices
23
+
24
+ 3. **GitHub Copilot** - Generates `.github/copilot-instructions.md` (1,981 chars)
25
+ - Project-specific instructions
26
+ - Context integration guide
27
+ - Annotation format examples
28
+
29
+ 4. **Windsurf** - Generates `.windsurfrules` (1,180 chars)
30
+ - Concise rules format
31
+ - Essential commands
32
+ - Quick reference
33
+
34
+ 5. **Cline** - Generates `.clinerules` (806 chars)
35
+ - Minimal configuration
36
+ - Core workflow
37
+ - Context basics
38
+
39
+ **Integration Features:**
40
+ - Context system overview and commands
41
+ - @voodocs annotation format (Python & TypeScript)
42
+ - Development workflow best practices
43
+ - Invariant checking instructions
44
+ - Architecture diagram generation
45
+ - AI-specific guidance and tips
46
+
47
+ **User Experience:**
48
+ - ✓ markers show detected AI configurations
49
+ - Numbered menu for easy selection
50
+ - Creates parent directories automatically
51
+ - Handles existing files with overwrite prompt
52
+ - Default: generate all integrations
53
+ - Can select individual AIs or all at once
54
+
55
+ **Technical Implementation:**
56
+ - New module: `ai_integrations.py` (685 lines)
57
+ - Detection: `detect_ai_assistants()` function
58
+ - Generation: AI-specific template functions
59
+ - Integration: Updated `cmd_context_init()` command
60
+
61
+ ### Changed
62
+ - Enhanced `voodocs context init` with AI assistant detection and integration
63
+ - Improved user prompts with visual markers for detected configurations
64
+ - Updated next steps to include AI-specific guidance
65
+
66
+ ### Documentation
67
+ - Added AI integration research notes
68
+ - Created comprehensive AI integration summary
69
+ - Documented all supported AI assistant formats
70
+
71
+ ### Impact
72
+
73
+ This release makes VooDocs **truly AI-native**, working seamlessly with any AI assistant. The context system becomes the single source of truth that all AIs understand and respect.
74
+
75
+ **Key Benefits:**
76
+ - One command sets up everything
77
+ - Works with any AI assistant
78
+ - Native format for each AI
79
+ - No manual configuration needed
80
+ - Consistent AI behavior across teams
81
+ - Context-aware development
82
+
1
83
  ## [0.2.0] - 2025-12-19
2
84
 
3
85
  ### Added
package/README.md CHANGED
@@ -90,7 +90,7 @@ voodocs generate ./src --tests-only
90
90
  - `voodocs generate <path>`: Generate docs, tests, and API specs from annotations
91
91
  - `voodocs status`: Check project status and statistics
92
92
 
93
- ### Context System (NEW in v0.2.0)
93
+ ### Context System (Enhanced in v0.3.0)
94
94
  - `voodocs context init`: Initialize project context file
95
95
  - `voodocs context generate`: Auto-generate context from code annotations
96
96
  - `voodocs context check`: Validate code against documented invariants
@@ -99,6 +99,27 @@ voodocs generate ./src --tests-only
99
99
  - `voodocs context query`: Query context like a database
100
100
  - `voodocs context view`: View context as Markdown
101
101
 
102
+ ### AI Integration (NEW in v0.3.0)
103
+
104
+ VooDocs now **natively integrates** with 5+ AI assistants! When you run `voodocs context init`, it automatically:
105
+ - Detects existing AI configurations (Claude, Cursor, Copilot, etc.)
106
+ - Prompts you to select your AI assistant(s)
107
+ - Generates native configuration files for each AI
108
+
109
+ **Supported AI Assistants:**
110
+ - **Claude Code** - `.claude/skills/voodocs-context/SKILL.md`
111
+ - **Cursor** - `.cursor/rules/voodocs-context.mdc`
112
+ - **GitHub Copilot** - `.github/copilot-instructions.md`
113
+ - **Windsurf** - `.windsurfrules`
114
+ - **Cline** - `.clinerules`
115
+
116
+ Your AI will automatically understand the VooDocs context system and:
117
+ - Check context before making changes
118
+ - Respect documented invariants
119
+ - Update context when adding features
120
+ - Generate architecture diagrams
121
+ - Follow best practices
122
+
102
123
  ## The DarkArts Language
103
124
 
104
125
  Voodocs uses the **DarkArts language** - a mathematical and logical notation system that represents how AI naturally thinks about code. Instead of forcing AI to write verbose human documentation, Voodocs lets AI express concepts precisely using:
package/cli.py CHANGED
@@ -137,7 +137,7 @@ Documentation: https://github.com/3vilEnterprises/vooodooo-magic/tree/main/packa
137
137
  parser.add_argument(
138
138
  "--version",
139
139
  action="version",
140
- version="VooDocs 0.2.0"
140
+ version="VooDocs 0.3.0"
141
141
  )
142
142
 
143
143
  subparsers = parser.add_subparsers(dest="command", help="Available commands")