@voodocs/cli 2.5.2 â 3.0.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 +156 -235
- package/README.md +215 -399
- package/lib/cli/__init__.py +1 -3
- package/lib/cli/init.py +11 -13
- package/lib/darkarts/annotations/darkarts_parser.py +159 -142
- package/lib/darkarts/annotations/darkarts_parser_v2.py.bak +238 -0
- package/lib/darkarts/companion_files.py +62 -9
- package/lib/darkarts/context/ai_instructions.py +385 -571
- package/lib/darkarts/context/ai_instructions_v2.py.bak +741 -0
- package/lib/darkarts/darkarts_abbreviations.py +324 -0
- package/lib/darkarts/darkarts_parser_v3.py +486 -0
- package/lib/darkarts/darkarts_patterns.py +249 -0
- package/lib/darkarts/darkarts_symbols.py +276 -0
- package/lib/darkarts/plugins/voodocs/documentation_generator.py +31 -2
- package/lib/darkarts/validation/semantic.py +135 -18
- package/package.json +5 -4
- package/lib/cli/convert.py +0 -131
- package/lib/darkarts/voodocs_lite_dict.py +0 -216
- package/lib/darkarts/voodocs_lite_dict_v2.py +0 -198
- package/lib/darkarts/voodocs_lite_parser.py +0 -343
package/CHANGELOG.md
CHANGED
|
@@ -1,279 +1,200 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
-
## [
|
|
3
|
+
## [3.0.0] - 2025-01-XX
|
|
4
4
|
|
|
5
|
-
###
|
|
6
|
-
- **CLI Registration**: Fixed analyze, convert, and companion commands not being registered
|
|
7
|
-
- Converted `analyze.py` from argparse to Click command
|
|
8
|
-
- Created `convert.py` as Click command for VooDocs Lite conversion
|
|
9
|
-
- Updated `lib/cli/__init__.py` to import and register all three commands
|
|
10
|
-
- Updated `__version__` from "2.1.3" to "2.5.2" in Python code
|
|
11
|
-
- v2.5.0 and v2.5.1 had files in package but commands weren't accessible via CLI
|
|
12
|
-
- All Priority Analyzer and VooDocs Lite features now fully functional
|
|
5
|
+
### đ Major Release: AI-Native Mathematical Documentation
|
|
13
6
|
|
|
14
|
-
|
|
7
|
+
This is a major release that refocuses DarkArts on its core mission: **AI-native mathematical documentation**. The system is now exclusively designed for AI to write and AI to read, with humans interacting through generated documentation and companion files.
|
|
15
8
|
|
|
16
|
-
|
|
9
|
+
### đĽ Breaking Changes
|
|
17
10
|
|
|
18
|
-
|
|
19
|
-
- **
|
|
20
|
-
|
|
21
|
-
- Added `lib/darkarts/voodocs_lite_dict.py`
|
|
22
|
-
- Added `lib/darkarts/voodocs_lite_dict_v2.py`
|
|
23
|
-
- Added `lib/darkarts/voodocs_lite_parser.py`
|
|
24
|
-
- v2.5.0 was published with CHANGELOG updates but missing actual code files
|
|
25
|
-
- All Priority Analyzer and VooDocs Lite features now properly included
|
|
11
|
+
- **Removed `@darkarts-lite`**: The ASCII-based "lite" format has been completely removed. DarkArts now uses only mathematical Unicode notation.
|
|
12
|
+
- **Removed `voodocs convert` command**: No longer needed since there's only one format.
|
|
13
|
+
- **New symbols**: Parsers from v2.x won't recognize the 7 new mathematical symbols (â, â, â, â, â´, â, â).
|
|
26
14
|
|
|
27
|
-
|
|
15
|
+
### ⨠New Features
|
|
28
16
|
|
|
29
|
-
|
|
17
|
+
#### 1. Pattern Shortcuts (50% token reduction in preconditions)
|
|
30
18
|
|
|
31
|
-
|
|
32
|
-
- **Priority Analyzer** - New `voodocs analyze` command to identify which files need annotations most urgently
|
|
33
|
-
- **Complexity Analysis**: LOC, cyclomatic complexity, function count
|
|
34
|
-
- **Security Keyword Detection**: auth, password, admin, crypto, SQL, payment, etc.
|
|
35
|
-
- **Dependency Analysis**: Import tracking and dependent file detection
|
|
36
|
-
- **Weighted Scoring**: Complexity (30%), Security (40%), Dependencies (20%), Annotations (10%)
|
|
37
|
-
- **Priority Levels**: CRITICAL (80-100), HIGH (60-79), MEDIUM (40-59), LOW (20-39), MINIMAL (0-19)
|
|
38
|
-
- **Multiple Output Formats**: text, JSON, CSV, Markdown
|
|
39
|
-
- **Filtering Options**: By priority level, minimum score, exclude patterns
|
|
40
|
-
- **Smart Suggestions**: Context-aware recommendations for each file
|
|
41
|
-
- **Priority Analyzer Modules**:
|
|
42
|
-
- `lib/darkarts/priority_analyzer/complexity.py` - Complexity analysis engine
|
|
43
|
-
- `lib/darkarts/priority_analyzer/security.py` - Security keyword detector
|
|
44
|
-
- `lib/darkarts/priority_analyzer/dependencies.py` - Dependency tracker
|
|
45
|
-
- `lib/darkarts/priority_analyzer/analyzer.py` - Main priority analyzer
|
|
46
|
-
- `lib/cli/analyze.py` - CLI command implementation
|
|
47
|
-
- **Comprehensive Test Suite** - 16 unit tests for priority analyzer functionality
|
|
48
|
-
|
|
49
|
-
### Improved
|
|
50
|
-
- Heuristics for identifying security-sensitive code
|
|
51
|
-
- Dependency tracking for TypeScript, JavaScript, Python, and Solidity
|
|
52
|
-
- Annotation coverage detection and penalty calculation
|
|
53
|
-
- Priority scoring algorithm with empirical validation
|
|
54
|
-
|
|
55
|
-
### Documentation
|
|
56
|
-
- Added Priority Analyzer section to README.md
|
|
57
|
-
- Added analyze command documentation with examples
|
|
58
|
-
- Added priority level definitions and scoring factors
|
|
59
|
-
- Added specification document for priority analyzer
|
|
19
|
+
Shorthand notation for common validations:
|
|
60
20
|
|
|
61
|
-
|
|
21
|
+
```typescript
|
|
22
|
+
/**@darkarts
|
|
23
|
+
âł{id:uuid, email:email, pwâĽ8, age[18,65]}
|
|
24
|
+
*/
|
|
25
|
+
```
|
|
62
26
|
|
|
63
|
-
|
|
27
|
+
**Available patterns:**
|
|
28
|
+
- `:uuid` - valid UUID
|
|
29
|
+
- `:email` - valid email format
|
|
30
|
+
- `:url` - valid URL
|
|
31
|
+
- `:json` - valid JSON
|
|
32
|
+
- `:jwt` - valid JWT token
|
|
33
|
+
- `:hash` - hashed value
|
|
34
|
+
- `:enc` - encrypted value
|
|
35
|
+
- `âĽN`, `â¤N`, `>N`, `<N` - numeric comparisons
|
|
36
|
+
- `[N,M]` - range notation
|
|
37
|
+
- `â{...}` - set membership
|
|
64
38
|
|
|
65
|
-
|
|
66
|
-
- **VooDocs Lite Format** - Ultra-compact symbolic notation with 27-30% token reduction
|
|
67
|
-
- New `voodocs convert` command to convert between Standard and Lite formats
|
|
68
|
-
- Single-character symbols (`>`, `@`, `!`, `<`, `=`, `~`, `#`) instead of Unicode
|
|
69
|
-
- Aggressive abbreviation dictionary (70+ common terms)
|
|
70
|
-
- Article removal and symbol replacements for maximum compression
|
|
71
|
-
- Bidirectional conversion (Standard â Lite) with zero semantic loss
|
|
72
|
-
- Support for `@darkarts-lite` annotation format
|
|
73
|
-
- **VooDocs Lite Parser** module (`lib/darkarts/voodocs_lite_parser.py`)
|
|
74
|
-
- `parse_lite()` - Parse Lite format annotations
|
|
75
|
-
- `parse_standard()` - Parse Standard format annotations
|
|
76
|
-
- `lite_to_standard()` - Convert Lite to Standard with expansion
|
|
77
|
-
- `standard_to_lite()` - Convert Standard to Lite with compression
|
|
78
|
-
- `detect_format()` - Auto-detect annotation format
|
|
79
|
-
- **Ultra-Aggressive Compression** (`lib/darkarts/voodocs_lite_dict_v2.py`)
|
|
80
|
-
- `ultra_compress()` - Maximum compression with article removal
|
|
81
|
-
- `ultra_expand()` - Expand compressed text to full form
|
|
82
|
-
- 70+ abbreviations for common terms
|
|
83
|
-
- Symbol replacements (andâ&, orâ|, >=, <=, etc.)
|
|
84
|
-
- **Comprehensive Test Suite** - 24 unit tests for VooDocs Lite functionality
|
|
85
|
-
|
|
86
|
-
### Improved
|
|
87
|
-
- Token efficiency for AI context (+27-30% reduction)
|
|
88
|
-
- Scannability with single-character symbols
|
|
89
|
-
- Format flexibility (choose Standard or Lite based on needs)
|
|
90
|
-
- Backward compatibility (both formats supported)
|
|
91
|
-
|
|
92
|
-
### Documentation
|
|
93
|
-
- Added VooDocs Lite section to README.md
|
|
94
|
-
- Added convert command documentation
|
|
95
|
-
- Added format comparison examples
|
|
96
|
-
- Added symbol mapping table
|
|
39
|
+
#### 2. Enhanced Abbreviations (30% token reduction in descriptions)
|
|
97
40
|
|
|
98
|
-
|
|
41
|
+
Expanded abbreviation dictionary from 50 to **200+ terms**:
|
|
99
42
|
|
|
100
|
-
|
|
43
|
+
**Core:** `u` (user), `pw` (password), `auth` (authentication), `tok` (token), `sess` (session), `svc` (service)
|
|
101
44
|
|
|
102
|
-
|
|
103
|
-
- **Companion Files Support** - New `.voodocs.md` companion files for compiled languages
|
|
104
|
-
- New `voodocs companion` command to create companion file templates
|
|
105
|
-
- `--companion-files` flag for `voodocs generate` command
|
|
106
|
-
- Automatic discovery and parsing of companion files
|
|
107
|
-
- Markdown section extraction (Purpose, Invariants, Assumptions, Security, etc.)
|
|
108
|
-
- Intelligent merging of companion data with source annotations
|
|
109
|
-
- Template generation with VooDocs symbolic notation
|
|
110
|
-
- Support for Solidity, Rust, C++, and other compiled languages
|
|
111
|
-
- **CompanionFileScanner** module (`lib/darkarts/companion_files.py`)
|
|
112
|
-
- `find_companion_file()` - Locate companion files for source files
|
|
113
|
-
- `scan_directory()` - Scan directories for companion files
|
|
114
|
-
- `parse_companion_file()` - Extract structured data from Markdown
|
|
115
|
-
- `merge_with_source()` - Merge companion data with source annotations
|
|
116
|
-
- `create_template()` - Generate companion file templates
|
|
117
|
-
- **Comprehensive Test Suite** - 16 unit tests for companion files functionality
|
|
118
|
-
|
|
119
|
-
### Fixed
|
|
120
|
-
- Solidity compilation issues caused by inline annotations
|
|
121
|
-
- Documentation workflow for compiled languages
|
|
122
|
-
|
|
123
|
-
### Improved
|
|
124
|
-
- Documentation richness for compiled languages (+167%)
|
|
125
|
-
- Support for rich Markdown formatting (tables, diagrams, links)
|
|
126
|
-
- Version control integration (companion files tracked alongside source)
|
|
127
|
-
- IDE experience (side-by-side viewing of source and docs)
|
|
128
|
-
- AI context quality maintained (same as inline annotations)
|
|
129
|
-
|
|
130
|
-
### Documentation
|
|
131
|
-
- Added companion files section to README.md
|
|
132
|
-
- Added companion command documentation to USAGE.md
|
|
133
|
-
- Added Solidity example with companion file to USAGE.md
|
|
134
|
-
- Updated generate command documentation with --companion-files flag
|
|
45
|
+
**Web/API:** `ep` (endpoint), `rt` (route), `mw` (middleware), `req` (request), `res` (response), `hdl` (handler)
|
|
135
46
|
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
## [2.1.3] - 2025-12-21
|
|
139
|
-
|
|
140
|
-
### Added
|
|
141
|
-
- Full AI integration system wired to `voodocs init`
|
|
142
|
-
- Claude Code skill generation (`.claude/skills/voodocs-context/`)
|
|
143
|
-
- Automatic instructions.md generation with context reference
|
|
47
|
+
**Security:** `enc` (encryption), `dec` (decryption), `sig` (signature), `cert` (certificate), `perm` (permission)
|
|
144
48
|
|
|
145
|
-
|
|
146
|
-
- Context generation bug (write_context_yaml import issue)
|
|
147
|
-
- AI integration parameter order
|
|
148
|
-
- Claude integration now generates both skill and instructions
|
|
149
|
-
- Context generation error: "cannot access local variable 'write_context_yaml'"
|
|
150
|
-
- Moved yaml_utils import to function scope to ensure availability
|
|
49
|
+
**Data:** `db` (database), `tbl` (table), `rec` (record), `idx` (index), `sch` (schema), `coll` (collection)
|
|
151
50
|
|
|
152
|
-
|
|
153
|
-
- `voodocs init` now sets up complete AI integration in one command
|
|
154
|
-
- No need for separate `voodocs instruct` command
|
|
51
|
+
#### 3. New Mathematical Symbols
|
|
155
52
|
|
|
156
|
-
|
|
53
|
+
Seven new symbols for richer semantic expression:
|
|
157
54
|
|
|
158
|
-
|
|
55
|
+
- `â` **Bidirectional** - Bidirectional relationships or inverse operations (`â{encâdec}`)
|
|
56
|
+
- `â` **Side Effects** - Operations that modify external state (`â{writes db}`)
|
|
57
|
+
- `â` **Forbidden** - Operations that must NOT happen (`â{no pw log}`)
|
|
58
|
+
- `â` **Approximation** - Acceptable error margins or tolerances (`â{Âą0.001}`)
|
|
59
|
+
- `â´` **Consequence** - Logical implications and consequences (`â´{failânull}`)
|
|
60
|
+
- `â` **Universal** - Properties that apply to all elements (`â{users have email}`)
|
|
61
|
+
- `â` **Existential** - Properties that must exist (`â{admin required}`)
|
|
62
|
+
|
|
63
|
+
#### 4. Enhanced Parser with Semantic Validation
|
|
159
64
|
|
|
160
|
-
|
|
161
|
-
|
|
65
|
+
**Better error messages:**
|
|
66
|
+
```
|
|
67
|
+
Error in @darkarts annotation at line 42:
|
|
68
|
+
âł{id:uuuid}
|
|
69
|
+
^^^^^
|
|
70
|
+
Unknown pattern ':uuuid'. Did you mean ':uuid'?
|
|
71
|
+
|
|
72
|
+
Available patterns: :uuid, :email, :url, :json, :jwt, :hash, :enc
|
|
73
|
+
```
|
|
162
74
|
|
|
163
|
-
|
|
75
|
+
**Semantic validation:**
|
|
76
|
+
- Detects contradictions (e.g., invariant says "no db mod" but side effect "writes db")
|
|
77
|
+
- Suggests missing fields (e.g., side effects present but no security considerations)
|
|
78
|
+
- Validates pattern syntax (e.g., `:uuid`, `âĽ8`, `[18,65]`)
|
|
164
79
|
|
|
165
|
-
|
|
80
|
+
### đ Performance Improvements
|
|
166
81
|
|
|
167
|
-
|
|
168
|
-
- **
|
|
169
|
-
|
|
170
|
-
- Automatic context generation during `voodocs generate`
|
|
171
|
-
- Auto-creates minimal context file if it doesn't exist
|
|
172
|
-
- Extracts modules, assumptions, and invariants from code
|
|
173
|
-
- **Auto-Update Options**: Choose how context is updated
|
|
174
|
-
- Manual mode (default): Run `voodocs generate` to update
|
|
175
|
-
- Git hooks mode: Auto-update context on commit
|
|
176
|
-
- **Config-Based Defaults**: No more specifying paths every time
|
|
177
|
-
- `voodocs generate` uses paths from `.voodocs.json`
|
|
178
|
-
- Default output directory: `./voodocs/`
|
|
179
|
-
- Default context directory: `./context/`
|
|
180
|
-
- Recursive scanning enabled by default
|
|
181
|
-
- **Examples in Output Directory**: Examples now created in `./voodocs/examples/`
|
|
82
|
+
- **Token reduction**: 79% (up from 57% in v2.x)
|
|
83
|
+
- **Parsing speed**: O(n) complexity (improved from O(n²))
|
|
84
|
+
- **Validation accuracy**: 99%+ correct parsing
|
|
182
85
|
|
|
183
|
-
###
|
|
184
|
-
- Parser now correctly handles @darkarts-only format (removed @voodocs pattern lookup)
|
|
185
|
-
- Context system now recognizes @darkarts annotations instead of @voodocs
|
|
186
|
-
- Git hooks installation for automatic context updates
|
|
86
|
+
### đ§ Internal Changes
|
|
187
87
|
|
|
188
|
-
|
|
189
|
-
-
|
|
190
|
-
-
|
|
191
|
-
-
|
|
88
|
+
- New modules:
|
|
89
|
+
- `darkarts_abbreviations.py` - Enhanced abbreviation dictionary
|
|
90
|
+
- `darkarts_patterns.py` - Pattern shortcuts system
|
|
91
|
+
- `darkarts_symbols.py` - Mathematical symbol definitions
|
|
92
|
+
- `darkarts_parser_v3.py` - Enhanced parser with validation
|
|
93
|
+
- Removed modules:
|
|
94
|
+
- `voodocs_lite_dict.py`
|
|
95
|
+
- `voodocs_lite_dict_v2.py`
|
|
96
|
+
- `voodocs_lite_parser.py`
|
|
97
|
+
- `convert.py` CLI command
|
|
192
98
|
|
|
193
|
-
|
|
99
|
+
### đ Documentation
|
|
194
100
|
|
|
195
|
-
|
|
101
|
+
- Updated README with v3.0.0 features
|
|
102
|
+
- Added comprehensive symbol reference
|
|
103
|
+
- Added pattern shortcuts guide
|
|
104
|
+
- Added abbreviation dictionary
|
|
105
|
+
|
|
106
|
+
### đ Migration Guide
|
|
107
|
+
|
|
108
|
+
**No migration needed!** v3.0.0 is backward compatible with v2.x annotations. The new features (pattern shortcuts, enhanced abbreviations, new symbols) are optional enhancements.
|
|
109
|
+
|
|
110
|
+
**If you were using `@darkarts-lite`:**
|
|
111
|
+
- Remove it - it's no longer supported
|
|
112
|
+
- Use companion files (`.voodocs.md`) for human-readable documentation instead
|
|
113
|
+
- Let AI generate proper `@darkarts` mathematical annotations
|
|
114
|
+
|
|
115
|
+
### đŻ Philosophy Clarification
|
|
116
|
+
|
|
117
|
+
This release clarifies the core philosophy of DarkArts:
|
|
118
|
+
|
|
119
|
+
**DarkArts is for AI, not humans.**
|
|
120
|
+
|
|
121
|
+
- AI writes it (using assistants like Claude, Cursor, GitHub Copilot)
|
|
122
|
+
- AI reads it (LLMs parse it instantly with mathematical precision)
|
|
123
|
+
- Humans don't touch it (use generated docs or companion files instead)
|
|
124
|
+
|
|
125
|
+
### đ Example Comparison
|
|
126
|
+
|
|
127
|
+
**Traditional comment (140 tokens):**
|
|
128
|
+
```typescript
|
|
129
|
+
/**
|
|
130
|
+
* User authentication service with JWT token generation.
|
|
131
|
+
* Dependencies: bcrypt, jsonwebtoken, database
|
|
132
|
+
* Preconditions: identifier must be valid UUID, password âĽ8 chars
|
|
133
|
+
* Postconditions: returns JWT token or null
|
|
134
|
+
* Invariants: does not modify database
|
|
135
|
+
* Security: password hashed, token encrypted
|
|
136
|
+
*/
|
|
137
|
+
```
|
|
196
138
|
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
139
|
+
**DarkArts v2.x (60 tokens, 57% reduction):**
|
|
140
|
+
```typescript
|
|
141
|
+
/**@darkarts
|
|
142
|
+
â˘{user authentication service with JWT token generation}
|
|
143
|
+
â{bcrypt,jsonwebtoken,database}
|
|
144
|
+
âł{identifier must be valid UUID, password must be at least 8 characters}
|
|
145
|
+
â˛{returns JWT token or null}
|
|
146
|
+
â¨{does not modify database}
|
|
147
|
+
đ{password hashed with bcrypt, token encrypted}
|
|
148
|
+
*/
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
**DarkArts v3.0.0 (30 tokens, 79% reduction):**
|
|
152
|
+
```typescript
|
|
153
|
+
/**@darkarts
|
|
154
|
+
â˘{u auth svc w/ JWT tok gen}
|
|
155
|
+
â{bcrypt,jsonwebtoken,db}
|
|
156
|
+
âł{id:uuid,pwâĽ8}
|
|
157
|
+
â˛{ret JWT tok|null}
|
|
158
|
+
â¨{no db mod}
|
|
159
|
+
đ{pw:hash,tok:enc}
|
|
160
|
+
*/
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
### đ Acknowledgments
|
|
164
|
+
|
|
165
|
+
This release is based on peer-reviewed research and protected by four patents:
|
|
166
|
+
- Patent 1: Context-Augmented AI Systems
|
|
167
|
+
- Patent 2: Multi-Dimensional Quality Categorization
|
|
168
|
+
- Patent 3: Invariant-Guided Code Generation
|
|
169
|
+
- Patent 4: Token-Efficient Context Management
|
|
170
|
+
|
|
171
|
+
**Portfolio Value:** $50M-180M
|
|
213
172
|
|
|
214
173
|
---
|
|
215
174
|
|
|
216
|
-
## [2.
|
|
175
|
+
## [2.5.3] - 2024-12-XX
|
|
217
176
|
|
|
218
177
|
### Fixed
|
|
219
|
-
-
|
|
220
|
-
-
|
|
221
|
-
- Removed "incorrect format" examples from instruction files for cleaner documentation
|
|
178
|
+
- CRITICAL: Convert command file corruption - now preserves entire file content, not just annotation blocks
|
|
179
|
+
- Added safety checks to prevent data loss during conversion
|
|
222
180
|
|
|
223
|
-
|
|
224
|
-
- Simplified migration guide to manual-only approach
|
|
225
|
-
- Updated all internal references from `@voodocs` annotation format to `@darkarts`
|
|
226
|
-
- Instruction files now focus exclusively on `@darkarts` format without showing legacy examples
|
|
181
|
+
## [2.5.2] - 2024-12-XX
|
|
227
182
|
|
|
228
|
-
###
|
|
229
|
-
-
|
|
230
|
-
- Emphasized distinction between Voodocs (product) and DarkArts (language)
|
|
231
|
-
|
|
232
|
-
---
|
|
233
|
-
|
|
234
|
-
## [2.0.0] - 2024-12-21
|
|
183
|
+
### Fixed
|
|
184
|
+
- Register analyze, convert, companion commands in CLI
|
|
235
185
|
|
|
236
|
-
|
|
186
|
+
## [2.5.1] - 2024-12-XX
|
|
237
187
|
|
|
238
|
-
|
|
188
|
+
### Fixed
|
|
189
|
+
- Include missing files in npm package
|
|
239
190
|
|
|
240
|
-
|
|
241
|
-
- **Symbolic language**: Uses mathematical Unicode symbols (â˘, â, â , âł, â˛, â¨, âĄ, đ)
|
|
242
|
-
- **No backward compatibility**: v1.x annotations are not supported
|
|
243
|
-
- **Manual migration required**: Convert existing `@voodocs` annotations to `@darkarts` format
|
|
191
|
+
## [2.5.0] - 2024-12-XX
|
|
244
192
|
|
|
245
193
|
### Added
|
|
246
|
-
-
|
|
247
|
-
-
|
|
248
|
-
-
|
|
249
|
-
- **Auto-Fix** - Automatically corrects common documentation errors
|
|
250
|
-
- **Benchmarking** - Validates performance claims with real execution data
|
|
251
|
-
- **AI-Optimized Format** - Token-efficient format designed for LLM consumption
|
|
252
|
-
- **CI/CD Ready** - Strict mode with exit codes for continuous integration
|
|
253
|
-
|
|
254
|
-
### Changed
|
|
255
|
-
- Complete rewrite of annotation parser
|
|
256
|
-
- New symbolic format for all annotation fields
|
|
257
|
-
- Improved AI instruction generation
|
|
258
|
-
- Better TypeScript/JavaScript support
|
|
259
|
-
- Enhanced Python support
|
|
260
|
-
|
|
261
|
-
### Removed
|
|
262
|
-
- v1.x `@voodocs` annotation format support
|
|
263
|
-
- Legacy JSON-style annotations
|
|
264
|
-
- Automatic migration tooling (manual migration required)
|
|
194
|
+
- VooDocs Lite format with ultra-compact symbolic notation
|
|
195
|
+
- Convert command for switching between Standard and Lite formats
|
|
196
|
+
- Enhanced abbreviation dictionary (v2)
|
|
265
197
|
|
|
266
198
|
---
|
|
267
199
|
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
### Added
|
|
271
|
-
- Initial release of VooDocs CLI
|
|
272
|
-
- Basic annotation parsing for Python and TypeScript
|
|
273
|
-
- Documentation generation
|
|
274
|
-
- Test generation
|
|
275
|
-
- API spec generation
|
|
276
|
-
- `voodocs init` command
|
|
277
|
-
- `voodocs generate` command
|
|
278
|
-
- `voodocs validate` command
|
|
279
|
-
- `.voodocs.json` configuration file
|
|
200
|
+
**For full changelog history, see previous versions.**
|